如何制作像科学杂志那样的两个标题页?

如何制作像科学杂志那样的两个标题页?

我一直在尝试创建一个具有两个不同标题页但彼此非常相似的 TeX 文件(例如当你有一本科学杂志时)

我的问题是第一页和我想要的完全一样(其页眉带有图像,页脚带有杂志名称、DOI 等)但第二个没有我想要的风格(仅包含文章标题和作者姓名,并且没有我想要的缩进)

这就是我所拥有的:

\documentclass[twoside,11pt]{article}

\usepackage[english]{babel}
\usepackage{amsmath, amsthm, amsfonts, latexsym, amssymb, amstext}
\usepackage{graphicx}
\begin{document}

\pagestyle{fancyplain}

\lhead[\fancyplain{}{\thepage}]{} \rhead[ \
]{\fancyplain{}{\thepage}}

\chead[{\fancyplain{}{\sc Something Important}}]{\fancyplain{}{\sc
Someone important}}

\cfoot{\tiny Magazine, pp.\ 1--7 \\ DOI blah}

\setcounter{page}{1}

\title{\sc Something Important}
\author{{\it Someone important} \\ \small{Somewhere in the world}}
\date{}

\maketitle

\vspace{-7cm}

\begin{center} 
\noindent\hspace{-.38cm} \includegraphics[scale=.48]{image}
\noindent\rule{12.7cm}{0.4pt}
\end{center}


\newpage



\chead[{\fancyplain{}{\sc Something}}]{\fancyplain{}{\sc
Someone}}

\cfoot{\tiny Magazine, pp.\ 9--13 \\ DOI blah}


\title{\sc Something}
\author{{\it Someone} \\ \small{Somewhere}}
\date{}


\maketitle

\vspace{-7cm}

\begin{center} 
\noindent\hspace{-.38cm} \includegraphics[scale=.48]{image}
\noindent\rule{12.7cm}{0.4pt}
\end{center}

\end{document}

如果有人能告诉我如何让第二个标题页与第一个标题页相似,我将不胜感激。谢谢!

答案1

由于您\maketitle在文档中使用了 twicce,tex.stackexchange.com/q/330358/134144可能很有趣 – leandriis

使用\maketitle会重置一些东西。请查看那里的解释

相关内容