如何複製 google docs 預設文件?

如何複製 google docs 預設文件?

我想複製這個Google文檔格式。那些擁有乳膠程式設計學位的人請幫幫我。

  1. 即使我以 times 作為參數呼叫 usepackage 函數,字體還是不同的
  2. 各部分的粗體有所不同。

Google文檔

https://docs.google.com/document/d/15AXu65Itz5​​TxXLLxGOKg4AZsQs6bQX_TkV7GFIIMtfQ/edit

在此輸入影像描述

乳膠

\documentclass[12pt]{article}
\usepackage{times}
\usepackage[margin=1in]{geometry}

\begin{document}

\noindent
{\large Title} \\
{\large Name (Email)} \\
\hline

\section*{Introduction}
\section*{Research Question}
\section*{Methodology}

\end{document}

在此輸入影像描述

答案1

為了更改部分的外觀,您可以使用titlesec.我認為您確實想要一個頁眉。所以你可以做

\documentclass[12pt]{article}
\usepackage{times}
\usepackage[margin=1in,top=1.6in,headheight=1in]{geometry}
\usepackage{titlesec}
\titleformat{\section}{\Huge}{\thesection}{2em}{}
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0.6pt}%
\pagestyle{fancy}
\lhead{\large Title\\
Name (Email)}
\begin{document}

\section*{Introduction}
Some text for the introduction.

\section*{Research Question}
Some text for the research.

\section*{Methodology}
Some text for the methodology.

\end{document}

在此輸入影像描述

這似乎更接近目標輸出。

相關內容