Latex:论文定制 ToC、LoF、LoT

Latex:论文定制 ToC、LoF、LoT

http://www.sfsu.edu/~gradstdy/forms/thesis-dissertation-sample-pages.pdf

我无法满足目录页

这是我尝试过的:

\documentclass[12pt]{report}
...
...


% Set Table of Contents Paramters   
\setlength{\cftbeforetoctitleskip}{0.5in}
\setlength{\cftaftertoctitleskip}{0.5in}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\renewcommand{\cfttoctitlefont}{\hfill\normalsize}
\renewcommand{\cftaftertoctitle}{\hfill}
\renewcommand{\cftchapfont}{\normalsize}
\renewcommand{\cftchappagefont}{\normalsize}
\renewcommand{\cftchapleader}{\cftdotfill{\cftsecdotsep}}
\setcounter{tocdepth}{2}

% Set List of Figures Parameters    
\setlength{\cftbeforeloftitleskip}{0.5in}
\setlength{\cftafterloftitleskip}{0.2in}
\renewcommand{\cftloftitlefont}{\hfill\normalsize}
\renewcommand{\cftafterloftitle}{\hfill\null\\[0.5in]Figure\hfill{Page}}

% Rename Bibliography    
\renewcommand{\bibname}{References}

% Table of Contents Page    
\tocloftpagestyle{plain}    
{
  \clearpage
  \tableofcontents
  \cleardoublepage
}

% List of Figures Page    
\listoffigures

% List of Appendices Page
\addcontentsline{toc}{chapter}{List of Appendices}

问题 1。如何在目录中显示“图表列表”,但页面上的实际标题却是“图表列表”(全部大写)?如果列表溢出到多个页面,如何隐藏不需要的页眉/页脚?

Q2. 如何为附录创建类似的页面?

答案1

以下是如何处理您的第一个“双重”请求:

  • “我怎样才能在目录中说“图表列表”,但页面上的实际标题却是“图表列表”(全部大写)?'

    使用以下定义\cftloftitlefont

    \renewcommand{\cftloftitlefont}{\hfill\normalsize\MakeUppercase}
    \renewcommand{\cftafterloftitle}{%
      \addcontentsline{toc}{chapter}{\listfigurename}%
      \hfill\null\\[0.5in]Figure\hfill{Page}}
    

    这是因为 LoF 标题作为单个标记传递,很容易被 吞噬\MakeUppercase。 添加 会将\addcontentslineLoF\cftafterloftitle插入 ToC。

  • “如果列表溢出到多页,我该如何抑制不需要的页眉/页脚?”

    您可以在整个 LoF 中发布特定的页面样式。虽然第一页的默认值为plain,但后续页面也可以强制显示为plain(如果它们尚未显示)。以下示例将使用mystyle页面样式设置整个 LoF,然后将其重新设置为myotherstyle

    \pagestyle{mystyle}
    \tocloftpagestyle{mystyle}{
      % List of Figures Page
      \listoffigures
      \cleardoublepage
    }
    \pagestyle{myotherstyle}
    

对于第二个请求,我建议将当前的代码片段补充成类似于最小工作示例(MWE)。请注意,可能存在影响附录的软件包(例如appendix包裹或使用章节显示附录(即使课程提供了章节)。因此,这里提供的更多信息将会很有价值。

相关内容