
글꼴 크기와 테두리 간격을 포함하여 라텍스로 복제하고 싶은 문서가 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}
구글 문서https://docs.google.com/document/d/15AXu65Itz5TxXLLxGOKg4AZsQs6bQX_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}