How to make a clear essay layout in LaTex?

There is an Overleaf Example file to store all the example coding, you can open it while reading this LaTeX guideline.
Cover Page
There is no standard format for a cover page; you can have a title, research question, subject and word count. The research question, subject and word count are required on the cover page, while the title is optional. For fair and equitable IB assessments, please do not mention your name, school and candidate number in EE.
Writing Section | Output Section |
Command | Remark |
\begin{titlepage} & \end{titlepage} | Anything written between them is the content of Cover Page. |
\begin {center} & \end{center} | Typesets the text between them at the centre of the page. |
\vsapce*{4cm}\vsapce{4cm} | Adds vertical space. If there is no text before this command, “*” will need to be added between the \vspace and {4cm}. |
\huge\Large\normalsize OR\huge{ }\Large{ }\normalsize{ } OR\begin{huge} & \end{huge}\begin{Large} & \end{Large}\begin{normalsize} & \end{normalsize} | As it is setten as \documentclass[12pt,a4paper]{article}, the \normalsize in this document will be 12pt, not 10pt as the default. CommandFont Size\tiny6pt\scriptsize8pt\footnotesize10pt\small11pt\normalsize12pt\large 14pt\Large 17pt\LARGE20.5pt\huge24.5pt { } and \begin{ } & \end{ } help to control the font size of a specific text or range. |
\textbf{Title:} | Achieve the bold text. |
\vfill | Ensure words or sentences after /vfill are placed at that page’s end. |
Abstract
Writing Section | Output Section |
Command | Remark |
\begin{abstract} & \end{abstract} | Anything written between them is the content of Abstract. |
\newpage | The page will be directly “cut off”, and a new one will begin. |
Table of Content
The sectioning commands auto-create the entries of the table of content. Therefore, while using \section and \subsection, the table of content will auto-entry for the sections.
Writing Section | Output Section |
Command | Remark |
\tableofcontents | Anything written between them is the content of Abstract. |
\newpage | The page will be directly “cut off”, and a new one will begin. |
Bibliography
As the reference information needs to be kept separately, you should create a new file in the same project. (The new file button of Overleaf is on the second row of the left top corner.) Moreover, the file name must end with “.bib” (ref.bib will be used as the example).
If you use Google Scholar to do the research, you can just click the “Cite” button and then click the “BibTeX” button for getting the bibliography format that can be directly used in Latex. The label “resnik2012denationalization” is assigned to this entry, is a unique identifier that can be used to refer this article within the document.
Like this:
@article{resnik2012denationalization, title={The denationalization of education and the expansion of the International Baccalaureate}, author={Resnik, Julia}, journal={Comparative Education Review}, volume={56}, number={2}, pages={248–269}, year={2012}, publisher={University of Chicago Press Chicago, IL} } |
Otherwise, you can follow the example to enter the required information.
APA
Writing Section | Output Section |
Command | Remark |
\usepackage{apacite} | Defines the bibliography style and the citation style as APA. |
\cite{resnik2012denationalization} | In-text citation{resnik2012denationalization} is refer to “.bib” file |
\pagebreak\bibliographystyle{apacite}\bibliography{ref.bib} | Insert the references page. |
MLA
Writing Section | Output Section |
Command | Remark |
\usepackage[hidelinks]{hyperref}\usepackage[backend=biber,style=mla]{biblatex}\addbibresource{ref.bib} | Defines the bibliography style and the citation style as MLA. |
\cite{resnik2012denationalization} | In-text citation{resnik2012denationalization} is refer to “.bib” file |
\pagebreak\printbibliography | Insert the work cited page. |