Could you please explain how to read the LaTeX font encoding charts? What is the meaning of the coordinates, and how can one use them while working with (La)TeX?
1 Answers
I am converting my comments into an answer, since the OP seemed appreciative of them.
In standard LaTeX encodings (not Unicode), there are 128 slots available in which to store glyph representations of letters and symbols.
The table show the slots in which each glyph resides, using octal and hexadecimal notations. For example n is in slot (hex) "6E which is the same as (octal) '156. Octal notation shown on left and top for rows/columns, hex notation on right and bottom (and top) for rows/columns.
The hex rows are double tall. The top row of "6x are "60 through "67...the bottom row is "68 through "6F. The hex notation uses both the top and the bottom, depending. Each hex digit can represent 16 values, 0-F.
For example
\documentclass{article}
\begin{document}
\char'156 \char"6E \char110
\end{document}
will produce 3 "n" glyphs, by calling on that slot 3 times, once in octal, once in hex, and once in decimal.
The table is, perhaps better represented by the output of the fonttable package, in which the decimal slot number is actually added inside the glyph box itself.
\documentclass{article}
\usepackage{fonttable}
\begin{document}
\fonttable{cmr10}
\end{document}
It is easier to see here, that n is slot 110 decimal, which is the same as '156 octal which is the same as "6E.
Slots are important because each font encoding assigns glyphs to slots. In order to know what slot a glyph resides in, one must also know the font encoding.
- 237,551



\documentclass{article} \begin{document} \char'156 \char"6E \char110 \end{document}will produce 3 "n" glyphs, by calling on that slot 3 times, once in octal, once in hex, and once in decimal. – Steven B. Segletes Oct 17 '19 at 10:39\char"6E? – Nepumuk Oct 17 '19 at 10:50