Google Docs 기본 문서를 어떻게 복제하나요?

Google Docs 기본 문서를 어떻게 복제하나요?

이 Google Docs 형식을 복제하고 싶습니다. 라텍스 프로그래밍 학위 있으신 분들은 제발 제발 제발 제발 제발 제발 제발 제발 제발 도와주세요.

  1. 시간을 인수로 사용하여 usepackage 함수를 호출했는데도 글꼴이 다릅니다.
  2. 섹션마다 굵은 글씨가 다릅니다.

구글 문서

https://docs.google.com/document/d/15AXu65Itz5TxXLLxGOKg4AZsQs6bQX_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}

여기에 이미지 설명을 입력하세요

이는 목표 출력에 더 가까운 것 같습니다.

관련 정보