Elzevier Caps Regular(字体)

Elzevier Caps Regular(字体)

我发现了一个新颖奇妙的字体。根据网站,“Elzevier Caps Regular 是 TeX Live 的一部分”。这是我的 Tex 版本:

root@basip:~# tex --version
TeX 3.1415926 (TeX Live 2012/Debian)
kpathsea version 6.1.0
Copyright 2012 D.E. Knuth.
There is NO warranty.  Redistribution of this software is
covered by the terms of both the TeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the TeX source.
Primary author of TeX: D.E. Knuth.

我尝试了这个代码:

\documentclass[danish,a4paper,11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{slantsc}
\usepackage{array}
\usepackage{amsmath}
\setkomafont{subsection}{\usefont{T1}{fvm}{m}{n}}
\setkomafont{section}{\usefont{T1}{fvs}{b}{n}\Large}
\setcounter{secnumdepth}{0}
\pagestyle{empty}
\input Elzevier.fd
\newcommand*\initfamily{\usefont{U}{Elzevier}{xl}{n}}

\begin{document}
\section*{Elzevier Caps Regular}
\subsection*{\textbackslash initfamily}
\normalfont\initfamily
\fontsize{12mm}{12mm}\selectfont THE QUICK BROWN FOX JUMPS OVER THE SLEAZY DOG
\newpage
\normalfont\initfamily
\input fonttable
\end{document}

我收到了这个错误:

! I can't find file `fonttable'.
l.21 \input fonttable
(Press Enter to retry, or Control-D to exit)
Please type another input file name
! Emergency stop.
l.21 \input fonttable
*** (job aborted, file error in nonstop mode)
Here is how much of TeX's memory you used:
2584 strings out of 493485
35205 string characters out of 3143527
112716 words of memory out of 3000000
5889 multiletter control sequences out of 15000+200000
11399 words of font info for 25 fonts, out of 3000000 for 9000
957 hyphenation exceptions out of 8191
38i,4n,47p,253b,139s stack positions out of 5000i,500n,10000p,200000b,50000s
! ==> Fatal error occurred, no output PDF file produced!

该怎么办?我觉得我的 TeX-live 版本太旧了?还是有其他问题?如果是问题所在,如何在 Debian Wheezy 上更新 TeXlive?

亲切的问候!

答案1

没有fonttable.tex文件。您可以使用以下fonttable包:

\documentclass[a4paper]{article}
\usepackage{fonttable}

\pagestyle{empty}
\input Elzevier.fd
\newcommand*\initfamily{\usefont{U}{Elzevier}{xl}{n}}

\begin{document}

\xfonttable{U}{Elzevier}{xl}{n}

\end{document}

在此处输入图片描述

相关内容