删除章节前面的数字

删除章节前面的数字

我想删除目录和正文中“附录”前面的数字。其他章节的编号应保持原样。有人能告诉我怎么做吗?

\documentclass[10pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\makeatletter
\renewcommand{\@makechapterhead}[1]{%
\vspace*{50 pt}%
{\setlength{\parindent}{0pt} \raggedright \normalfont
\bfseries\Huge\thechapter.\ #1
\par\nobreak\vspace{40 pt}}}
\makeatother
\begin{document}
\tableofcontents
\chapter{Intro}
\chapter{Main part}
\chapter{Conclusion}
\chapter{Appendix}
\end{document}

答案1

你写了,

我想删除目录和文本中“附录”前面的数字。

您可以通过替换来实现您的目标

\chapter{Appendix}

\chapter*{Appendix}
\addcontentsline{toc}{chapter}{Appendix}

第一条指令在文档正文中创建一个未编号的章节级标题。第二条指令将行写入\contentsline {chapter}{Appendix}{5}文件\jobname.toc。这反过来会影响目录中目录的排版方式\jobname.pdf

相关内容