Javatpoint Logo
Javatpoint Logo

LATEX FORMATS

Formatting Arguments

The formatting arguments are used to provide a unique look to your file or document. There are various methods to format the document, which are listed below:

1. Optional arguments

The popular optional arguments are:

  • twocolumn - it is 2 column pages
  • titlepage- \maketitle generates a title page
  • openright- the chapter begins on the right-hand page, if two side is used
  • landscape- used to display in landscape
  • legno- it puts the equation number on the left side
  • flegn- left align equations versus center
  • twoside- it prints on both sides of the paper.

a) Class

The documents types used here are articles in presentation and scientific journals, report, book, slides, a0poster proc (a class based on article class), letters, beamer (for writing presentations), etc.

The class is used at the beginning of the program, {article} is the commonly used class.

The document class defines the overall layout of the document.

The other classes are also enclosed in the curly brackets, which are given below:

  • report- it is used for chapter containing longer documents.
  • thesis- for preparing a thesis with Latex.
  • letter- for letters writing
  • books- for the books
  • slides- for the transparencies.

b) Groups

To keep the scope limited and the state to local, the particular part can be enclosed locally in the curly braces. But in some cases, if braces are not possible, then you can use \bgroup and \egroup to begin and end a group respectively.

For example, normal text {xyz} more normal text

This can be written as normal text \bgroup xyz \egroup {} more normal text.

c) Packages

It is a method which provides or adds extra formatting features to the document such as pictures, bibliography and links. It also adds new functions to the Latex. All the packages must be included in the preamble only. To load a package, the command used is:

It can also be used as \usepackage[options]{package}

Some of the commonly used packages are:

  • color: provides a way to use colors.
  • rotating: it is used for the rotation especially figures and tables.
  • fancyhdr: it customizes headers and footers.
  • graphicx: it is the command used to include graphics.
  • setspace: it is an easy way to change the linespacing.

2. Structure formats

  • Title

The title is used in most of the paper formats like a letter, articles, report, book class, etc. To create a title, you need to specify the text for the author, title, and date, then with the use of \maketitle command, the title page is generated by the Latex. The \begin{document} must be used at the starting. The command used to make the title is \maketitle. The code for creating the title is given below:

The output is shown in the below image:

Latex FORMATS

If you want no date at all, you can use the \date{} command.

To display the current date, you can use the \date{\today} command.

  • Sections

You can divide your document into sections, sub-sections. The commands used to create the sections are:

  • \section{..}
  • \subsection{..}
  • \subsubsection{..}
  • \paragraph{..}
  • \subparagraph{..}

These are the popular commands for the articles class. You can also use \chapter{..} command for the books and the report class.

The code for the following section is given below:

The output is shown in the below image:

Latex FORMATS
  • Labeling
    To refer to other parts of the document, you can label any of the section commands. You can label the section with \label{labelname}.
    If you want to refer to the section or page number of the label; you can use the \ref{labelname} and \pageref{labelname}.
    The code is shown below:

Output

Latex FORMATS

For the multiple pages or the file, you can easily refer to the page number and the section according to the requirements.

  • Table of contents

If you want to create the table of contents in your document, you can type the command \tableofcontents.

  • Page Numbering

This format is used to number the pages before writing the document. It also ensures that the main document starts on page number 1. The page numbering can be switched between roman and Arabic. The command used to number the pages is \pagenumbering{..}, which is declared after the \maketitle command.

The code for the above method is given below:

The output is given in the below image:

Latex FORMATS

f. Headers and Footers

appears in the head or the foot sections. The output screen consists of a head, body, and foot. The page number is printed by default by all the classes except the letter.

To modify the default actions, you can use the \pagestyle command, which is placed just after the \chapter or the command similar to this.

The types of standard page styles are given below:

  • \pagestyle{plain}
    It is the default style for the report classes and the articles. The page number is listed on the foot while the head is empty.
  • \pagestyle{headings}
    In this style, the foot is empty. The section heading and the page number is put in the head.
  • \pagestyle{myheadings}
    To specify the information used in the head; the following commands are used.

