Skip to Main Content

Overleaf - LaTeX: Structuring and Formatting

Creating sections

The \section{..} command is used to insert sections into your document, where the section name is entered in the curly brackets.

The command \subsection{..} inserts a subsection into the document.

The command \subsubsection{..} inserts a second-level subsection.

\section{Experiment}

    \subsection{Methods}
    
        \subsubsection{Stimuli}

The numbering of your sections in the document is done automatically.

Creating paragraphs

You can create a paragraph by skipping a line in your code.

To create a paragraph with no indentation in the beginning, use the command \noindent.

\noindent This is the beginning of a paragraph that has no indentation.

 

You can also add a footnote to your paragraph by using the \footnote{..} command.

This is a sentence.\footnote{Enter your footnote here.}

Formatting

Document Size

To change the size of your document, enter the page type in square brackets in the \documentclass[..]{..} command. Two such options for page type include letterpaper and a4paper.

Font Size

The font size of the document can be changed by specifying the font size within the square brackets of the \documentclass[..]{..} command. If adding font size in addition to paper type, add a comma between the two specifications. Popular font sizes include 12pt, 11pt, and 10pt.

\documentclass[12pt,a4paper]{article}

Font Style

LaTeX's default font is Computer Modern, but the editor also supports a number of other font types. Refer to the LaTeX font catalogue to see the range of fonts offered by LaTeX and how to use them in your document.

To italicize text, use the \textit{..} command and enter the text you would like italicized within the curly brackets.

To write text in bold, use the \textbf{..} command and enter the text you would like in bold within the curly brackets.

To underline text, use \underline{..} and enter the text you would like to underline within the curly brackets.

LaTeX also offers the option to format your text in small capital letters. To achieve this, use the \textsc{..} command.

Margins

The easiest way to change margins in LaTeX is by using the geometry package. To use a new package, use the \usepackage{..} function, specifying the package you want to use within curly brackets. You can specify your margins in the square brackets.

\usepackage[margin=2.5cm]{geometry}

You can also customize the margins further by adding specifications for each side of the page.

\usepackage[left=1cm,right=2.5cm,top=2cm,bottom=1.5cm]{geometry}

Line Spacing

The spacing between lines in your document can be changed using the \linespread{..} command. Enter the desired line spacing within the curly brackets.

\linespread{1.5}

The command above will result in a line space of 1.5.