This document provides instructions for formatting different elements in a LaTeX document, including:
1. Specifying document classes and sections;
2. Adding titles, authors, and dates;
3. Changing font styles, sizes, and indentation;
4. Inserting figures, tables, equations, and other special elements.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
99 views2 pages
La Tex
This document provides instructions for formatting different elements in a LaTeX document, including:
1. Specifying document classes and sections;
2. Adding titles, authors, and dates;
3. Changing font styles, sizes, and indentation;
4. Inserting figures, tables, equations, and other special elements.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
1.
Type of document like report, article - \documentclass{article}
\documentclass[a4paper,11pt]{article} 2. Next \begin {x} ___________________ \end{x} in between should be below text. 3. Order of starting a report - title, author, date, section 4. Title - To get the title and author, \maketitle should be present before the \section, 5. To make section - first type \section{Introduction} 6. Font - \emph{text} %to point any particular word or paragraph \textit{text} % Italic text \textbf{text} % Bold text \textsl{text} % Slanted text \textsc{text} % Small capital letters \textit{\textbf{text}} % Bolded Italic text \emph{text \emph{text1} text2} % will make all text emphasized except text1 Style - \textrm{text} % Roman font \textsf{text} % Sans- Serif font \texttt{text} % type-writer font \textnormal{text} % Default font
7. Symbols - \symbol is the syntax to get symbols
Eg. \$ , \%, \_, \& etc 8. Size of font - \tiny , \small , \large , \Large , \LARGE , \huge , \Huge Increasing order 9. Indent - \noindent % To remove space before paragraph starting 10. Footnote - \footnotesize \tiny % To adjust the Page number size 11. Script size - \scriptsize \tiny % To adjust the size of sub/super scripts 12. Paragraph space - \smallskip , \medskip , \bigskip 13. Greek Letter - To get greek letters ike ψ,φ,Δ $\name of letter$ should be used. Eg. $\Delta$, $\Psi$ etc 14. Tabs in tables - \= text \= : \= text \\ \> text \>:\> text\\ and so on…. 15. Figure - To get the figure, first save the figure to latex folder in Documents. \begin{figure} [!h/!ht/!hb] ……………..\end{figure} In between, \centering % To align to center \includegraphics[width=x\linewidth]{name of figure.format} \caption{text} \label{name of label} 16. SubScript - $\ text $ Eg. m c −$ ¿{ c } $ 17. SuperScript - text^(number) Eg. x 2 – x^2 VSα VSβ