更改书籍类中的字体大小

更改书籍类中的字体大小

我正在使用我大学的论文模板,该模板具有预定义的页面属性。我只需要将字体大小从 11 更改为 12。

您可以直接通过 sharelatex.com 进行编辑

链接到我的项目:请打开第 3 章:提出的算法。

非常感谢您的建议。

在此处输入图片描述

附言:

0)这是一个具有新属性的新项目,我删除了旧的问题。

1)我试过几何学包,但仍然改变字体以及改变边距

2)我无法从文档类中删除“twoside”,因为我将来会打印该论文。

PPS 使用 David 的代码后看起来好多了,但是边距仍然不一样。 在此处输入图片描述

答案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}

相关内容