REVTeX:避免在单列模式下使用标题页

REVTeX:避免在单列模式下使用标题页

我有一份使用 RevTeX 4.1 文档类的简单文档。当我在文档类中使用 twocolumn 命令时,列中的文本会重叠,因此我想使用单列。但是,当我删除 twocolumn 选项时,标题会打印在自己的页面上,我想避免这种情况。示例:

\documentclass[amssymb, pra, 10pt, aps]{revtex4-1}
\usepackage{mathptmx, amsmath}

\begin{document}
\title{Sixth questions of the Putnam competition}
\maketitle
\begin{itemize}\item[1988 -- A6]
If a linear transformation $A$ on an $n$-dimensional vector space has $n+1$ eigenvectors such that any $n$ of them are linearly independent, does it follow that $A$ is a scalar multiple of the identity? Prove your answer.
\end{itemize}
\end{document}

这个问题是在 revtex 中创建具有两列布局的标题页

答案1

您只需将notitlepage选项传递给文档类。

\documentclass[amssymb, notitlepage, pra, 10pt, aps]{revtex4-1}
\usepackage{mathptmx, amsmath}

\begin{document}
    \title{Sixth questions of the Putnam competition}
    \maketitle
    \begin{itemize}\item[1988 -- A6]
        If a linear transformation $A$ on an $n$-dimensional vector space has $n+1$ eigenvectors such that any $n$ of them are linearly independent, does it follow that $A$ is a scalar multiple of the identity? Prove your answer.
    \end{itemize}
\end{document}

图片

相关内容