我喜欢在编辑时使用章节作为书签。但是,当我使用achemso
它时,这些会关闭。
MWE1 可以正确生成书签。
%\documentclass[journal=cgdefu]{achemso}
\documentclass{article}
\usepackage{hyperref}
\title{This is a title}
\author{Canageek}
%\affiliation{Department of Chemistry, Simon Fraser University, 8888 University Drive, Burnaby, B.C., Canada}
%\email{This is an email}
\date{}
\begin{document}
\maketitle
\section{Introduction}
\section{Experimental}
\end{document}
然而,MWE2 不会:
\documentclass[journal=cgdefu]{achemso}
%\documentclass{article}
\usepackage{hyperref}
\title{This is a title}
\author{Canageek}
\affiliation{Department of Chemistry, Simon Fraser University, 8888 University Drive, Burnaby, B.C., Canada}
\email{This is an email}
\date{}
\begin{document}
\maketitle
\section{Introduction}
\section{Experimental}
\end{document}
答案1
标准设置中的achemso
可关闭章节编号,从而有效地使\section
行为类似于\section*
。因此,您需要使用\SectionNumbersOn
来启用章节编号:这还会为章节生成 PDF 书签。如果您想要无编号的章节,但又想要,\SectionNumbersOn
那么您需要使用\section*
代替\section
,就像在任何其他文档中一样。