我可以使用哪个命令来访问 \title{} 定义的标题

我可以使用哪个命令来访问 \title{} 定义的标题

从命令的存在来看,\maketitle我相信标题保存在某个地方。那么我如何通过命令访问它(例如我想在其他地方使用它)。找到它可能很难,因为文章的源代码不对外开放。

答案1

我猜你正在向某个期刊提交一篇论文,该期刊不会透露他们最终用于排版论文的文档类的代码,而只是提供了一个通用模板。

你遇到的问题很容易解决。

\documentclass{generic-publisher-class}

%%% Whatever you need in the preamble
\usepackage{amsmath}
%[...]
%%%

%%% add this for remembering the title
\newcommand{\thisdocumenttitle}{What's the name of this paper?}

\begin{document}

\author{A. Uthor}
\title{\thisdocumenttitle}

\maketitle

This paper is entitled ``\thisdocumenttitle'' and is the 
sequel to another paper of mine~\cite{mypreviouspaper}.

\end{document}

相关内容