Introduction to latex by Rouhollah Nabati

Post on 11-Apr-2017

119 views 2 download

transcript

Introduction to Latex

CE Dep, IAUSDJ.ac.ir25-9-95(14 Dec, 2016)

high typographical quality of the documents 

LaTex is de facto standard and is installed at many universities

Can be run on most operating systems Equations, citations, figures, tables, etc.,

can be labeled so that cross referencing is automated

LaTex is free! LaTex is not WYSIWYG(What You See Is What You Get)

First consider what type of paper you are writing so that you know whose packages to install. Physics uses The Physical Review Packages Math uses The AMS packages, which is also useful

for writing just a general document or a Logic report. Chemistry even uses some specialized packages,

but much of its writing can be achieved through AMS. If you are interested in exploring chemistry packages further follow the link to get started. Click Here.

Most can just be searched on Google, or found using the MikTex package manager.

Keep all of the associated files in a single directory.

Latex was probably originally made for linux, so it is a little picky about path names.

Path names should have not special symbols or spaces. In fact the folder that you place the files in should be kept in the root directory on a windows machine.

Also if you use any specialized style files they should also be kept with the projects files. These are .sty files.

TeX is essentially a Markup Language (like HTML, XML and RTF)

LaTex is an extension of TeX Macro packages to make TeX easier to

use

Presentaion is based onTroy D. Milner and Simon Cuce slides

Late 1970s -> 1989: TeX by Don Knuth Decent typesetting by the authors! Same output now as in the future Low level, but powerful Frozen development

Starting early 1980s: LaTeX by Leslie Lamport High level language (macros, really) for TeX Easy to use! Current version is Latex2e

Some say LAY-teck Some say LAH-teck Some say LAY-tech (as in “Bach”) Some say LAY-tex

… According to Wikipedia: Knuth says

/tex/ (as in Bach) Lamport says “whatever…”

High typeset qualityEasy to include math formulasSource file format is not bounded to

a particular OS or platformLatex implementations exists for all

platforms (DOS, Windows, Unices,..)

De facto standard for scientific publishing

Very few bugsGood for large documentsCan run even on 386 PCNot very easy to learn!

\documentclass{article} \title{Simple Example} \author{Rouhollah Nabati} \date{December 2016} \begin{document} \maketitleHello world, Salam! \end{document}

Your Latex File Your Bibtex File

Latex compile x3

Bibtex compile x2

Latex compile x3

Your Postscript File

dvips compile x1Device independentoutput .dvi

(a text file)

Document Class ▪ There are 4 main predefined classes: article,

letter, report, book, and slides.Packages used

▪ Added Functionality (graphics, reference style,...).

Main Body▪ Text and Bibliography References.

Document Class▪ \documentclass[options]{class}▪ options = a4paper, 11pt, 12pt, 10pt,

twocolumn, landscape,...▪ class = article, report, book,...

Packages▪ \usepackage{package name}▪ epsfig = insert PS pictures into the document▪ fancyhdr = easy definition of footer and

header

Start with \begin{document}End with \end{document}Typesetting Text

\\ or \newline and \newpage % comments Bold \textbf{……………} or \bf Italics \emph{…………} or \textit{………}

or \it Underline \underline{…………} or \ul

Including Multiple Files \input{filename.tex}

The Physical Review package ads something new to the title. It ads the Abstract section.

\begin{abstract}Abstract text

\end{abstract}After this section you can put the

make title command.

Sections \section{…} = 1. Latex is Great \subsection{…} = 1.1 Why Latex is Great \subsubsection{…} = 1.1.1 Reason One \appendix - changes numbering scheme \chapter{…} - To be used with book and

report document classes Titles, Authors and others

\title{…} \author{…} \footnote{…}

\maketitle - Display Title and Author \tableofcontents - generates TOC \listoftables - generates LOT \listoffigures - generates LOF Labels

\label{marker} - Marker in document. \pageref{marker} - Displays page no. of

marker. \ref{marker} - Displays section location of

marker. Itemize

Use either enumerate, itemize or description. see handout for example.

Source \begin{itemize} \item Apple \item Orange \end{itemize}

Result Apple Orange

