我在用着TeX 环流佩格拉作为使用 10pt 字体大小排版的文档的主字体。对于技术术语,我想用以下字体替换默认的 Computer Modern Typewriter贝拉莫诺——主要是因为零点。问题是现在标有 的术语\texttt{}
相对于文本的其余部分显得太大了。
\documentclass[pdftex,fontsize=10pt]{scrbook}
\usepackage{tgpagella}
\usepackage[scaled]{beramono}
\usepackage[T1]{fontenc}
\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis non velit in ligula volutpat
condimentum. Now for some technical terms: \texttt{Phasellus}, \texttt{ultrices} aliquam
\texttt{nulla}, in imperdiet magna feugiat sed. Ugh, the technical terms are too large
compared to the rest of the text.
\end{document}
我怎样才能告诉 (pdf)LaTeX 仅对部分内容使用较小的字体大小(9pt?)\texttt{}
?
答案1
选项“scaled”的默认值为“.9”。您可以将比例设置为明确的值,例如,
\usepackage[scaled=.7]{beramono}