将目录中的 (.) 替换为空格

将目录中的 (.) 替换为空格

我正在文档中创建自己的附录编号,但编号在目录中显示不正确。在 中appendixa.tex,我有:

\renewcommand\thesection{Appendix \Alph{section}}

\section{}
\label{s:appa}

这将创建一个名为“附录 A”的新部分,文档中的任何引用都显示为“附录 A”。我的问题是,在目录中,它显示为“附录 A”。有没有简单的方法可以改变它,使其在目录中显示为“附录 A”?

****编辑****

这是我的主要文件report.tex

\documentclass[11pt,letterpaper]{report}

\renewcommand{\bibname}{References}

\begin{document}

\maketitle
\clearpage
\thispagestyle{empty}
\pagenumbering{roman}
\tableofcontents
\clearpage

%% =========

\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\counterwithout{section}{chapter}

%% =========

\input intro
\setcounter{section}{1}

%% intro.tex is a separate file with only a section, and there are more
%% \input lines after this. They all appear in the documents and ToC
%% correctly. Each is simply a section. This can be commented out.

\afterpage{\clearpage}

\bibliographystyle{unsrt}
%% =========
\bibliography{}
\addcontentsline{toc}{section}{References}

\newpage
\setcounter{section}{0}

\input appendixa

\newpage
\endpage

\end{document}

我的全部appendixa.tex文件都在上面。

答案1

这里的主要问题是 OP\appendix根本没有使用命令并且混淆了chapter整个section文档。

现在重新定义\thesectionas{Appendix \Alph{section}}会导致非常宽的部分数字 - 对于ToC数字区域来说太宽了 - 它会泄漏到虚线部分线中,这就是为什么点.出现在那里。

若该类是bookreport→ 则主附录单位是\chapter,若该类是 则article附录单位是section

不建议混合使用(也不建议给出标题——从印刷/信息的角度来看)

我更改了一些设置并使用了带有选项appendix的包title,titletoc。这将自动Appendix ...在标题以及ToC

为了bibliography纳入ToC我使用tocbibind

\documentclass[11pt,letterpaper]{report}

\renewcommand{\bibname}{References}


\usepackage[nottoc]{tocbibind}
\usepackage[titletoc,title]{appendix}
\usepackage{blindtext}
\usepackage{chngcntr}
\title{Theory of Brontosaurs}
\author{Ann Elk (Misses)}

\begin{document}

\maketitle
\clearpage
\thispagestyle{empty} %%%
\pagenumbering{roman}
\tableofcontents
\clearpage

%% =========


\pagenumbering{arabic}
\setcounter{page}{1} % Useless
\counterwithout{section}{chapter}

%% =========

%\input intro
% \setcounter{section}{1}
\section{Intro}
\cite{Lam94}

%% intro.tex is a separate file with only a section, and there are more
%% \input lines after this. They all appear in the documents and ToC
%% correctly. Each is simply a section. This can be commented out.

%% =========


\bibliographystyle{unsrt}
\bibliography{biblio}




\begin{appendices}

\chapter{}\label{c:appa} 

\blindtext[5]
\end{appendices}


\end{document}

在此处输入图片描述

相关内容