我正在为一个班级写一篇研究论文,我想知道是否有办法将课程名称写入 overleaf 中文章的标题部分?例如,如果我希望它显示如下:
论文标题
姓名
数学 101
日期
我尝试过\affil
这样使用:
\title{Title of Paper}
\author{Name}
\affil{Math 101}
\date{May 7, 2020}
但这并没有起作用,除了数学 101 之外的所有内容都消失了。
答案1
定义你自己的标题——https://en.wikibooks.org/wiki/LaTeX/Title_Creation
\documentclass[11pt]{article}
\makeatletter
\def\course#1{\gdef\@course{#1}}
\def\@course{\@latex@warning@no@line{Hey you, no \noexpand\course given}}
\def\@maketitle{%
\newpage \null \vskip 2em%
\begin{flushright}%
\let\footnote\thanks
\vskip 1.5em%
{\large \lineskip .5em%
\begin{tabular}[t]{r@{}}%
\@author
\end{tabular}\par
\begin{tabular}[t]{r@{}}%
{\sffamily \@course}
\end{tabular}\par
\par}%
\vskip .5em%
{\small\@date}\par\bigskip%
{\LARGE\scshape \@title \par\bigskip\hrule}%
\end{flushright}%
\par \vskip 1.5em}
\makeatother
\title{Some long Wonderfull Title}
\course{UFO affairs\thanks{Area 51}}
\author{Clever Reporter\thanks{No dot disturb.}}
\date{\today}
\begin{document}
\maketitle
\end{document}