在我的上一個 Latex 文件中,我使用這個文檔類別來讓我使用那裡顯示的字體
\setmainfont{industry-blackitalic}
但我不能使用超過 14 pt 的最大字元。我會使用 16 或 18,但如果超過 14,我的文字就會變小。我能做些什麼?
謝謝
雷納托
答案1
讓我們看看extarticle.cls
:
\DeclareOption{8pt}{\renewcommand\@ptsize{8}}
\DeclareOption{9pt}{\renewcommand\@ptsize{9}}
\DeclareOption{10pt}{\renewcommand\@ptsize{10}}
\DeclareOption{11pt}{\renewcommand\@ptsize{11}}
\DeclareOption{12pt}{\renewcommand\@ptsize{12}}
\DeclareOption{14pt}{\renewcommand\@ptsize{14}}
\DeclareOption{17pt}{\renewcommand\@ptsize{17}}
\DeclareOption{20pt}{\renewcommand\@ptsize{20}}
所以如果你選擇17pt
或20pt
你會得到它們假如您也載入fix-cm
(如果您的文件使用標準 Computer Modern 字體)或支援可縮放字體的套件。在前一種情況下,您應該添加
\RequirePackage{fix-cm}
前 \documentclass
。
指定其他選項是沒有用的,因為它們無法被識別。如果您想要任意字體大小,可以使用以下軟體包fontsize
:
\RequirePackage{fix-cm}
\documentclass{article}
\usepackage[fontsize=18pt]{fontsize}
\begin{document}
\fontname\font
\Large\fontname\font
\end{document}