标题页左下角有作者和日期

标题页左下角有作者和日期

我想将作者、日期和其他信息放在标题页的左下角。我想将它们对齐tabular,但我该如何将其放在标题页上?

我的页面看起来应该是这样的:

_____________________________________
|                                   |
|                                   |
|               TITLE               |
|                                   |
|              Subtitle             |
|                                   |
|                                   |
|                                   |
|                                   |
|                                   |
|                                   |
|                                   |
|                                   |
| Author  name                      |
| Date    date                      |
| ....    ....                      |
_____________________________________

答案1

您必须使用环境为标题页创建自己的布局titlepage。一个最小示例:

\documentclass{article}
\begin{document}
\thispagestyle{empty}
\begin{titlepage}
  \null\vfill

  \begin{center}

  {\Huge My Title}
  \vskip 2cm

  {\Large Subtitle or whatever}
  \vskip 1cm

  {\large Institution or whatever}
  \end{center}

\vfill
\vfill

\begin{tabular}{r}
Author Name\\
\small\today\\
\end{tabular}
\hfill
\end{titlepage}

\end{document}

这会产生相当无趣的输出:

输出

您可以在以下收藏中看到更多有趣的标题页示例:文森特·祖尼金德彼得·威尔逊

相关内容