Fonts & Character Sets ⇒ Find "Real Names" for TeX fonts
-
- Posts: 1
- Joined: Mon Oct 17, 2016 10:31 am
Find "Real Names" for TeX fonts
Is there a central location that I can search by the TeX font name prefix? E.g. "TT24D" for "TT24DAo000"?
Thanks in advance.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Find "Real Names" for TeX fonts
Not so easy, since there's not a maintained list.
General list of font files - run at the command prompt:
updmap-sys --listmaps
On a Unix / Linux system, you can check the list of installed fonts with names by
find /usr/local/texlive/2016/texmf-dist/tex/latex/ -name '*.fd' | xargs grep '\\DeclareFontFamily' | sed 's#.*\\DeclareFontFamily{\([a-zA-Z0-9]*\)}{\([a-zA-Z0-9]*\)}.*# \1 \2#'|less
(suggestion was by Will Robertson of the LaTeX project team) or see the system fonts with
fc-list
Otherwise I would google, it may bring a result, or search on CTAN for file names.
Stefan