是否有可能在同一行上得到“附录 X”,也许在附录标识字母后面有一个冒号?
梅威瑟:
\documentclass{report}
\begin{document}
\tableofcontents
\chapter{CHapter one name}
\chapter{Chapter two name two}
\appendix
\chapter{Theory}
\section{Some theory}
\section{Some other theory}
\chapter{Method}
\section{LOLZ}
\section{ROLF}
\end{document}
可以看到,编译后的PDF内容为:
Appendix A
Theory
A.1 Some Theory
我希望它是这样的:
Appendix A: Theory
A.1 Some Theory
答案1
这里有个方法,用titlesec
和apptools
。附录章节放在页面顶部,但间距参数可以随意更改:
\documentclass{report}
\usepackage{showframe}
\usepackage{titlesec}
\usepackage{apptools}
\AtAppendix{\titleformat{\chapter}[block]{\LARGE\bfseries}{\appendixname~\thechapter:}{0.333em}{}%
\titlespacing*{\chapter}{0pt}{-20pt}{40pt}}
\begin{document}
\tableofcontents
\chapter{Chapter one name}
\chapter{Chapter two name two}
\appendix
\chapter{Theory}
\section{Some theory}
\section{Some other theory}
\chapter{Method}
\section{LOLZ}
\section{ROLF}
\end{document}