我有一个用于提案的 MS Word 模板,但由于我不喜欢使用 Word,所以我想将其转换为 LaTeX。我一直在尝试使用花哨的标题类,到目前为止,我已经获得了非常好的结果。现在我想微调一些东西。模板的要求之一是字体大小为 8.5。我发现这个帖子描述了如何去做,但我认为我没有理解正确。
因此在序言中我
\RequirePackage{fix-cm}
\documentclass[fontsize=8.5pt]{article}
\usepackage[T1]{fontenc}
\usepackage{helvet}
但当我在文档中写道
This is the normal font and {\fontsize{8.5}{10} \selectfont this is the font when I specify 8.5 }
我明白了
所以很明显我没有使用 8.5 字体。另外,我想将字体更改为无衬线字体,但我不知道如何保留 8.5 字体?最后,我不确定如何调整页面中组件之间的间距。我正在使用包geometry
和花式标题,我只需查看它即可进行所有调整。但是,我想知道是否有更聪明的方法来做到这一点?
MWE 非常简单,但在字体大小上显示出了问题:
\RequirePackage{fix-cm}
\documentclass[fontsize=8.5pt]{article}
\usepackage[T1]{fontenc}
\usepackage{helvet}
\begin{document}
This is the normal font and {\fontsize{8.5}{10} \selectfont this is the font when I specify 8.5 }
\end{document}