“缺少 \begin{document}”和“出了点问题 - 也许缺少 \item”

“缺少 \begin{document}”和“出了点问题 - 也许缺少 \item”

我正在使用 overleaf 模板https://www.overleaf.com/latex/templates/sample-policy-memo-for-cornell-info-1200/kybzqhsxjgjk修改后出现了一些错误。我一直试图修复它,但失败了。希望得到一些帮助,谢谢。

\documentclass[12pt]{texMemo} % originally by Rob Oakes; adapted by Alice Chen
\usepackage{mathptmx}

\title{Discovering}
\author{Name}
\email{email} % missing \begin{document}

\begin{document}
\maketitle % something's wrong -- perhaps a missing \item

\section*{Introduction}
Some text for introduction. \cite{35usc101}
\section*{Research Question}
Some text for research question.

\section*{Methodology}
Some text for methodology.

\newpage
\printbibliography
\end{document}

答案1

[免责声明:我是 Overleaf 的支持人员。]

texMemo.cls可以从以下链接下载https://texblog.org/2012/03/07/writing-a-memo-in-latex/。这与上传到 Overleaf 的“INFO 1200 政策备忘录”版本略有不同,因为“INFO 1200”版本加载的是mathptmx而不是palatino,并且还加载了hyperreftitlesecbiblatexinputenc。用于创建备忘录字段的“核心”宏没有改变。

Overleaf 模板开箱即用。查看您的代码,并与该模板提供的示例代码进行比较(可以在 Overleaf 模板页面上使用“查看源代码”查看):您不能将\author\title\email与此类一起使用。相反,您必须使用\memofrom\memoto\memore,例如

\memofrom{Name (author's email)}
\memoto{Target recipients; is optional}
\memore{Discovering}

相关内容