我在用jcappub.sty。 例如 -
\documentclass[a4paper,11pt]{文章} \pdf输出=1 \usepackage{jcappub} \title{标题} \author{我} \开始{文档} \maketitle \日期{\今天} \section{章节:1} 。 。 \结束{文档}
我正在尝试在标题页上添加日期。我按照建议samcarter_is_at_topanswers.xyz-
\制作字母 \@日期 \makeatother
但是日期会显示在内容页面上。有什么解决办法吗?
答案1
根据问题的讨论,可以通过直接在 中输入日期\author{...}
或通过修补将日期信息添加到标题页\maketitle
。
以下示例\maketitle
在标题页的作者下方修补并添加日期信息。
\documentclass[a4paper,11pt]{article}
\usepackage{jcappub}
\title{Title}
\author{Me}
\date{\today}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\maketitle}
{\the\auth@toks\par}
{\the\auth@toks\par\textmd{\@date}\par}
{}{}
\makeatother
\begin{document}
\maketitle
\section{Section:1}
.
.
\end{document}