我需要写一篇论文,我想使用 MacTeX,但是要将其格式化为符合我教授的所有要求非常困难。如果有人能帮忙,那将非常有帮助,因为我对 LaTeX 还不太熟悉,但我希望做得更好。所需的格式如下。
格式指南: 時間
12 号字体
双倍行距
将姓名和日期放在页面顶部的单独空间中
将姓氏和页码放在以下页面的页眉部分
答案1
我认为这符合您的要求。
\documentclass[12pt]{article}
\usepackage{fancyhdr} % Enhanced control over headers and footers
\usepackage[T1]{fontenc} % Font encoding
\usepackage{mathptmx} % Choose Times font
\usepackage{microtype} % Improves line breaks
\usepackage{setspace} % Makes the document look like horse manure
\usepackage{lipsum} % For dummy text
\pagestyle{fancy} % Default page style
\lhead{My name}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\thispagestyle{empty} %First page style
\setlength\headheight{15pt} %Slight increase to header size
\begin{document}
\begin{center}
\begin{tabular}{c}
\textbf{My Name} \\
\textbf{\today}
\end{tabular}
\end{center}
\doublespacing
\lipsum[1-10]
\end{document}
结果: