我想用 LaTeX 做作业。我希望格式如下:答案的简单枚举列表(同一行有简单的数字,没有章节标记),标题仅在第一页的右上角。我还希望页边距更小,字体为 12pt。列表、页边距和字体我都用
\documentclass[a4paper, 12pt]{article}
\usepackage{enumitem}
\usepackage{fullpage}
\begin{document}
\begin{enumerate}
\item[1.] Here is some text. $$f(x+h) = f(x) + f'(x)h + o(h).$$
\end{enumerate}
\end{document}
我现在想弄清楚如何在首页的右上角显示标题。我搜索了网站上的旧答案,但没有成功。
答案1
从技术上来说,没有必要将你想要的内容放在页面中标题。我只是将其设置为文本块的一部分 - 第一页上的第一件事,右侧对齐:
\documentclass[12pt]{article}
\usepackage[paper=a4paper,margin=1in]{geometry}
\begin{document}
\null\hfill\begin{tabular}[t]{l@{}}
\textbf{My name} \\
\textit{My University}
\end{tabular}
\begin{enumerate}
\item
Here is some text. $f(x+h) = f(x) + f'(x)h + \mathcal{O}(h)$.
\end{enumerate}
\end{document}
我用过geometry
设置页面边界/大小。根据自己的喜好进行调整。其背后的想法tabular
只是为了强调你可以制作一个建造您想要放置为包含多行的“标题”的内容。但是,如果您只想要一个条目,则可能不需要使用tabular
。