323e654710
updated Historic Cyrillic description |
||
---|---|---|
.. | ||
GF Glyph Sets | ||
arabic_unique-glyphs.nam | ||
bengali_unique-glyphs.nam | ||
cyrillic_unique-glyphs.nam | ||
cyrillic-ext_unique-glyphs.nam | ||
devanagari_unique-glyphs.nam | ||
ethiopic_unique-glyphs.nam | ||
greek_unique-glyphs.nam | ||
greek-ext_unique-glyphs.nam | ||
gujarati_unique-glyphs.nam | ||
gurmukhi_unique-glyphs.nam | ||
hebrew_unique-glyphs.nam | ||
japanese_unique-glyphs.nam | ||
kannada_unique-glyphs.nam | ||
khmer_unique-glyphs.nam | ||
lao_unique-glyphs.nam | ||
latin_unique-glyphs.nam | ||
latin-ext_unique-glyphs.nam | ||
malayalam_unique-glyphs.nam | ||
myanmar_unique-glyphs.nam | ||
oriya_unique-glyphs.nam | ||
README.md | ||
sinhala_unique-glyphs.nam | ||
tamil_unique-glyphs.nam | ||
telugu_unique-glyphs.nam | ||
thai_unique-glyphs.nam | ||
vietnamese_unique-glyphs.nam | ||
wgl-latin.enc |
This directory contains "Namelist" files, that list Unicode characters followed by glyph names or glyph descriptions.
Typically all the Unicodes in each file are in each font. If the fonts go beyond that list, those additional characters will not be available to Fonts API end users.
The Google Fonts API uses these files in combination with pyftsubset to generate script subsets from the full .ttf
files in this repository.
There are "legacy" encodings, the files directly in this directory, and "novel" encodings contained in the GF Glyph Sets
subdirectory.
The latter directory contains itself a [README.md
]('GF Glyph Sets/README.md').
The "Namelist" file format
The extension of a Namelist file is ".nam
".
Namelist files are encoded in UTF-8.
legacy subsetting
- all encodings with the exception of
khmer
includelatin_unique-glyphs.nam
- all extended encodings with filenames like
{lang}-ext_unique-glyphs.nam
also include{lang}_unique-glyphs.nam
This is implemented in the CodepointFiles
function of google_fonts.py
NOTE: the legacy files have also been adapted to the novel header #$ include
style.
novel subsetting
The [README.md
]('GF Glyph Sets/README.md') describes mostly how each of the Namelist files depend on each other,
to implement this header includes were created.
Codepoint format
A line that starts with 0x
and then have 4 or 5 uppercase hex digits; what follows is an arbitrary description to the end of the line.
Example:
0x0061 a LATIN SMALL LETTER A
0x0062 b LATIN SMALL LETTER B
0x0063 c LATIN SMALL LETTER C
0x03E4 Ϥ COPTIC CAPITAL LETTER FEI
0x10142 𐅂 GREEK ACROPHONIC ATTIC ONE DRACHMA
Comments
Comments are lines starting with #
.
Example:
# Created by Alexei Vanyashin 2016-27-06
#$ include ../GF-latin-plus_unique-glyphs.nam
glyphs without Unicode (since the "novel" encodings)
A line that starts with at least six spaces describes a glyph that has no Unicode and will usually be accessible via OpenType GSUB. These glyphs are used to ensure the fonts contain certain OpenType features.
The description is a human readable glyph name that can be used in the authoring application (targeted at Glyphs) to create and process the glyph properly.
Example:
aacute.sc
abreve.sc
abreveacute.sc
abrevedotbelow.sc
For legacy reasons, we also accept lines in the form of:
Д uni0414.loclBGR
И uni0418.loclBGR
Й uni0419.loclBGR
Using this sample python implementation to obtain the glyph name:
line.strip().rsplit(' ')[-1]
Header
The header was created to make the Namelist format more self contained.
The Namelist header is made of all consecutive comment lines at the beginning of the file. The first non-comment line ends the header.
Specially crafted comment lines, "header data", define the meta data of the file. Other comments are just that, comments.
A header data line begins with #$
then is followed by a keyword and then followed by the arguments for the keyword.
The keyword is separated from its arguments by one or more space characters.
The keywords, the semantics of a keyword and the syntax of its arguments should be documented here.
Format for header data:
#$ {keyword} {arguments}
Keyword #$ include {namfile}
The include
keyword can be used zero or more times. Order of appearance should have no effect on the resulting set and thus be not important.
It specifies the namfiles on which the current namfile depends. The file plus all of its includes together define the complete char-set.
Includes are loaded recursively, meaning that the includes of an included files must also be loaded.
E.g. a novel a "pro" encoding would include its "plus" encoding and the latter would include its "base" encoding. The Pro charset then is the union of pro, plus and base.
Loops in the includes are not followed; the final result as a set
wouldn't have a different value whether the same file is included once or many times.
{namfile}
is a file path to a namfile relative to the path of the file that contains the include statement.
Example from GF-latin-expert_unique-glyphs.nam
#$ include GF-latin-pro_unique-glyphs.nam
0x2153 ⅓ onethird
0x2154 ⅔ twothirds
0x215B ⅛ oneeighth
Possible Keywords
-
author {name}
(zero or more) since we can already find# Created by
comments in the novel nam-files we could as well just institutionalize it. -
label {name}
A human readable name for the file, to be used in user interfaces. Could also have a further{locale}
argument for internationalization.
Scripts
A python script, tools/namelist.py
can generate these files:
namelist.py Font.ttf > NameList.nam
The [wgl-latin.enc]
file can be used by Fontlab Studio 5, and represented Microsoft's Windows Glyph List 4 glyph set.
A python script, tools/unicode_names.py
can reformat these files:
python unicode_names.py --nam_file=encodings/latin_unique-glyphs.nam;
0x0020 SPACE
0x0021 ! EXCLAMATION MARK
0x0022 " QUOTATION MARK
0x0023 # NUMBER SIGN
...
Namelist parsing is implemented in:
Python: tools/util/google_fonts.py
use the function CodepointsInSubset
for legacy Namelist files and codepointsInNamelist
for novel Namelist files.
JavaScript: analyzeCharSets.js implements novel style Namefile parsing.