添加附录的最简单方法?

添加附录的最简单方法?

在发帖之前我查看了一下,发现有很多不同的方法来做附录。难道没有通用的方法可以为{报告}格式的论文添加附录吗?

我目前使用的是这样的:

\documentclass[12pt,a4paper]{report}
\usepackage[toc,page]{appendix} 
\begin{document}
\begin{appendices}
\chapter{Formula}
The contents...
\end{appendices}
\end{document}

但是,它在单独的页面上添加了“附录”,然后显示附录 A,后面是章节名称,然后是内容...但是,章节字体很大,对我来说看起来不太好看。

我想要一个具有以下特征的附录:

  • 已添加到目录
  • 可以引用(我假设使用标签?)——可选
  • 不需要整页只是为了标题附录
  • 附录(A...Z)后跟小字体标题

有没有简单又方便的方法来做到这一点?

答案1

您描述的大多是标准布局,没有任何包装

\documentclass[12pt,a4paper]{report}

\begin{document}

\tableofcontents

\chapter{aaa}
...
\chapter{aaa}
...

\appendix
\chapter{Formula}
The contents...

\chapter{something}
The contents...

\end{document}

这不会引入单独的“附录”封面,附录标题设置为章节。如果您想将其缩小,您可以只对附录进行此操作,或者(更常见的是)对所有章节进行全局更改。

有无数种变化,这将重新定义章节标题以使用相同的设置,\section但用\LARGE代替,\Large因此它不会强制分页。

显然,如果您经常这样做,您可以进行设置以将其添加到定义中,\appendix这样您就不会在文档中间进行重新定义。

\documentclass[12pt,a4paper]{report}

\begin{document}

\tableofcontents

\chapter{aaa}
...
\chapter{aaa}
...

\makeatletter
\renewcommand\chapter{\@startsection {chapter}{0}{\z@}%
                                   {-3.5ex \@plus -1ex \@minus -.2ex}%
                                   {2.3ex \@plus.2ex}%
                                   {\normalfont\LARGE\bfseries}}
\makeatother
\appendix
\chapter{Formula}
The contents...

\chapter{something}
The contents...

\end{document}

相关内容