using Helvetica symbols in LaTeX

A LaTeX document sets Helvetica as the main font, but some special symbols (like "copyright") look strange. After detailed look at PDF, I found that the symbols aren't taken from the font, but assembled from different items.

After some time, I found that it's not a bug, but a documented behaviour. To activate the symbols from fonts, I should use the package "textcomp". This package should be used with care if a document uses fonts without required glyphs.

Write reading description of "textcomp", I found another good package "tracefnt". The package allows to trace selection of fonts.

The last note is about superscript and subscript. Some time ago I didn't found them and implemented commands "sups" and "subs". Now I've found that the "superscript" command actually exists. But "subscript" is missed. I've found the definition of "superscript" in "latex.ltx", and defined "subscript" by analogue:

\\DeclareRobustCommand*\\textsubscript[1]{ %
  \\@textsubscript{\\selectfont#1}}
\\def\\@textsubscript#1{ %
  {\\m@th\\ensuremath{_{\\mbox{\\fontsize\\sf@size\\z@#1}}}}}

29 September 2005, update

To generate a font table, one can use "nfssfont.tex". Usage is trivial: just run (latex nfssfont), answer questions and give the command "\table".

My old teTeX distribution contains a very old version of the program which doesn't support font selection scheme. As a solution, use a copy of "nfssfont.tex" from a recent TeXLive CD.

Categories: TeX

Updated: