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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- 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