在 Latex 中使用 12 号等宽字体

在 Latex 中使用 12 号等宽字体

我正在尝试创建一个 Latex 文档,该文档的规范要求使用 12 间距字体。在阅读了一些有关“间距”的内容后,我明白我应该使用 Courier 等等宽字体。但我一直无法弄清楚如何设置字体的“间距”。这是一个建议,我必须遵守规范。我非常感谢任何帮助。

答案1

我只想使用 12pt,但如果您想要更接近每英寸 12 个字符,那么 11.71pt 似乎是您需要的大小(对于拉丁现代打字机)

\documentclass[12pt]{article}
\usepackage{lmodern}%scalable fonts

\sbox0{\texttt{123456789abc}}

\typeout{12 characters are \the\wd0 at 72.27pt to the inch}

% or if you are really fixed on 12 pitch select a font size like
\fontsize{11.706}{13}\selectfont
\sbox0{\texttt{123456789abc}}
\typeout{12 characters are \the\wd0 at 72.27pt to the inch}


\begin{document}

\end{document}

以上产生了一个日志

12 characters are 74.08603pt, at 72.27pt to the inch
12 characters are 72.27087pt, at 72.27pt to the inch

显示 12 个字符比 12pt 的 1 英寸多 2pt,但选择 11.71pt(或者如果你真的很偏执,则选择 11.706)就可以接近了。

相关内容