Enumerate instead of itemize gives a numbered list

Lists can be recursive

Something between \begin{name} \end{name}

Many command, for example \bf affect the text until the end of environment

Environments can be recursiveExamples:

itemize, center, abstract

Group is some text between { and }Many commands work until the end

of the groupCode

put {one word \bf in bold} hereResult

put one word in bold here

Environments center, flushleft, flushright

Example \begin{flushright} Right aligned \end{flushright}

ResultRight ali gned

\tiny \scriptsize \footnotesize \small \normalsize \large \Large \LARGE

\huge \Huge

\documentclass{article} \title{Simple Example} \author{Rouhollah Nabati} \date{December 2016} \begin{document} \maketitle

Hello world! \end{document}

Columns \begin{tabular}{|…|…|} \end{tabular}

Rows & - Split text into columns \\ - End a row \hline - Draw line under row e.g. 123123 & 34.00\\ \hline

Two Columnsl = automatically adjust size, left justifyr = automatically adjust size, right justifyp = set size e.g p{4.7cm}c = centre text

\begin{tabular}{|l|r|c|} \hlineDate & Price & Size \\ \hlineYesterday & 5 & big \\ \hlineToday & 3 & small \\ \hline \end{tabular}

Date Price Size Yesterday 5 Big Today 3 Small

Floating objects can stop splitting of tables and images over pages. \begin{figure}[options] \end{figure} \begin{table}[options] \end{table}

They will now appear in the List of Figures (LOF) and List of Tables (LOT).

Options (recommendations)h = place table heret = place at top of pageb = place at bottom of page

\begin{figure}[ht] \centering\epsfig{file=uni.ps,

width=5cm} \caption{Azad University of

Sanandaj} \label{uni} \end{figure}

Figure~\ref{uni} shows...

Use epsfig package \usepackage{epsfig} Including images in main body \epsfig{file=filename.eps,

width=10cm, height=9cm, angle=90}

Creating EPS - Use xv and/or xfig.MS Power Point, save as GIF and

convert to EPS.

\usepackage{graphicx} \begin{figure}[h] \centering \captionsetup{justification=centering} \includegraphics[width=85mm]{img-1} \caption{Illustration of the iteration

process of building a full tree. The firts 5 iteration of DURT.}

\label{fig-DURT} \end{figure}

Put simple equation between two $

$t=0$$E=mc^2$$n^{n-1}$

You need an equation by itself. That is also numbered. You do this with

\begin{equation} \frac{1}{N} \sum_{i=1}^{n} \frac{2N_i}{k_i*(k_i-1)}

\end{equation} If you wish to leave it unnumbered simply

put an asterisk at the end of the word equation. \begin{equation*} equation \end{equation}

\usepackage{algorithm} \begin{algorithm} \caption{EDSS Algorithm} \begin{algorithmic}[1] \Procedure{EDSS}{$T$}\Comment{$T$ is

the number of iterations} \While{$t\not=T$}

\State $t\gets T$ \State\textbf{Step 0:} Node "0" generated.

\EndWhile\label{euclidendwhile} \EndProcedure \end{algorithmic} \end{algorithm}

\usepackage{algorithm} \begin{algorithm} \caption{EDSS Algorithm} \begin{algorithmic}[1] \Procedure{EDSS}{$T$}\Comment{$T$ is

the number of iterations} \While{$t\not=T$}

\State $t\gets T$ \State\textbf{Step 0:} Node "0" generated.

\EndWhile\label{euclidendwhile} \EndProcedure \end{algorithmic} \end{algorithm}

