我的最后一章名为“Anhang”,我用 LaTeX 编写\section*{Anhang}
。然后它没有编号,但我得到了标题5.Anhang
。我怎样才能摆脱5.
(编号来自前一节)?
\documentclass[a4paper,12pt]{article}
\pagestyle{headings}
\def\eop{\hfill$\square$}
\begin{document}
\section*{Anhang}
\sectionmark{Anhang}
\addcontentsline{toc}{section}{Anhang}
\end{document}
太感谢了。
答案1
尝试
\section*{Anhang}
\renewcommand\thesection{\hspace{-1em}}
\sectionmark{Anhang}
但是,使用包fancyhdr
和命令\appendix
更有意义。
答案2
我总是使用自定义的 \secstar,因为可以轻松进行更改(例如颜色、大小、位置等),见下文
\newcommand{\secstar}[1]{
\thispagestyle{fancy}\clearpage\phantomsection\vspace*0pt}\addcontentsline{toc}{section}{#1}
\centerline{\bf\lsstyle }
\centerline{\huge \lsstyle \color{cyan} #1}
\vspace*{35pt}
}
进而
\subsecstar{Anhang}