The characters specific to metrical notation are U+23D1 to U+23D9.
The chart is here:
http://www.unicode.org/charts/PDF/U2300.pdf
The Unicode Standard itself doesn't say much about them except this,
from Unicode 5.2, page 479: "The symbols in the range U+23D1..U+23D9
are a set of spacing symbols
used in the metrical analysis of poetry and lyrics."
There is a very recent proposal for adding more characters for
metrical notation, but to my knowledge, it has *not* been considered
by any of the standards committees yet:
http://std.dkuug.dk/JTC1/SC2/WG2/docs/n3913.pdf
I do not know which symbol used for Persian or Arabic poetry is still
missing. If you tell me more details, I will try to push for it in the
next UTC meeting which will probably consider the above document.
Roozbeh
> Well, these characters are only in a very few fonts:
> http://www.fileformat.info/info/unicode/char/23d1/fontsupport.htm
> I cannot use them on a webpage.
> Is there some other solution other than begging Behnam to put them in
> one of his fonts and then making the users download and install the font?
The CSS @font-face tag and a web served font would be the obvious
solution. At the moment, that means serving the font in different
formats for different browsers, but we're working towards a single
compressed delivery format standard, WOFF.
JH
--
Tiro Typeworks www.tiro.com
Gulf Islands, BC ti...@tiro.com
A pilgrimage is a journey undertaken in the
light of a story. -- Paul Elie
The CSS @font-face tag and a web served font would be the obvious solution. At the moment, that means serving the font in different formats for different browsers, but we're working towards a single compressed delivery format standard, WOFF.
> Ok, the CSS @font-face may be good enough to get the characters visible
> on a page so as to have a discussion as to what further characters are
> needed. Thank you for the info.
> I'm not familiar with the available fonts but I guess the SIL font will
> be free:
I believe SIL have recently produced dedicated webfont versions of at
least some of their fonts. Best check their website.
J.
I believe SIL have recently produced dedicated webfont versions of at least some of their fonts. Best check their website.
> Can you please point me to a tutorial on how to implement this font
> using CSS @font-face method? Or does the font itself need to first be
> modified and turned into a web font?
I'm not a web developer, so there are probably people (on this list?)
better able to give advice. My role in all this is on the font side and
as part of the W3C web fonts working group defining the WOFF format
standard.
Using the @font-face syntax in your CSS is pretty simple: you define a
font family by name and then point to a source. See, for examples,
http://www.devlounge.net/design/five-tips-for-using-font-face
You need to be aware that differenr browsers currently require different
delivery formats for web fonts. Some browsers support 'raw' TTF/OTF font
file linking; Internet Explorer (versions 6-8) does not but instead uses
the EOT format; the new betas of IE9 and Firefox support WOFF and to my
knowledge all the major browser vendors are busy implementing WOFF
support. If you want your content to display correctly on as many
browsers as possible, you need to serve multiple file formats.
You might also want to check out the Google font directory, which
includes a growing number of free fonts that can be linked to directly
from Google servers. I believe the idea of the Google font API is that
they look after serving the different formats.
http://code.google.com/apis/webfonts/
This includes Cardo.
The other issue you will end up contenting with is that a lot of fonts
simply do not perform well at small sizes and low resolutions,
especially not on older OS versions including the still prevalant
Windows XP. Also, fonts are now subject to a wide range of different
rendering environments, and just because something is readable on your
system does not mean it will be on every user's.
JH
> However, the Cardo font
> _http://scholarsfonts.net/cardofnt.html#DownloadLink_
> <http://en.wikipedia.org/wiki/Fallback_font>
> appears to be just what is needed although it is a large font intended
> for print publishing.
> The designer also appears to be interested in adding new characters and
> improving the font which is nice.
> Can you please point me to a tutorial on how to implement this font
> using CSS @font-face method? Or does the font itself need to first be
> modified and turned into a web font?
> Thank you.
Connie, you can do it all by yourself! Start with Cardo or any other fonts
that has a permissible license, then download and install FontForge, open the
font, select and cut the characters you don't need, and Generate new fonts.
Then take your new font, go to http://www.font2web.com/, upload it there,
download the zip file and use!
behdad