为什么使用 achemso 会关闭书签?

为什么使用 achemso 会关闭书签?

我喜欢在编辑时使用章节作为书签。但是,当我使用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,就像在任何其他文档中一样。

相关内容