\markboth is used for a two-sided file or document, while \markright is used for a one-sided document.

  • \pagestyle{empty}
    In this style, both the header and foot are empty.
  • \thispagestyle{style}
    It is used to change the style for the current page only. For example, \thispagestyle{empty} is used to have nothing in the foot and head. This command will be executed only for the current page without affecting other pages.

If you want to format or customize your header and footers in another way. You can use the fancyhdr command. This command in Latex is used as \usepackage{fancyhdr}. The package used here can align your header and footers to the left, right, and the center. You can also define multi-line headers and filters, separate headers used for the even and odd pages, etc.

\pagestyle{fancy} is also used here.

The following commands can be included in the {} ( curly brackets): \lhead{}, \chead{}, \rhead{}, \lfoot{}, \cfoot{}, \rfoot{}.

If you want to suppress the horizontal line under the header, which is drawn by default, you can use the \renewcommand{\headrulewidth}{0pt} command.

g. Margins

The commands are used to set the margins manually. The margins internally are considered 1 inch by default. Hence, if you want to set a margin of 0.5 inches, you have to mention that margin -0.5 inches. You can also set the height and width of the text area by using the textheight and textwidth commands.

The available commands to set margins are given below in the table:

Margins command
left margin
(for odd pages if you are using single-sided)
\oddsidemargin
left margin
(for the even pages if you are using double-sided)
\evensidemargin
right margin \textwidth
top margin \topmargin
bottom margin \textheight

The commands used to set the inches for margins are:

  • To set the top margin 0.7 inch, \setlength{\topmargin}{-0.7in}
  • To set margin 1 inch on right pages, \setlength{\oddsidemargin}{0in}
  • To set margin 1 inch on left pages in two-sided document, \setlength{\evensidemargin}{0in}
  • To leave the space for right margin, \setlength{\textwidth}{0in}
  • To reserve 9 inches for the text , \setlength{\textheight}{9in}

h. Paragraph

To start a paragraph, you can use the control sequence \par or can either leave a blank space. The indent of the paragraph is 1.5em by default (1.5 times the point size of the current font). There is no extra space inserted between the paragraphs. To control the paragraph separation and indention, the commands \parindent and \parskip are used. Let-s consider an example below:

This example contains a simple paragraph. The code is given below:

The output is given in the image below:

Latex FORMATS

This example contains a paragraph with the paragraph separation and indention commands. The code is given below:

This example contains a simple paragraph. The code is given below:

The output is given in the image below:

Latex FORMATS

You can notice the difference between the above two examples.

i. References

It is also called as cross-references used for sections, figures, equations, or tables. The commands used are given below:

  • \pageref{marker} it includes the page number related to the \label command.
  • \label{marker} is used to set the marker for future references.
  • \ref{marker} consists of the number of sections, figures, etc. related to the \label command.

3. Drawing rules

Latex FORMATS

If you want to draw the horizontal or vertical line on the page of your document, you can use the \rule command. In Latex, it will be written as:

The lift is the optional parameter, which is the amount raised above the baseline. The width is the horizontal dimension, while height is the vertical dimension. For example, if you want to draw the line given below:


You can use the \rule{\textwidth}{2pt} command.

The code or program for the above example is mentioned below:

The output is shown in the image below:

Latex FORMATS

You can draw many lines according to the requirements.

For example, to draw the two lines, the code is given below:

The output for the above example, is shown in the image below:

Latex FORMATS
  • Footnotes
    The Latex numbers the footnotes automatically. The command \footnote is placed exactly where you want the footnote to be appeared. There should be no extra space between the \footnote command and the text before it. The command is written as \footnote{the note text is written here}.
    The text inside the curly brackets is displayed at the bottom. For example, consider the code below:

The output is shown in the image below:

Latex FORMATS

The footnotes will appear at the bottom. For the above example, the footnotes are shown in the image below:

Latex FORMATS
  • Centering
    If you have only one line to place in the center; then you can use the \centerline command. For example,
    \centerline{ the line mentioned here will be displayed in the center}.
    Let-s consider an example below:

The output is shown in the image below:

Latex FORMATS

If you have several lines to display, then you can write in the following way.

  • Quotations
    The quotes can be used in the environment with:

In the paragraphs, there is no blank line separation and intent between the quotes in a section.


Next TopicLatex Table





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA