章节标题的边距超出范围

章节标题的边距超出范围

我希望我的章节标题与文本的边距相同。以下是问题示例(请参阅第 1.1 节中的标题)。我希望行为与标题(1.2)类似。有什么建议吗?我这里遗漏了什么?

\documentclass{report}
\usepackage{blindtext}

\begin{document}

\chapter{Hope}

\section{Hope of the Essential Trigonometry TRIGTEST}
\blindtext

\section{Hope of the Essential Trigonometry TRIGOTEST}
\blindtext

\end{document}

在此处输入图片描述

答案1

titlesec就是用来做这个的。使用 选项raggedright,你就能明白你的意思。看这段代码,

\documentclass{report}
\usepackage{blindtext}
\usepackage[raggedright]{titlesec}

\begin{document}
\chapter{Hope}

\section{Hope of the Essential Trigonometry TRIGTEST}
\blindtext

\section{Hope of the Essential Trigonometry TRIGOTEST}
\blindtext

\end{document}

两个小节中都有所需的输出:

在此处输入图片描述

答案2

TeX 不知道如何对单词“trigtest”进行连字符连接,因此您需要在序言中告诉它如何进行连字符连接:

\documentclass{report}
\usepackage{blindtext}
\hyphenation{trig-test}
\begin{document}

\chapter{Hope}

\section{Hope of the Essential Trigonometry TRIGTEST}
\blindtext

\section{Hope of the Essential Trigonometry TRIGOTEST}
\blindtext

\end{document}

带连字符的标题

相关内容