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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
%%
%% The LaTeX Companion, 3ed
%%
%% Example 12-4-4 on page II-258 in "Adjusting the formula style".
%%
%% Copyright (C) 2022 Frank Mittelbach
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3c
%% of this license or (at your option) any later version.
%%
%% See https://www.latex-project.org/lppl.txt for details.
%%
\documentclass{tlc3exa}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{351.0pt}
% typeset with lualatex
%StartShownPreambleCommands
\usepackage[math-style=ISO,bold-style=ISO]{unicode-math}
\usepackage{array,booktabs}
%StopShownPreambleCommands
\begin{document}
\small
\begin{tabular}{l@{\enspace$\to$\quad}>$l<$@{\enspace}>$l<$}
\toprule
\multicolumn{1}{l}{\ttfamily math-style}
& \multicolumn{1}{c}{\itshape Latin}
& \multicolumn{1}{c}{\itshape Greek}
\\
\midrule
\texttt{TeX} & a, b, X, Y
& \alpha, \beta,\symup \Gamma,\symup \Omega
\\
\texttt{ISO} & a, b, X, Y
& \alpha, \beta, \Gamma, \Omega
\\
\texttt{french} & a, b,\symup X,\symup Y
& \symup \alpha,\symup \beta,\symup \Gamma,\symup \Omega
\\
\texttt{upright} &\symup a,\symup b,\symup X,\symup Y
& \symup \alpha,\symup \beta,\symup \Gamma,\symup \Omega
\\
\bottomrule
\end{tabular}
\hfill
\begin{tabular}{>{\ttfamily}l@{\enspace$\to$\quad}>$l<$@{\enspace}>$l<$}
\toprule
\multicolumn{1}{l}{\ttfamily bold-style}
& \multicolumn{1}{c}{\itshape Latin}
& \multicolumn{1}{c}{\itshape Greek}
\\
\midrule
TeX &\symbfup a,\symbfup b,\symbfup X,\symbfup Y
&\symbf \alpha,\symbf \beta,\symbfup \Gamma,\symbfup \Omega
\\
ISO &\symbf a,\symbf b,\symbf X,\symbf Y
&\symbf \alpha,\symbf \beta,\symbf \Gamma,\symbf \Omega \hspace{-1em} % hide width
\\
\multicolumn{3}{c}{}
\\
upright &\symbfup a,\symbfup b,\symbfup X,\symbfup Y
& \symbfup \alpha,\symbfup \beta,\symbfup \Gamma,\symbfup \Omega
\\
\bottomrule
\end{tabular}
\end{document}
|