带几何图形的连字和章节标题

带几何图形的连字和章节标题

我正在使用classicthesisgeometry包来完成我的论文。

有些章节标题没有正确连字符,而是延伸到了页边距。似乎无法使用例如在所需位置对章节标题进行连字符连接。这似乎与...\-有关geometry

例子:

\documentclass[12pt,
               a4paper,
               footinclude=true,
               headinclude=true,
               titlepages
               %draft
               ]{scrbook}

\usepackage[linedheaders,
            eulermath,
            eulerchapternumbers,
            parts,
            floatperchapter]{classicthesis} 

\usepackage[left=4cm,right=3cm,top=3cm,bottom=3cm]{geometry}

\begin{document}
\tableofcontents

\cleardoublepage\part{Introduction and Background}

\chapter{Research questions}

\section[Research questions for study 1 ``Meta-analysis of
    neurostructural alterations in dyslexia'']{Research questions for study 1 ``Meta-analysis of
    neuro\-structural alterations in dyslexia''}} 
\sectionmark{Research questions for study 1}

\end{document}

答案1

这与 无关geometry,而是与您不使用该pdfspacing选项有关;如果没有它,它将classicthesis用于soul字母间距的小型大写字母标题,并且这会导致连字符问题。

\documentclass[
  12pt,
  a4paper,
  footinclude=true,
  headinclude=true,
  titlepages,
  %draft,
]{scrbook}

\usepackage[
  pdfspacing, % <-- added
  linedheaders,
  eulermath,
  eulerchapternumbers,
  parts,
  floatperchapter,
]{classicthesis} 

\usepackage[left=4cm,right=3cm,top=3cm,bottom=3cm]{geometry}

\begin{document}
\tableofcontents

\part{Introduction and Background}

\chapter{Research questions}

\section{Research questions for study 1 ``Meta-analysis of
    neurostructural alterations in dyslexia''}
\sectionmark{Research questions for study 1}

\end{document}

在此处输入图片描述

答案2

geometry该问题与软件包无关本身,但仅限于有效文本块的宽度。真正的问题是 TeX 显然不“知道”单词 中所有允许的连字符点neurostructural。具体来说,TeX 不知道“neuro”和“structural”之间的连字符点。

如果你提供说明

\hyphenation{neu-ro-struc-tu-ral}

在序言中,章节标题中过满行的问题消失了。实际上,有一个一点点左侧有悬垂部分,但是它太小了,几乎无法察觉。

在此处输入图片描述

相关内容