Wie repliziere ich mein Google Docs-Format in Latex?

Wie repliziere ich mein Google Docs-Format in Latex?

Ich habe ein Dokument in Google Docs, das ich in Latex replizieren wollte, einschließlich Schriftgröße und Rahmenabstand. Ich habe die Vorlagen durchgesehen, konnte aber auf der Rückseite nur eine Vorlage finden, die heißtSample Policy Memo for Cornell INFO 1200 https://www.overleaf.com/latex/templates/sample-policy-memo-for-cornell-info-1200/kybzqhsxjgjkaus dem Abschnitt auf formal-letters. Ich schaffe es immer noch nicht, dass es wie meine Google-Dokumente aussieht (Link unten) und hoffe, dass mir jemand helfen kann.

\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 Dokumentehttps://docs.google.com/document/d/15AXu65Itz5TxXLLxGOKg4AZsQs6bQX_TkV7GFIImtfQ/edit?usp=sharing

BEARBEITEN: Ich habe den Code bearbeitet, aber er zeigt weder Titel noch Namen an, sondern nur die E-Mail.

\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}

verwandte Informationen