假设我有一个很长的章节标题\chapter{one two three four five six seven eight nine ten}
,在目录中显示如下:
- 一二三四五六七
八九十
我觉得这太丑了。我希望它像这样:
- 一二三四五六
七八九十
但是如果我使用\chapter{one two three four five six \mbox{seven} eight nine ten}
目录中的行,行就会太长,那么有没有其他方法可以在目录中使用换行符,而不使用连字符,并且不会出现太长的行?
答案1
如果要禁用 ToC、LoF 和 LoT 中所有条目的连字符:
(记得编译代码两次)
\documentclass[b5paper,12pt,twoside]{book}
\usepackage[pdfspacing]{classicthesis}
\usepackage{arsclassica}
\usepackage[inner=2.2cm,outer=1.8cm,bottom=2.7cm,top=2.5cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage[english]{babel}
\titleformat{\section}
{\raggedright}{\textsc{\MakeTextLowercase{\thesection}}}{1em}{\spacedlowsmallcaps}
\makeatletter
\renewcommand{\@tocrmarg}{2.55em plus1fil}
\makeatother
\begin{document}
\frontmatter
\tableofcontents
\cleardoublepage
\mainmatter
\chapter{Test Chapter}
\section{The Separation Axioms and Continuous Real-Valued Functions}
\lipsum
\end{document}