如何將我的Google文檔格式複製到乳膠?

如何將我的Google文檔格式複製到乳膠?

我在谷歌文檔中有一個文檔,我希望在乳膠中複製該文檔,包括字體大小和邊框間距。我瀏覽了模板,但只能在背面找到一個名為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}

Google文檔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}

相關內容