我正在使用我大学的论文模板,该模板具有预定义的页面属性。我只需要将字体大小从 11 更改为 12。
您可以直接通过 sharelatex.com 进行编辑
非常感谢您的建议。
附言:
0)这是一个具有新属性的新项目,我删除了旧的问题。
1)我试过几何学包,但仍然改变字体以及改变边距
2)我无法从文档类中删除“twoside”,因为我将来会打印该论文。
答案1
水平设置只有四种相关长度。
11点
\documentclass[11pt,a4paper]{book}
\typeout{tw: \the\textwidth}
\typeout{os: \the\oddsidemargin}
\typeout{es: \the\evensidemargin}
\typeout{mw: \the\marginparwidth}
\begin{document}
zzz
\end{document}
生产
tw: 360.0pt
os: 22.0pt
es: 70.0pt
mw: 106.0pt
如果你改为 12pt,你会得到
tw: 390.0pt
os: 10.0pt
es: 52.0pt
mw: 88.0pt
但你想要 11pt 的宽度,所以将它们设置回去:
\documentclass[12pt,a4paper]{book}
\setlength{\textwidth}{360pt}
\setlength{\oddsidemargin}{22pt}
\setlength{\evensidemargin}{70pt}
\setlength{\marginparwidth}{106pt}
\typeout{tw: \the\textwidth}
\typeout{os: \the\oddsidemargin}
\typeout{es: \the\evensidemargin}
\typeout{mw: \the\marginparwidth}
\begin{document}
zzz
\end{document}