标题页格式

标题页格式

我在用着\documentclass{report}

在 上\titlepage,我怎样才能在左下角写入\author和部分?\date

谢谢你!

答案1

这符合你的要求吗

在此处输入图片描述

\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}

相关内容