blob: f1b2814c8a2b17913ba6caaa743c728cb1c1b4fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
\documentclass[12pt]{article}
\usepackage{fontspec}
\usepackage{array}
\usepackage{longtable}
\usepackage{latexcolors}
\usepackage{luacode}
\luadirect{require("fonttable.lua")}
\setmainfont{Old Standard}
\title{\textsc{Old Standard}}
\author{Font Table}
\date{}
\begin{document}
\maketitle
\color{cinnamon}
\begin{longtable}{>{\color{gray}\ttfamily\footnotesize}r|
*{10}{>{\color{black}}p{1.5em}|}}
\cline{2-11}
\endhead
\luadirect{ft.print_glyphs(10,65463)} \\ \cline{2-11}
\end{longtable}
\end{document}
|