Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 5

LaTeX Intro

Safdar Nawaz Khan Marwat


DCSE, UET Peshawar

Presentation 2

safdar@uetpeshawar.edu.pk
Table of Contents
 Very simple (Always compile thrice to minimize warnings)
 \newpage and \tableofcontents
\documentclass{article}

\title{Final Year Project} %preamble


\date{7 Oct. 2015} %preamble
\author{Safdar Marwat} %preamble

\begin{document}
\pagenumbering{gobble}
\maketitle
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}

\section{Introduction}
This is FYP report.

\subsection{Computer}
Electronic computational device.
\subsection{Networking}
Connecting devices, nodes, computers etc.

\end{document}
http://www.latex-tutorial.com/tutorials

safdar@uetpeshawar.edu.pk 2
Bibliography
 .bib file required (make new file and save as *.bib)
 E.g. biblio01.bib
 List all bibliographic references in this file
 An example of my own journal paper
 BibTeX entry Article followed by a Tag (Marwat_UL_WPC_14)
 Field types Author, Title etc. are entry specific
 See https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management

@Article{Marwat_UL_WPC_14,
Author = {S. N. K. Marwat and T. Weerawardane and Y. Zaki and C. Goerg and A. Timm-Giel},
Title = {{Analysis of Radio Resource Allocation in LTE Uplink}},
Journal = {Wireless Personal Communications},
Volume = {79},
Number = {3},
Pages = {2305-2322},
Year = {Springer, New York, USA, ISSN 0929-6212, Dec. 2014},
}

http://www.latex-tutorial.com/tutorials

safdar@uetpeshawar.edu.pk 3
Bibliography (cont.)
 \cite, \bibliography and \bibliographystyle
\documentclass{article}

\title{Final Year Project} %preamble


\date{7 Oct. 2015} %preamble
\author{Safdar Marwat} %preamble

\begin{document}
\pagenumbering{gobble}
\maketitle
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}

\section{Introduction}
This is FYP report. Please see \cite{Marwat_UL_WPC_14}.
\subsection{Computer}
Electronic computational device.
\subsection{Networking}
Connecting devices, nodes, computers etc.

\bibliography{biblio01}
\bibliographystyle{ieeetr}

\end{document}

http://www.latex-tutorial.com/tutorials

safdar@uetpeshawar.edu.pk 4
More Topics
 Figures
 Cross referencing
 Tables
 Footnotes
 Equations

safdar@uetpeshawar.edu.pk 5

You might also like