如何将我的 google docs 格式复制到 latex 中?

如何将我的 google docs 格式复制到 latex 中?

我在 google docs 中有一个文档,希望将其复制到 latex 中,包括字体大小和边框间距。我查看了模板,但在 overleaf 上只找到一个名为的模板Sample Policy Memo for Cornell INFO 1200 https://www.overleaf.com/latex/templates/sample-policy-memo-for-cornell-info-1200/kybzqhsxjgjk来自 的部分formal-letters。我仍然无法让它看起来像我的 google 文档(下面的链接),并希望有人能帮助我。

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

Title\\
Name (email)

\begin{document}
\maketitle

{\LARGE \textbf{Introduction}}\\
Some text for introduction.\\

{\LARGE \textbf{Research Question}}\\
Some text for research question.\\

{\LARGE \textbf{Methodology}}\\
Some text for methodology.\\

\newpage
\printbibliography
\end{document}

谷歌文档https://docs.google.com/document/d/15AXu65Itz5​​TxXLLxGOKg4AZsQs6bQX_TkV7GFIImtfQ/edit?usp=sharing

编辑:我已经编辑了代码,但它没有显示标题和名称,只显示电子邮件。

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

\title{Title}
\author{Name}
\email{email}

\begin{document}
\maketitle

\section*{Introduction}
Some text for introduction.

\section*{Introduction}
Some text for research question.

\section*{Introduction}
Some text for methodology.

\newpage
\printbibliography
\end{document}

相关内容