我如何复制 Google Docs 默认文档?

我如何复制 Google Docs 默认文档?

我想复制此 google docs 格式。有 latex 编程学位的人请帮帮我。

  1. 尽管我使用 times 作为参数调用 usepackage 函数,但字体仍然不同
  2. 各个部分的粗体有所不同。

谷歌文档

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}

在此处输入图片描述

这似乎更接近目标输出。

相关内容