答案1
您没有说明您使用的是哪个文档类,也没有指定任何相关的包。因此,很难给出确切的答案。我只能建议查看页面titling
并其文档。
这是使用文章类的示例。除了标题、作者和日期的标准命令外,我还定义了用于插入 TA 名称和类别部分信息的命令。
\documentclass[titlingpage]{article}
\usepackage{titling}
% make title large, bold, centered
\pretitle{\vfill\begin{center}\bfseries\Large}
\postdate{\end{center}}
% make author block large, bold, centered, raised, followed by TA, section
\preauthor{\vspace*{-3ex}\begin{center}\bfseries\large by\par\bigskip}
\postauthor{\par\bigskip TA: \theTA\par\bigskip\theclasssection
\end{center}}
% make date of submission pushed to bottom, centered, bold
\predate{\vfill\begin{center}\bfseries\large}
\postdate{\end{center}}
% define new commands for additional fields
\newcommand{\theTA}{}
\newcommand{\TA}[1]{\renewcommand{\theTA}{#1}}
\newcommand{\theclasssection}{}
\newcommand{\classsection}[1]{\renewcommand{\theclasssection}{#1}}
% set fields
\title{Experiment Title}
\author{Student (or Students') Name(s)}
\date{Date of submission}
\TA{TA's Name}
\classsection{Lab Section, Group, Day of week and time of lab}
\begin{document}
% typeset titlepage
\begin{titlingpage}
\maketitle
\end{titlingpage}
\end{document}
有很多方法可以调整这一点,并且可能需要采取不同的方法,特别是当您使用非标准文档类时。