如何指定小于8pt的文档字体大小?

如何指定小于8pt的文档字体大小?

我想使用最小的可读字体作为备忘单,但 \documentclass[6pt]{extarticle} 不起作用

答案1

关键是选择一种支持任意缩放的字体,例如lmodern,然后使用\fontsize{}{}\selectfont方法选择它。修改后的字体大小将保持有效,直到随后更改。

至于启动时的默认大小,LaTeX 仅支持 10pt、11pt 和 12pt,这就是为什么[6pt]OP 的方法中忽略了该选项。

\documentclass[12pt]{article}
\usepackage{lmodern}
\begin{document}
XYZxyz\par
\fontsize{11pt}{12pt}\selectfont XYZxyz\par
\fontsize{10pt}{11pt}\selectfont XYZxyz\par
\fontsize{9pt}{10pt}\selectfont XYZxyz\par
\fontsize{8pt}{9pt}\selectfont XYZxyz\par
\fontsize{7pt}{8pt}\selectfont XYZxyz\par
\fontsize{6pt}{7pt}\selectfont XYZxyz\par
\fontsize{5pt}{6pt}\selectfont XYZxyz\par
\fontsize{4pt}{5pt}\selectfont XYZxyz\par
\fontsize{3pt}{4pt}\selectfont XYZxyz\par
\fontsize{2pt}{3pt}\selectfont XYZxyz\par
\fontsize{1pt}{2pt}\selectfont XYZxyz
\end{document}

在此处输入图片描述

如果不使用lmodern,人们会发现字体大小不能减小到 5pt 以下,因为默认的计算机现代字体不是任意可扩展的。

在此处输入图片描述

pslmodern选择后,还应将其添加\usepackage[T1]{fontenc}到序言中,以利用额外的字形集。

答案2

哦,抱歉,我找到了解决方案。

\begin{document} \tiny

相关内容