\setstretch 在使用 abntex 模板时不起作用

\setstretch 在使用 abntex 模板时不起作用

我正在尝试更改文档的行距。我曾经使用过,\linespread但它也会更改toc行距,我不想这样。所以我试过了,\setstretch但没有用。

我认为我不需要将图片附加到问题中。这是我正在处理的示例文档https://github.com/guylhermetabosa/TCC/tree/master/modelo-tcc-abntex2 TCC.tex 是主文件

这个模板给我带来了很多问题,但我仍然会使用它来帮助其他有一天可以使用它的人,并且不需要再这样做。

TCC.tex 文件顶部的命令

\include{fixos/pacoteseclass}
\setlrmarginsandblock{3cm}{2cm}{*}
\setulmarginsandblock{3cm}{2cm}{*}
\checkandfixthelayout
\usepackage{setspace}
\setstretch{1.5}

错误信息

错误信息

在此处输入图片描述

答案1

abntex2.cls基于memoir,使用不同的系统。删除\usepackage{setspace}并使用\OnehalfSpacing,或者,如果您确实需要 1.5,则说\setSpacing{1.5} \checkandfixthelayout

\documentclass{abntex2}

\usepackage{lipsum}

\setlrmarginsandblock{3cm}{2cm}{*}
\setulmarginsandblock{3cm}{2cm}{*}
%\OnehalfSpacing % preferred
\setSpacing{1.5} % too much space
\checkandfixthelayout

\begin{document}
\lipsum
\end{document}

在此处输入图片描述

相关内容