res.cls 中没有缩进

res.cls 中没有缩进

我正在使用res.cls。我想在节标题下写一个非缩进的段落,但不知道如何覆盖节下列使用的大量缩进边距。我尝试了\flushleft其他一些方法,但都没有奏效。有人有什么建议吗?

说明不受欢迎缩进的最小工作示例:

\documentclass{res}
\usepackage{lipsum}% just to generate text for the example

\begin{document}

\section{Test Section}
\lipsum[4]

\end{document}

在此处输入图片描述

答案1

作为艾伦·芒恩在他的评论中建议,您应该考虑使用另一个文档类(res.cls非常旧,并且文档记录不全)。话虽如此,根据上的评论res.cls,您可以使用\newsectionwidth{<length>}控制左边距中章节标题数量的命令来解决您的问题;一个小例子:

\documentclass{res}
\usepackage{lipsum}% just to generate text for the example

\newsectionwidth{0cm}

\begin{document}

\section{Test Section One One}
\lipsum[4]

\end{document}

在此处输入图片描述

上述解决方案将部分标题移到右侧;现在我重新阅读了这个问题,也许想要的效果是保留标题原样并将文本块移到左侧;如果是这种情况,\parshape将完成这项工作:

\documentclass{res}
\usepackage{lipsum}% just to generate text for the example

\begin{document}

\section{Test Section One}
\lipsum[4]

\section{Test Section Two}
\parshape 1 -\sectionwidth \resumewidth
\lipsum[4]

\section{Test Section Three}
\lipsum[4]

\end{document}

在此处输入图片描述

相关内容