关于目录的问题

关于目录的问题

我正在使用文章作为我的讲义..但在内容中我遇到的问题在于章节标题的格式不正确。'

 \documentclass[12pt,a4paper]{article}
%\usepackage{lgrind,latexcad}

\usepackage{graphicx,amsmath,amsthm,amssymb,amsfonts,thesisb1,fancyhdr,mathrsfs, 
indentfirst,dsfont,lipsum,multicol}

\newcommand{\setlinespacing}[1]%
           {\setlength{\baselineskip}{#1 \defbaselineskip}}
\newcommand{\doublespacing}{\setlength{\baselineskip}%
                           {2.0 \defbaselineskip}}
 \pagestyle{fancy}

%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 \numberwithin{equation}{chapter}
 \numberwithin{figure}{chapter}
 \numberwithin{table}{chapter}
 \newcommand{\ntt}{\normalfont\ttfamily}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\input{unit3.tex}

\end{document}

我的目录如下,

在此处输入图片描述

请注意,第三章的方式不正确。我应该这样做

3 The complex potential for two dimensional, irrorational,   
  incompressible flow

帮我做一下修正...另外我还给出了第 3 章的代码...

\chapter{The complex potential for two dimensional, irrorational, incompressible flow}
  \section{Complex potential}
  Suppose that  $z=x+iy$ and that $W=f(z)$,
  \begin{equation}
   W=f(z)=\phi(x,y)+i\psi(x,y)\\
  \end{equation}
\begin{equation}
 \phi(x,y)+i\psi(x,y)=f(x+iy)\\
\end{equation}

答案1

如果您只发布查看问题所需的最少代码,那么会更容易。事实上,我无法通过发布的内容重现您的问题,因为:

  • 使用未定义的命令。我使用\documentclass{article} 下面的命令。\chapter\documentclass{report}
  • \textwidth 6in发现目录中第 3 章的目录行只占一行。使用\textwidth 5in我得到了您询问的问题。
  • 但是,我没有使用您的字体,因此也许这就是区别。

解决此问题的最简单方法是将 放入\newline章节标题中。我认为您使用的页面宽度不会影响章节标题:

在此处输入图片描述

\documentclass{report}
\renewcommand{\baselinestretch}{1.4}
\textwidth 5in
\begin{document}
\tableofcontents
\chapter{The complex potential for two dimensional, irrational,\newline incompressible flow}
  \section{Complex potential}
\newpage
another chapter
\end{document}

这似乎解决了目录中的问题,但我认为您在运行页眉时也遇到了章节和节标题重叠的问题 - 也许您的使用fancyhdr解决了这个问题,但对于我的代码模型来说却没有。

所有章节/节命令都有一个可选参数,用于缩短连续标题。使用这个你应该能够修复这些问题(如果存在):

\chapter[A shorter running title]{The complex potential for two dimensional, irrational,\newline incompressible flow}

相关内容