Reading Type in Free Font Index
I’m pleased to have my typefaces, drawn ten years ago now, included in this rather nice new book :-)
Labels: fonts type catalogue
I’m pleased to have my typefaces, drawn ten years ago now, included in this rather nice new book :-)
Labels: fonts type catalogue
Firstly, to brag about the conference I helped to organise at St Bride Library on 7 November. Entitled
Secondly, to mention the new version of the Open Font Library site [current version] which I spent much of October working on. It’s not by any means finished, but it’s looking good; we have worked hard to explain what the site is for and how to get involved, and provided some guidance on font formats and licensing.
Ed Trager is making a character viewer that enables users to get a preview of each font using any one of a gazillion keyboard layouts, so we will be able to go far beyond simply supporting the Latin alphabet. We also have a very simple @font-face CSS rule generator. The credit for the site’s good looks (at this stage of development) goes to my brother James, who did the visual design and wrote the CSS. Internet Dave raised funding for the work and held the project together. To stay up to date with progress, watch this space, or join the OFLB mailing list.

I am a resident of Reading, Berkshire. I am writing to ask you to oppose proposals to allow European industries to be given free carbon-dioxide permits after the year 2013. This would send out entirely the wrong message - of double standards - to countries outside the European Union and within the EU it would fail to support the initiatives of businesses which are striving to find more environmentally-responsible ways to generate energy and carry out manufacturing.
The EU parliament's industry committee has already voted to end the free carbon-dioxide permits after 2013, but now exemptions are sought that will totally undermine this decision and negate the progress already made.
Effectively it would mean Europe giving up on its strong lead on global pollution reduction before anything has been achieved.
I do understand that there is a risk that large manufacturing companies will relocate to avoid the legislation, but I feel that this should be mitigated with efforts to encourage enterprises that will deliver pollution-reducing ideas and techniques. Why not insist that the big polluters sponsor these companies, so that both can receive rewards in the longer term?
I look forward to your upholding of the EU parliamentary industry committee's decision.
AFP: WWF bemoans attempts to water down EU's green targets
FT: Climate change fears after German opt-out
EU Environment, Public Health and Food Safety Committee
Labels: pollution energy EU vote
I went looking for some info about tax (not yet found) and ended up reading a brilliant article about freelancing by Phil Gyford [thanks to fidothe's delicious delicious links for that]. I hopped across from there to Matt Webb, mindhacker, who wrote well on the strange business of working out what to charge and how it can be influenced by the degree to which you think your work might benefit yourself or humanity.
This brought me back to my own situation, freelancing as I do: I’m writing a little software – developing an lightweight home automation interface at the moment – then also polishing the work of others, slotting in features, occasionally tutoring clients or the employees of clients, and quite often overtly using the information design and typography skills I learned at university. This is what is turning cogs in my head. But most of the social contacts I have are in the world of graphics and print history, because I volunteer for St Bride Library and that takes up most of my free time, some of my work time and certainly all my conference time.
I seem to be walking into the world of software facing backwards into the activities that were the springboard for that work, rather than forwards into the possibilities ahead. Like the goon I am, I suppose. And for how much longer?
I've just been playing with HTML font linking* using the info in the 2002 W3C Web Fonts Working Draft. Works beautifully. You specify the weight, style (regular/italic), and stretch (condensed/normal/expanded) - and off you go! For example:
@font-face {
font-family: "DejaVu Serif";
src: url("http://example.com/free-libre-font-files/dejavu-fonts-ttf-2.26/DejaVuSerif-Italic.ttf") format("TrueType");
font-weight: 400;
font-style: italic;
font-stretch: normal;
}
@font-face {
font-family: "DejaVu Serif";
src: url("http://example.com/free-libre-font-files/dejavu-fonts-ttf-2.26/DejaVuSerif.ttf") format("TrueType");
font-weight: 400;
font-style: normal;
font-stretch: normal;
}
body {
font-family: "DejaVu Serif", serif;
}
And by magic, regular and italic variants will be found and used. Note how the two @font-face at-rules have the same font-family value, thus grouping them as one typeface.
OK, it's a little bit of work, but the indirection gives scope for future flexibility. Just remember kids: always read the licence!
Browsers: Firefox 3.1 (font-linking build) and Safari 3.1 on OS X.
Labels: fonts w3c browsers
After eight seven and a half years ;-)
You can try it out on Mac and Windows on a test build. Thanks :jtd!
Edit: can’t do maths.
Labels: fonts browsers css