\begin{figure}[h] \begin{tikzpicture} \begin{axis}[ %title={Clustering coefficient distribution in proposed

model for N=15 and T=4}, xlabel={Clustering coefficient}, ylabel={Count}, xmin=0, xmax=1.2, ytick={1,2,3,4,5}, …. ] \addplot[ \label{plot:CC-distribution} \end{figure}

\Ref {Label} -> Reference to Figure, Section, Equation and etc. \Ref{sec:introduction}

\Cite{Label} -> Cite an article listed in Bibliographgy \cite{newman-2000}

\begin{thebibliography}{} \bibitem[Come95]{Come95} Comer,D. E., {\it Internetworking with

TCP/IP:Principles, Protocols and

Architecture},volume 1, 3rd edition. Prentice-Hall,1995. \end{thebibliography}

Bibliography information is stored in a *.bib file, in Bibtex format.

Include chicago package \usepackage{chicago}

Set referencing style \bibliographystyle{chicago}

Create reference section by \bibliography{bibfile with no extension}

@book{Come95,author=“D. E. Comer”, title={Internetworking with TCP/IP:

Principles, Protocols and Architecture},

publisher=“Prentice-Hall”,year=1995,volume=1,edition=“Third”}

Citing references in text \cite{cuc98} = (Cuce 1998) \citeN{cru98} = Crud (1998) \shortcite{tom98} = (Tom, et. al. 1998)

Creating Bibtex Files Use Emacs with extensions. or copy Bibtex entries from bibliography

database.

\begin{center} {\large $$ y=\

frac{a^3+2c_{x}}{1+\sqrt{b_{x}}} $$ \\

\vspace{0.2in} $$ Q=\sum_{i=1}^{j}\

int_{\mu}^{\infty}f(x_{j})dx $$ \\

\vspace{0.2in} $$ \Psi = \oint_{- \

infty}^{\infty}f_{xy}({\frac{\partial

Qx}{\partial Qy}})^{\Im_{\pi}^ \prime} $$ \\ }

UNIX based systems xdvi, ghostview, fixps, emacs with

latex/bibtex support.Windows 98/NT

Ghostview, Acrobat Distiller, Acrobat Reader, Scientific Workplace (not the best), the Bibtex viewer is good. Paint Shop Pro, Latex and Emacs

Download XeTeX from https://sourceforge.net/projects/xetex/

Or farsixetex 

Beamer Beamer is a LaTeX document class for

creating slides for presentations. Beamer provides the ability to make

"handouts“

Powerdot Powerdot is a LaTeX class for making

professional-looking presentation slides.

Latex is optimal for master and phd thesis?

Mathematical formulae are easy. Use bibtex search engines Consider converting Postscript files

to PDF (more widespread in Windows world) and to conserve space.

http://www.miktex.org/http://www.toolscenter.org/http://www.ocf.berkeley.edu/~jjlin/lat

ex/http://en.wikibooks.org/wiki/LaTeXLatex math symbols

http://web.ift.uib.no/Fysisk/Teori/KURS/WRK/TeX/symALL.html

LaTex project page http://www.latex-project.org/

Google is your friend…

amsmathIt contains the advanced math extensions for LaTeX. The complete

documentation should be in your LaTeX distribution; the file is called amsdoc, and can be dvi or pdf. For more information, see the chapter about Mathetics.

amssymb It adds new symbols in to be used in math mode.amsthm It introduces the proof environment and the \theoremstyle command. For

more information see the Theoremssection.

arrayIt extends the possibility of LaTeX to handle tables, fixing some bugs and

adding new features. Using it, you can create very complicated and customized tables. For more information, see the Tables section.

babelIt provides the internationalization of LaTeX. It has to be loaded in any

document, and you have to give as an option the main language you are going to use in the document. For more information see the Internationalization section.

biblatex Advanced bibliography handling. It is the package to use for writing a thesis.bm Allows use of bold greek letters in math mode using the \bm{...} command.

This supersedes the amsbsy package.

booktabsprovides ex tra com mands as well as be hind-the-scenes op ti mi sa tion for

producing tables. Guide lines are given as to what con sti tutes a good ta ble in the package documentation.

caption Allows customization of appearance and placement of captions for figures, tables, etc.

cancel Provides commands for striking out mathematical expressions. The syntax is \cancel{x} or \cancelto{0}{x}

chemmacros Part of a bundle to typeset chemistry easily and consistent.

changepage To easily change the margins of pages. The syntax is

enumitem Adds support for arbitrarily-deep nested lists (useful for outlines). See List Structures.

esint Adds additional integral symbols, for integrals over squares, clockwise integrals over sets, etc.

eucal Other mathematical symbols.fancyhdr To change header and footer of any page of the document. It is described in

the Page Layout section.

He who learns, teaches.

Thank you foryour attention.