附录是较为常用的内容之一,但是往往标题很多读者不会制作,本文提供一个制作方法。 解决方案效果图:
代码演示:
\documentclass[a4paper,10pt]{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Large\bfseries}{\thechapter}{11pt}{\Large}
\titleformat{\section}
{\normalfont\large\bfseries}{\thesection}{11pt}{\large}
\titlespacing*{\chapter}{0pt}{0pt}{15pt} %left, beforesep, aftersep, right
\titlespacing*{\section}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\usepackage[titletoc]{appendix}
\begin{document}
\tableofcontents
\chapter{Introduction}
A chapter intro.
\section{Project}
A section here.
\bibliographystyle{unsrtnat}
\bibliography{mybibfile}
\addcontentsline{toc}{chapter}{\bibname}
\titleformat{\chapter}[display]
{\normalfont\Large\bfseries}{Appendix~\Alph{chapter}}{11pt}{\Large}
\begin{appendices}
\renewcommand{\thechapter}{\Alph{chapter}.}
\chapter{First appendix}
some text...
\chapter{Second appendix}
some more text
\end{appendices}
\end{document}