Google ドキュメントの形式を LaTeX に複製するにはどうすればよいですか?

Google ドキュメントの形式を LaTeX に複製するにはどうすればよいですか?

私はGoogleドキュメントに、フォントサイズや境界線の間隔などLaTeXで再現したい文書を持っています。テンプレートを調べましたが、OverLeafで見つかったテンプレートは1つだけでした。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}

関連情報