Introduction to L A TEX Part II

Size: px
Start display at page:

Download "Introduction to L A TEX Part II"

Transcription

1 Introduction to L A TEX Part II for MST Students Sascha Frank IFI Sascha Frank (IFI) Introduction to LATEX Part II / 33

2 1 Outline 2 Text footnote Reference Counting 3 Structure document lists BiB -TEX 4 math text, distance & brackets enviroments Sascha Frank (IFI) Introduction to LATEX Part II / 33

3 Outline Basic Scientific Writing Usepackages, Presentation etc. Sascha Frank (IFI) Introduction to LATEX Part II / 33

4 footnotes Input Some seensless\footnote{in our view} Text. Sascha Frank (IFI) Introduction to LATEX Part II / 33

5 footnotes Input Some seensless\footnote{in our view} Text. Output Some seensless a Text. a In our view Sascha Frank (IFI) Introduction to LATEX Part II / 33

6 footnotes Input Some seensless\footnote{in our view} Text. Output Some seensless a Text. a In our view Tables The default tabular enviroment don t support footnotes! Sascha Frank (IFI) Introduction to LATEX Part II / 33

7 references within text Input Mark a text by a keyword \label{keyword}. Reference with \ref{keyword}. Sascha Frank (IFI) Introduction to LATEX Part II / 33

8 references within text Input Mark a text by a keyword \label{keyword}. Reference with \ref{keyword}. Output Mark a text by a keyword. Reference with 1. Here slide number. Sascha Frank (IFI) Introduction to LATEX Part II / 33

9 references within text Input Mark a text by a keyword \label{keyword}. Reference with \ref{keyword}. Output Mark a text by a keyword. Reference with 1. Here slide number. page reference Or the pagenumber with \pageref{keyword}. Or the pagenumber with 7. Sascha Frank (IFI) Introduction to LATEX Part II / 33

10 references within text Input Mark a text by a keyword \label{keyword}. Reference with \ref{keyword}. Output Mark a text by a keyword. Reference with 1. Here slide number. page reference Or the pagenumber with \pageref{keyword}. Or the pagenumber with 7. twice run L A TEX 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

11 counters What is counted? lists Sascha Frank (IFI) Introduction to LATEX Part II / 33

12 counters What is counted? lists chapter, section, figure, table... Sascha Frank (IFI) Introduction to LATEX Part II / 33

13 counters What is counted? lists chapter, section, figure, table... page Sascha Frank (IFI) Introduction to LATEX Part II / 33

14 counters What is counted? lists chapter, section, figure, table... page equation Sascha Frank (IFI) Introduction to LATEX Part II / 33

15 counters What is counted? lists chapter, section, figure, table... page equation footnote Sascha Frank (IFI) Introduction to LATEX Part II / 33

16 counters What is counted? lists chapter, section, figure, table... page equation footnote enumerations Sascha Frank (IFI) Introduction to LATEX Part II / 33

17 commands about counting \newcounter{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

18 commands about counting \newcounter{name} \setcounter{name}{new value} Sascha Frank (IFI) Introduction to LATEX Part II / 33

19 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers Sascha Frank (IFI) Introduction to LATEX Part II / 33

20 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

21 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

22 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

23 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} \Alph{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

24 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} \Alph{name} \fnsymbol{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

25 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} \Alph{name} \fnsymbol{name} \addtocounter{name}{value} Sascha Frank (IFI) Introduction to LATEX Part II / 33

26 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} \Alph{name} \fnsymbol{name} \addtocounter{name}{value} \stepcounter{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

27 commands about counting \newcounter{name} \setcounter{name}{new value} forms of numbers \roman{name} \arabic{name} \alph{name} \Alph{name} \fnsymbol{name} \addtocounter{name}{value} \stepcounter{name} \value{name} Sascha Frank (IFI) Introduction to LATEX Part II / 33

28 abstract and appendix abstract \begin{abstract} An abstract. \end{abstract} Sascha Frank (IFI) Introduction to LATEX Part II / 33

29 abstract and appendix abstract \begin{abstract} An abstract. \end{abstract} appendix \appendix \section{figures} \section{tables} Sascha Frank (IFI) Introduction to LATEX Part II / 33

30 abstract and appendix abstract \begin{abstract} An abstract. \end{abstract} appendix \appendix \section{figures} \section{tables} appendix Appendix use capital letters for counting. Sascha Frank (IFI) Introduction to LATEX Part II / 33

31 structure no plain text Sascha Frank (IFI) Introduction to LATEX Part II / 33

32 structure no plain text use \input{name} to include single TEX files Sascha Frank (IFI) Introduction to LATEX Part II / 33

33 structure no plain text use \input{name} to include single TEX files example Sascha Frank (IFI) Introduction to LATEX Part II / 33

34 structure no plain text use \input{name} to include single TEX files example \begin{document} \input{chapter1} \input{chapter2} \end{document} Sascha Frank (IFI) Introduction to LATEX Part II / 33

35 structure no plain text use \input{name} to include single TEX files example \begin{document} \input{chapter1} \input{chapter2} \end{document} alternative \include{file} but better use input Sascha Frank (IFI) Introduction to LATEX Part II / 33

36 lists of... table of contens \tableofcontents Sascha Frank (IFI) Introduction to LATEX Part II / 33

37 lists of... table of contens \tableofcontents list of figures \listoffigures Sascha Frank (IFI) Introduction to LATEX Part II / 33

38 lists of... table of contens \tableofcontents list of figures \listoffigures list of tables \listoftables Sascha Frank (IFI) Introduction to LATEX Part II / 33

39 lists of... table of contens \tableofcontents list of figures \listoffigures list of tables \listoftables list of references Sascha Frank (IFI) Introduction to LATEX Part II / 33

40 structure headings \part{bla} \chapter{bla} \section{bla} \subsection{bla} and \subsubsection{bla} \paragraph{bla} and \subparagraph{bla} Sascha Frank (IFI) Introduction to LATEX Part II / 33

41 structure headings \part{bla} \chapter{bla} \section{bla} \subsection{bla} and \subsubsection{bla} \paragraph{bla} and \subparagraph{bla} table of contents \tableofcontents headings were automatically included Sascha Frank (IFI) Introduction to LATEX Part II / 33

42 structure headings \part{bla} \chapter{bla} \section{bla} \subsection{bla} and \subsubsection{bla} \paragraph{bla} and \subparagraph{bla} table of contents \tableofcontents headings were automatically included implementation \headingcommand{heading} \headingcommand[short form]{heading} \headingcommand*{heading} Sascha Frank (IFI) Introduction to LATEX Part II / 33

43 figure package graphicx Sascha Frank (IFI) Introduction to LATEX Part II / 33

44 figure package graphicx format eps, pdf, jpg Sascha Frank (IFI) Introduction to LATEX Part II / 33

45 figure package graphicx format eps, pdf, jpg command \includegraphics(options: draft, scale, angle) Sascha Frank (IFI) Introduction to LATEX Part II / 33

46 figure package graphicx format eps, pdf, jpg command \includegraphics(options: draft, scale, angle) example \includegraphics[scale=0.5, angle=90]{logo} Sascha Frank (IFI) Introduction to LATEX Part II / 33

47 lists of figures \begin{figure} \includegraphics[scale=0.1]{logo-sf} \caption{what ever} \end{figure} Sascha Frank (IFI) Introduction to LATEX Part II / 33

48 lists of figures \begin{figure} \includegraphics[scale=0.1]{logo-sf} \caption{what ever} \end{figure} file type pdflatex jpg, pdf, png... Sascha Frank (IFI) Introduction to LATEX Part II / 33

49 lists of tables \begin{table} \begin{tabular}{ c c c } \hline A & B & C\\ 1 & 2 & 3\\ \hline \end{tabular} \caption{simple example} \end{table} Sascha Frank (IFI) Introduction to LATEX Part II / 33

50 lists of tables \begin{table} \begin{tabular}{ c c c } \hline A & B & C\\ 1 & 2 & 3\\ \hline \end{tabular} \caption{simple example} \end{table} A B C Table: simple example Sascha Frank (IFI) Introduction to LATEX Part II / 33

51 BiB - TEX overview name literatur.bib Sascha Frank (IFI) Introduction to LATEX Part II / 33

52 BiB - TEX overview name literatur.bib quote with \cite{kurz2} Sascha Frank (IFI) Introduction to LATEX Part II / 33

53 BiB - TEX overview name literatur.bib quote with \cite{kurz2} sources Sascha Frank (IFI) Introduction to LATEX Part II / 33

54 BiB - TEX overview name literatur.bib quote with \cite{kurz2} sources include Sascha Frank (IFI) Introduction to LATEX Part II / 33

55 example author={frank, Sascha and Rehm, Jan}, title={an unnoted fair bet in german state run lotteries, a short notice}, year=2007, month=nov, institution={university Library of Munich, Germany}, type={mpra Paper}, url={ number={5765}, abstract={}, keywords={} } Sascha Frank (IFI) Introduction to LATEX Part II / 33

56 place and style place \bibliography{literatur} style \bibliographystyle{unsrtdin} Sascha Frank (IFI) Introduction to LATEX Part II / 33

57 must and can Different source have different can and must fields must and can fields: Book (author,editor,title, publisher, year, series, edition,... ) Article (author, title, journal,year, key, volume,... ) PhdThesis (author, title, school, year, address, month, note,... ) TechReport(author, title, journal, year, key, type,... ) Sascha Frank (IFI) Introduction to LATEX Part II / 33

58 must and can Different source have different can and must fields must and can fields: Book (author,editor,title, publisher, year, series, edition,... ) Article (author, title, journal,year, key, volume,... ) PhdThesis (author, title, school, year, address, month, note,... ) TechReport(author, title, journal, year, key, type,... ) problems for example ä etc. or & will cause some problems Sascha Frank (IFI) Introduction to LATEX Part II / 33

59 how to run 1 pdflatex seminar.tex Sascha Frank (IFI) Introduction to LATEX Part II / 33

60 how to run 1 pdflatex seminar.tex 2 pdflatex seminar.tex Sascha Frank (IFI) Introduction to LATEX Part II / 33

61 how to run 1 pdflatex seminar.tex 2 pdflatex seminar.tex 3 bibtex seminar Sascha Frank (IFI) Introduction to LATEX Part II / 33

62 how to run 1 pdflatex seminar.tex 2 pdflatex seminar.tex 3 bibtex seminar 4 pdflatex seminar.tex Sascha Frank (IFI) Introduction to LATEX Part II / 33

63 how to run 1 pdflatex seminar.tex 2 pdflatex seminar.tex 3 bibtex seminar 4 pdflatex seminar.tex 5 pdflatex seminar.tex Sascha Frank (IFI) Introduction to LATEX Part II / 33

64 how to run 1 pdflatex seminar.tex 2 pdflatex seminar.tex 3 bibtex seminar 4 pdflatex seminar.tex 5 pdflatex seminar.tex 6 acroread seminar.pdf Sascha Frank (IFI) Introduction to LATEX Part II / 33

65 text example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Sascha Frank (IFI) Introduction to LATEX Part II / 33

66 text example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

67 text example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better Sascha Frank (IFI) Introduction to LATEX Part II / 33

68 text example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better example If $a,b \in R, \textrm{then}\, (a+b)^{2} = a^{2} + 2ab + b^{2}$\\ Sascha Frank (IFI) Introduction to LATEX Part II / 33

69 text example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better example If $a,b \in R, \textrm{then}\, (a+b)^{2} = a^{2} + 2ab + b^{2}$\\ Output If a, b R, then (a + b) 2 = a 2 + 2ab + b 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

70 text amsmath example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Sascha Frank (IFI) Introduction to LATEX Part II / 33

71 text amsmath example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

72 text amsmath example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better Sascha Frank (IFI) Introduction to LATEX Part II / 33

73 text amsmath example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better example If $a,b \in R, \text{then}\, (a+b)^{2} = a^{2} + 2ab + b^{2}$\\ Sascha Frank (IFI) Introduction to LATEX Part II / 33

74 text amsmath example If $a,b \in R, then (a+b)^{2} = a^{2} + 2ab + b^{2} $\\ Output If a, b R, then(a + b) 2 = a 2 + 2ab + b 2 better example If $a,b \in R, \text{then}\, (a+b)^{2} = a^{2} + 2ab + b^{2}$\\ Output If a, b R, then (a + b) 2 = a 2 + 2ab + b 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

75 distance & brackets distance $x y$ xy $x\,y$ x y $x\quad y$ x y Sascha Frank (IFI) Introduction to LATEX Part II / 33

76 distance & brackets distance $x y$ xy $x\,y$ x y $x\quad y$ x y brackets instead (x + \sum_{i=0}^{n} y^{i^{2}}) (x + n i=0 y i 2 ) better ( \left(x + \sum_{i=0}^{n} y^{i^{2}} \right) x + n i=0 y i 2) Sascha Frank (IFI) Introduction to LATEX Part II / 33

77 normal stuff Sascha Frank (IFI) Introduction to LATEX Part II / 33

78 normal stuff exponents and indices $e^{i \phi}$ e iφ Sascha Frank (IFI) Introduction to LATEX Part II / 33

79 normal stuff exponents and indices $e^{i \phi}$ $a_{i}$ a i e iφ Sascha Frank (IFI) Introduction to LATEX Part II / 33

80 normal stuff exponents and indices $e^{i \phi}$ $a_{i}$ a i e iφ root $\sqrt{2}$ 2 Sascha Frank (IFI) Introduction to LATEX Part II / 33

81 normal stuff exponents and indices $e^{i \phi}$ $a_{i}$ a i e iφ root $\sqrt{2}$ $\sqrt[3]{2}$ Sascha Frank (IFI) Introduction to LATEX Part II / 33

82 normal stuff exponents and indices $e^{i \phi}$ $a_{i}$ a i e iφ root $\sqrt{2}$ $\sqrt[3]{2}$ frac $\frac{1}{a}$ 1 a Sascha Frank (IFI) Introduction to LATEX Part II / 33

83 normal stuff exponents and indices $e^{i \phi}$ $a_{i}$ a i e iφ root $\sqrt{2}$ $\sqrt[3]{2}$ frac $\frac{1}{a}$ 1 a $\frac{1}{\frac{a}{b}}$ 1 a b Sascha Frank (IFI) Introduction to LATEX Part II / 33

84 normal stuff 2 SPI Sascha Frank (IFI) Introduction to LATEX Part II / 33

85 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ n i=1 a i Sascha Frank (IFI) Introduction to LATEX Part II / 33

86 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ n i=1 a i n i=1 a i Sascha Frank (IFI) Introduction to LATEX Part II / 33

87 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ $\int x \ dx $ n i=1 a i n i=1 a i x dx Sascha Frank (IFI) Introduction to LATEX Part II / 33

88 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ $\int x \ dx $ n i=1 a i n i=1 a i x dx SPI Sascha Frank (IFI) Introduction to LATEX Part II / 33

89 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ $\int x \ dx $ n i=1 a i n i=1 a i x dx SPI $\sum\limits_{i=1}^{n} a_{i}$ n a i i=1 Sascha Frank (IFI) Introduction to LATEX Part II / 33

90 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ $\int x \ dx $ n i=1 a i n i=1 a i x dx SPI $\sum\limits_{i=1}^{n} a_{i}$ $\prod\limits_{i=1}^{n} a_{i}$ n a i i=1 n a i i=1 Sascha Frank (IFI) Introduction to LATEX Part II / 33

91 normal stuff 2 SPI $\sum_{i=1}^{n} a_{i}$ $\prod_{i=1}^{n} a_{i}$ $\int x \ dx $ n i=1 a i n i=1 a i x dx SPI $\sum\limits_{i=1}^{n} a_{i}$ $\prod\limits_{i=1}^{n} a_{i}$ $\int\limits_{-\infty }^{\infty} x \ dx$ n a i i=1 n a i i=1 x dx Sascha Frank (IFI) Introduction to LATEX Part II / 33

92 remarks & braces remarks \dots... Sascha Frank (IFI) Introduction to LATEX Part II / 33

93 remarks & braces remarks \dots... \vdots. Sascha Frank (IFI) Introduction to LATEX Part II / 33

94 remarks & braces remarks \dots... \vdots.. \ddots.. Sascha Frank (IFI) Introduction to LATEX Part II / 33

95 remarks & braces remarks \dots... \vdots.. \ddots.. under... $\underbrace{a+\dots+a}_{\textrm{n-times}} = na $ Sascha Frank (IFI) Introduction to LATEX Part II / 33

96 remarks & braces remarks \dots... \vdots.. \ddots.. under... $\underbrace{a+\dots+a}_{\textrm{n-times}} = na $ } a + {{ + a } = na n-times Sascha Frank (IFI) Introduction to LATEX Part II / 33

97 remarks & braces remarks \dots... \vdots.. \ddots.. under... $\underbrace{a+\dots+a}_{\textrm{n-times}} = na $ } a + {{ + a } = na n-times over... $\overbrace{a+\dots+a}^{\textrm{n-times}} = na $ Sascha Frank (IFI) Introduction to LATEX Part II / 33

98 remarks & braces remarks \dots... \vdots.. \ddots.. under... $\underbrace{a+\dots+a}_{\textrm{n-times}} = na $ } a + {{ + a } = na n-times over... $\overbrace{a+\dots+a}^{\textrm{n-times}} = na $ n-times {}}{ a + + a = na Sascha Frank (IFI) Introduction to LATEX Part II / 33

99 in line $ Input $ x-y \leq 0 \, \forall \, x \leq y $ $ \sum_{i=0}^{n} a_{i}$ Sascha Frank (IFI) Introduction to LATEX Part II / 33

100 in line $ Input $ x-y \leq 0 \, \forall \, x \leq y $ $ \sum_{i=0}^{n} a_{i}$ $ Output x y 0 x y n i=0 a i Sascha Frank (IFI) Introduction to LATEX Part II / 33

101 displaymath Input \begin{displaymath} x-y \leq 0 \, \forall \, x \leq y \sum_{i=0}^{n} a_{i} \end{displaymath} Sascha Frank (IFI) Introduction to LATEX Part II / 33

102 displaymath Input \begin{displaymath} x-y \leq 0 \, \forall \, x \leq y \sum_{i=0}^{n} a_{i} \end{displaymath} Output x y 0 x y n i=0 a i Sascha Frank (IFI) Introduction to LATEX Part II / 33

103 displaymath Input \begin{displaymath} x-y \leq 0 \, \forall \, x \leq y \sum_{i=0}^{n} a_{i} \end{displaymath} Output x y 0 x y n i=0 a i Input displaymath short \[ x-y \leq 0 \, \forall \, x \leq y \] Sascha Frank (IFI) Introduction to LATEX Part II / 33

104 displaymath Input \begin{displaymath} x-y \leq 0 \, \forall \, x \leq y \sum_{i=0}^{n} a_{i} \end{displaymath} Output x y 0 x y n i=0 a i Input displaymath short \[ x-y \leq 0 \, \forall \, x \leq y \] Output displaymath short x y 0 x y Sascha Frank (IFI) Introduction to LATEX Part II / 33

105 equation Input \begin{equation} x-y \leq 0 \, \forall \, x \leq y \end{equation} \begin{equation} \sum_{i=0}^{n} a_{i} \end{equation} Sascha Frank (IFI) Introduction to LATEX Part II / 33

106 equation Input \begin{equation} x-y \leq 0 \, \forall \, x \leq y \end{equation} \begin{equation} \sum_{i=0}^{n} a_{i} \end{equation} Output x y 0 x y (1) n a i (2) i=0 Sascha Frank (IFI) Introduction to LATEX Part II / 33

107 eqnarray Input eqnarray \begin{eqnarray} x-y & \leq & 0 \, \forall \, x \leq y \\ \sum_{i=0}^{n}a_{i}&\geq&0\, \forall \,a_{i}\geq0 \end{eqnarray} Sascha Frank (IFI) Introduction to LATEX Part II / 33

108 eqnarray Input eqnarray \begin{eqnarray} x-y & \leq & 0 \, \forall \, x \leq y \\ \sum_{i=0}^{n}a_{i}&\geq&0\, \forall \,a_{i}\geq0 \end{eqnarray} Output eqnarray x y 0 x y (1) n a i 0 a i 0 (2) i=0 Sascha Frank (IFI) Introduction to LATEX Part II / 33

109 eqnarray 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \\ \sin^{ } &=& \sin(x) \\ \end{eqnarray} Sascha Frank (IFI) Introduction to LATEX Part II / 33

110 eqnarray 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \\ \sin^{ } &=& \sin(x) \\ \end{eqnarray} sin = cos(x) (1) cos = sin(x) (2) sin = sin(x) (3) sin = cos(x) (4) sin = sin(x) (5) (6) Sascha Frank (IFI) Introduction to LATEX Part II / 33

111 eqnarray 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \\ \sin^{ } &=& \sin(x) \end{eqnarray} Sascha Frank (IFI) Introduction to LATEX Part II / 33

112 eqnarray 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \\ \sin^{ } &=& \sin(x) \end{eqnarray} sin = cos(x) (1) cos = sin(x) (2) sin = sin(x) (3) sin = cos(x) (4) sin = sin(x) (5) Sascha Frank (IFI) Introduction to LATEX Part II / 33

113 eqnarray 2 better 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \nonumber \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \end{eqnarray} Sascha Frank (IFI) Introduction to LATEX Part II / 33

114 eqnarray 2 better 2 \begin{eqnarray} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \nonumber \\ \sin^{ } &=& - \sin(x) \\ \sin^{ } &=& - \cos(x) \end{eqnarray} sin = cos(x) (1) cos = sin(x) sin = sin(x) (2) sin = cos(x) (3) Sascha Frank (IFI) Introduction to LATEX Part II / 33

115 without numbers example \begin{eqnarray*} \sin^{ } &=& \cos(x) \\ \cos^{ } &=& - \sin(x) \\ \end{eqnarray*} sin = cos(x) cos = sin(x) Sascha Frank (IFI) Introduction to LATEX Part II / 33

Introduction to L A TEX Part II

Introduction to L A TEX Part II Introduction to L A TEX Part II for MST Students Sascha Frank IFI 24.11.2011 Sascha Frank (IFI) Introduction to LATEX Part II 24.11.2011 1 / 33 1 Outline 2 Text footnote Reference Counting 3 Structure

More information

L A TEX Tutorial. 1 Introduction. 2 Running L A TEX. J. E. Rice. May 2010

L A TEX Tutorial. 1 Introduction. 2 Running L A TEX. J. E. Rice. May 2010 L A TEX Tutorial J. E. Rice May 2010 Abstract The purpose of this document is to provide a simple example of how to use L A TEX. Examples of tables, figures, citations, references and math are shown, and

More information

Introduction to LaTeX. Paul Fodor Stony Brook University

Introduction to LaTeX. Paul Fodor Stony Brook University Introduction to LaTeX Paul Fodor Stony Brook University http://www.cs.stonybrook.edu/~cse215 LaTeX TeX is essentially a Markup Language (like HTML, CSS, JSON, XML and RTF) TeX written by Donald Knuth in

More information

Become a L A TEX Guru

Become a L A TEX Guru Become a L A TEX Guru 1 Many thanks to Michele, who was my coteacher for this class for Splash 2009 1. Log in using the username sipb2 and the password hsspmonster 2. Once you are logged on, type sudo

More information

MATLAB for the Sciences

MATLAB for the Sciences A Preliminary Discussion in L A TEX, Part 2 January 6, 2008 Multiple Lines of Equations Just as there was an environment for writing equations, there is an environment for multi-line equations. \begin{eqnarray}

More information

L A TEXcourse. Carmen Alonso Montes. 30th May-2nd June, 2016

L A TEXcourse. Carmen Alonso Montes. 30th May-2nd June, 2016 L A TEXcourse Basque Center for Applied Mathematics -5pt 30th May-2nd June, 2016 Outline 1 2 3 4 5 6 7 8 In the previous lesson, we have a small introduction of the basics for LATEX Learnt basic document

More information

David Helmbold, October 2005, Revised October 2007

David Helmbold, October 2005, Revised October 2007 Short Intro to LATEX David Helmbold, October 2005, Revised October 2007 Goals: Introduce L A TEX... so you can read/edit L A TEX source... and use manual as reference rather than reading it Outline: 1.

More information

Using LaTex and BibTex to Write Academic Documents. Ligang He Department of Computer Science University of Warwick

Using LaTex and BibTex to Write Academic Documents. Ligang He Department of Computer Science University of Warwick Using LaTex and BibTex to Write Academic Documents Ligang He Department of Computer Science University of Warwick Introduction In LaTex, a markup language is used to describe document structure and format,

More information

An introduction. C.D. Emmery & M.M. van Zaanen. October 22, Tilburg University

An introduction. C.D. Emmery & M.M. van Zaanen. October 22, Tilburg University LATEX An introduction C.D. Emmery & M.M. van Zaanen Tilburg University October 22, 2013 What is L A TEX? System used to typeset documents. Typesetting: arranging all content in a document in order to achieve

More information

L A T E X Tutorial. Wanmin Liu August. Department of Mathematics The Hong Kong University of Science and Technology

L A T E X Tutorial. Wanmin Liu August. Department of Mathematics The Hong Kong University of Science and Technology L A T E X Tutorial Wanmin Liu Department of Mathematics The Hong Kong University of Science and Technology 2012 August Outline 1 Introduction 2 Basic example 3 Document structure 4 Fonts 5 Basic commands

More information

A Beginner s guide to L A TEX for CSCA67/MATA67. Kohilan Mohanarajan

A Beginner s guide to L A TEX for CSCA67/MATA67. Kohilan Mohanarajan A Beginner s guide to L A TEX for CSCA67/MATA67 Kohilan Mohanarajan August 31, 2017 Contents 1 Foreword 2 2 Getting Started 3 3 Setting up your L A TEXDocument 4 4 Writing your L A TEXDocument 6 4.1 Environments...............................

More information

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX.

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX. An Interactive Introduction to L A TEX Part 2: Structured Documents & More Dr John D. Lees-Miller writel A TEX February 27, 2013 Outline Structured Documents Title and Abstract Sections Labels and Cross-References

More information

L A T E X Workshop. Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology

L A T E X Workshop. Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology L A T E X Workshop Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology LAT E X Workshop, IEOR@IITB, March 18 & 23, 2010 p. 1 Outline of the Workshop Introduction

More information

Researcher Development Unit: Introduction to Latex

Researcher Development Unit: Introduction to Latex Researcher Development Unit: Introduction to Latex Dr Morgiane Richard and Ana Ciocarlan m.richard@abdn.ac.uk Centre for Academic Development Academic Year 2016-2017 M. Richard, A. Ciocarlan (U.of Aberdeen)

More information

Tools for Scientific Writing with LAT E X. Johan Carlson

Tools for Scientific Writing with LAT E X. Johan Carlson Tools for Scientific Writing with LAT E X Johan Carlson Luleå University of Technology Dept. of CSEE EISLAB Email: johanc@csee.ltu.se Tools for Scientific Writing Lecture no. 2 1 Last lecture What is L

More information

Intro to LATEX I. Aaron Erlich POLS/CSSS 510, Why LATEX? Programming Document Structure Floats Tables Lists Math

Intro to LATEX I. Aaron Erlich POLS/CSSS 510, Why LATEX? Programming Document Structure Floats Tables Lists Math Intro to LATEX I 1 1 POLS/CSSS 510, 2012 Intro to LATEX I 1 / 32 Outline 1 Why L A TEX? 2 Programming 3 Document Structure 4 Floats 5 Tables 6 Lists 7 Math Intro to LATEX I 2 / 32 The Complaint This sucks

More information

Appendix B: Latex survival guide

Appendix B: Latex survival guide Appendix B: Latex survival guide The philosophy in this course is that we would like to be good citizens of the scientific community. An important part of being a good citizen is being able to communicate

More information

Mikkel Madsen

Mikkel Madsen Mikkel Madsen latex@mikkl.dk After completing this course, you: Have an understanding of what LaTeX is Have an idea of what things can be easily accomplished in LaTeX Know where to look for help DON T

More information

Research Method and Report Writing Lecture 4: An Introduction to L A TEX

Research Method and Report Writing Lecture 4: An Introduction to L A TEX Research Method and Report Writing Lecture 4: An Introduction to L A TEX Farzaneh Abdollahi {Thanks to Hamed Rezaee} Department of Electrical Engineering Amirkabir University of Technology Fall 2012 Farzaneh

More information

Very Short Introduction to LaTeX

Very Short Introduction to LaTeX Very Short Introduction to LaTeX Johann Mitlöhner 2015 1 Motivation The computer scientist Donald Knuth developed the program TeX [1] in the late 70s to facilitate typesetting texts containing mathematical

More information

LaTeX: Scientific Document Writing

LaTeX: Scientific Document Writing 2 nd November, 2017 LaTeX: Scientific Document Writing Dr. Anurag Prakash Sunda DST INSPIRE Faculty Dept. of Chemistry, School of Chemical Sciences and Pharmacy Central University of Rajasthan www.apsunda.com

More information

Learn how to [learn] LATEX

Learn how to [learn] LATEX Learn how to [learn] L A TEX November 19, 2010 This document is available at http://web.mit.edu/jgross/ Public/2010cluedump/Slideshow.pdf. Outline Installing L A TEX What is L A TEX? Getting Help Basic

More information

Learning L A TEX. Patrick Lam

Learning L A TEX. Patrick Lam Learning L A TEX Patrick Lam setting up 1. download a TeX distribution (MiKTeX, MacTeX, etc.) 2. download an editor (Texmaker, WinEDT, XEmacs, etc.) 3. start a.tex file in editor 4. work only in the.tex

More information

Assessments for CS students:

Assessments for CS students: Assessments for CS students: Two hours per week lectures, Tuesdays 2-4pm. Three in-semester assignments, with feedback de-coupled from assessment: Assignment 1 Generic paper Assignment 2 Literature review

More information

LaTeX. Information Literacy II EN(IL2) Course

LaTeX. Information Literacy II EN(IL2) Course LaTeX Information Literacy II EN(IL2) Course Previous Lecture Introduction to Latex - Basic commands - Structure of the document - Mathematical expressions - Image Today Comments on assignment 2 More on

More information

An introduction to L A TEX for students

An introduction to L A TEX for students An introduction to L A TEX for students Christopher Hanusa February 17, 2011 Christopher.Hanusa@qc.cuny.edu http://people.qc.cuny.edu/chanusa/ > Talks Pros and Cons of L A TEX Why use L A TEX? Ideal for

More information

An Introduction to LATEX

An Introduction to LATEX An to L A TEX Iryna Schlackow Mathematical Institute This talk and other useful L A TEX-related information is available at http://www.maths.ox.ac.uk/help/faqs/latex/ May 21, 2009 An to LATEX The Name

More information

The Name of the Game. An Introduction to LATEX. Why L A TEX? The Name of the Game

The Name of the Game. An Introduction to LATEX. Why L A TEX? The Name of the Game The Name of the Game An to L A TEX Iryna Schlackow Mathematical Institute This talk and other useful L A TEX-related information is available at http://www.maths.ox.ac.uk/help/faqs/latex/ TEX is a computer

More information

Math 235: Introduction to LaTeX

Math 235: Introduction to LaTeX Math 235: Introduction to LaTeX The LaTeX word processing system was built to do mathematical typesetting. It is different than word processors; in LaTeX you type in text and typesetting commands, then

More information

Learn LaTeX in 30 Minutes. A. LOTFI School of Science and Technology Nottingham Trent University

Learn LaTeX in 30 Minutes. A. LOTFI School of Science and Technology Nottingham Trent University Learn LaTeX in 30 Minutes A. LOTFI School of Science and Technology Nottingham Trent University Use the right tool for the job Latex vs. MS Word If you need to write a short letter, a cover page, you are

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Yuval Carmel Ben-Gurion University June 30, 2009 Yuval Carmel (Ben-Gurion University) Introduction to LATEX June 30, 2009 1 / 40 Introduction L A TEX is not a word processor! Word,

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Mark Baltovic MA498 - Dissertation in Mathematics Objectives of this session What is L A TEX? The L A TEX source file Inside the body of the text Typesetting mathematics Internal

More information

L A TEXday, morning session Discovering L A TEX

L A TEXday, morning session Discovering L A TEX L A TEXday, morning session Discovering L A TEX Maxime Folschette Guillaume Perez Benjamin Miraglio I3S, team MDSC maxime.folschette@i3s.unice.fr, guillaume.perez@i3s.unice.fr, miraglio@i3s.unice.fr Association

More information

Latex Tutorial. CIS400 Senior Design 9/5/2013

Latex Tutorial. CIS400 Senior Design 9/5/2013 1 Latex Tutorial CIS400 Senior Design 9/5/2013 2 Outline Introducing TeX/LaTeX Benefits and potential difficulties Installation and use on Unix/Mac/Windows Compiling PDF documents from LaTeX Basic document

More information

Lecture 3-Introduction to Latex (II)

Lecture 3-Introduction to Latex (II) ECON 6009 Graduate Seminar Memorial University of Newfoundland Lecture 3-Introduction to Latex (II) Lecture 0 slide 1 INTRODUCTION How to type math How to make cross-references How to use grouping (for

More information

L A TEXInstallation and Introduction

L A TEXInstallation and Introduction L A TEXInstallation and Introduction Andrew McAllister Society of Physics Students September 21st, 2011 Andrew McAllister (SPS) LATEXIntro September 21st, 2011 1 / 22 What is L A TEX? L A TEXis a typesetting

More information

Helen Cameron. A Brief Overview of LATEX

Helen Cameron. A Brief Overview of LATEX A Brief Overview of L A TEX What Is L A TEX? L A TEX is a document preparation system designed by Leslie Lamport on top of Donald Knuth s TEX. Useful Books Leslie Lamport. L A TEX: A document preparation

More information

عمادة البحث العلمي جامعة الملك سعود

عمادة البحث العلمي جامعة الملك سعود عمادة البحث العلمي جامعة الملك سعود Introduction to Latex A very quick look at typesetting documents Dr. Amal Almohisen (based on slides by Andrei Gurtov ) Introduction Essentially a Markup Language (like

More information

Helen Cameron. A Brief Overview of LATEX

Helen Cameron. A Brief Overview of LATEX A Brief Overview of L A TEX What Is L A TEX? L A TEX is a document preparation system designed by Leslie Lamport on top of Donald Knuth s TEX. Useful Websites There s a useful wikibook about L A TEX at

More information

L A TEX. The Logo. Introduction to L A TEX. Overview. Primary Benefits. Kinds of Documents. Bill Slough and Andrew Mertz

L A TEX. The Logo. Introduction to L A TEX. Overview. Primary Benefits. Kinds of Documents. Bill Slough and Andrew Mertz The Logo Introduction to L A TEX Bill Slough and Andrew Mertz L A TEX Mathematics and Computer Science Department Eastern Illinois University January 20, 2010 Overview TEX and L A TEX What is L A TEX?

More information

Intro to LaTeX Workshop

Intro to LaTeX Workshop Intro to LaTeX Workshop Crystal Nguyen University of North Carolina at Chapel Hill 10/13/2017 Nguyen (UNC) LaTeX Workshop 10/13/2017 1 / 31 Overview 1 Getting Started in LaTeX 2 Typesetting Equations 3

More information

Introduction to LaTex 2ε. Based on The Not So Short Introduction to LaTeX 2ε by Tobias Oetiker et al., April 2001

Introduction to LaTex 2ε. Based on The Not So Short Introduction to LaTeX 2ε by Tobias Oetiker et al., April 2001 Introduction to LaTex 2ε Based on The Not So Short Introduction to LaTeX 2ε by Tobias Oetiker et al., April 2001 Contents Things you need to know Typesetting text Typesetting Mathematical Formulae Specialties

More information

Student Learning Service: Introduction to Latex

Student Learning Service: Introduction to Latex Student Learning Service: Introduction to Latex Dr Morgiane Richard, Oana Matei and Florin Nedelea m.richard@abdn.ac.uk Student Learning Service Updated June 2018 Richard, Matei, Nedelea (U.of Aberdeen)

More information

L A T E X FOSSEE. Department of Aerospace Engineering IIT Bombay. FOSSEE (IIT Bombay) LAT E X 1 / 58

L A T E X FOSSEE. Department of Aerospace Engineering IIT Bombay. FOSSEE (IIT Bombay) LAT E X 1 / 58 L A T E X FOSSEE Department of Aerospace Engineering IIT Bombay FOSSEE (IIT Bombay) LAT E X 1 / 58 Outline Introduction 1 Introduction 2 Adding Structure 3 Typesetting Text 4 Figures, Tables & Floats 5

More information

Mingxi Liu Energy & Resources Group University of California, Berkeley CONTENTS

Mingxi Liu Energy & Resources Group University of California, Berkeley CONTENTS L A TEX Starter Kit 1 Mingxi Liu Energy & Resources Group University of California, Berkeley CONTENTS I L A TEX basics 3 I-A How to pronounce L A TEX?........................... 3 I-B What the heck is

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX D. Broline, A. Mertz & W. Slough Mathematics and Computer Science Department Eastern Illinois University February 8, 2007 The Logo L A TEX Overview What is L A TEX? Typesetting

More information

Introduction to LATEX

Introduction to LATEX Introduction to LATEX Jennifer Flegg, September 5 2018 School of Mathematics and Statistics, University of Melbourne Why L A TEX? L A TEX is the mathematical/statistical standard L A TEX looks better than

More information

What is L A T E X? Dan Yasaki. June 4, 2018 REU at Elon University. UNC Greensboro. Dan Yasaki What is LAT E X? 1 / 22

What is L A T E X? Dan Yasaki. June 4, 2018 REU at Elon University. UNC Greensboro. Dan Yasaki What is LAT E X? 1 / 22 What is L A T E X? Dan Yasaki UNC Greensboro June 4, 2018 REU at Elon University Dan Yasaki What is LAT E X? 1 / 22 What is L A T E X? L A T E X is a document preparation system by Leslie Lamport built

More information

L A TEX incollaboration

L A TEX incollaboration L A TEX incollaboration Alexandre Bernardino ISR/IST March 9, 2015 Alexandre Bernardino (ISR/IST) JEEC 2015 Workshop March 9, 2015 1 / 28 Outline 1 Introduction 2 Some History 3 First Steps 4 L A TEX Basics

More information

Outline. A Sneak Peek

Outline. A Sneak Peek Outline L A TEX Primer Things you need to know as a starter Jialin He Department of Electrical Engineering Southern Methodist University 05/31/2011 1 Introduction How LATEX works? Document structure 2

More information

An Introduction to L A TEX

An Introduction to L A TEX An Introduction to L A TEX John Hamer John.Hamer@glasgow.ac.uk 24 January 2018 What, how, where? L A TEX is a fine typesetting system. You write your document (paper, report, essay, thesis, poster, book,

More information

INTRODUCTION TO L A TEX

INTRODUCTION TO L A TEX INTRODUCTION TO L A TEX What is L A TEX? Basic usage and syntax Modes and environments Newcommands Cross-referencing Packages Importing graphics Tables and figures Pictures Where to learn more WHAT IS

More information

Latex Programs for Record

Latex Programs for Record 1.Program to demonstrate two column article Latex Programs for Record \documentclass[10pt,a4paper,two column]{article} \author{haritha D} \title{article with multicolum} About L A TEX(pronounced either

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to LATEX Mathematics 23a, Fall 2012 By: Isabel Vogt, Will Rafey, and Neil Gat Last Updated: 13 September, 2012 1 Introduction The simplest way to learn TeX is by example. Copy the heading

More information

Introduction to L A TEX

Introduction to L A TEX NMT May 18, 2016 Written by Ian Jones Revised by Caleb Hightower Contents 1 What is L A TEX? 2 2 Your First L A TEX Document 2 2.1 Getting Started............................ 3 3 Document Structure 4 3.1

More information

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 1. Latex installation and text editors 1.1. Installation. Install Latex in your virtual machine with the following command. sudo apt get install texlive Note

More information

Getting Started with L A T E X for a Technical Document or Thesis

Getting Started with L A T E X for a Technical Document or Thesis Getting Started with L A T E X for a Technical Document or Thesis University of Waterloo Nov 2015 Outline What is LAT E X? 1 What is L A T E X? 2 3 4 5 What is L A T E X? What is LAT E X? L A T E X is

More information

An introduction to LaTeX

An introduction to LaTeX An introduction to LaTeX - a document preparation language Shaun Cole (from an original lecture by Cedric Lacey) You can find these notes and some LaTeX examples on my web page: http://astro.dur.ac.uk/~cole/intro_latex_pg

More information

Praktische Aspekte der Informatik. Moritz Mühlhausen Prof. Marcus Magnor

Praktische Aspekte der Informatik. Moritz Mühlhausen Prof. Marcus Magnor Praktische Aspekte der Informatik Moritz Mühlhausen Prof. Marcus Magnor LaTeX Documents Further Reading Warning! The following slides are meant to give you a very superficial introduction. If you want

More information

LearningLatex. % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials

LearningLatex. % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials % Jennifer Pan % Math Prefresher % Fall 2011 % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials % COMMANDS % You have

More information

An introduction to LATEX

An introduction to LATEX An introduction to L A TEX Course Notes: /Phillip Kent November 1, 2017 Resources This course is for L A TEX 2 ε (current standard). The previous version 2.09 works slightly differently - beware! Course

More information

L A TEX Overview. Jiayi Liu. January 31, Colorado School of Mines

L A TEX Overview. Jiayi Liu. January 31, Colorado School of Mines 1 L A TEX Overview Jiayi Liu Colorado School of Mines January 31, 2017 Please refer to LATEX WikiBooks and ShareLaTeX.com Documentation for more details. 2 Brief History TEX ( Tech ) A low-level markup

More information

PRISM Introduction to L A TEX

PRISM Introduction to L A TEX PRISM to L A TEX Matt Hitt & Ben Jones PRISM Department of Political Science hitt.23@osu.edu jones.2781@osu.edu January 20, 2011 LaTeX: What is it and why should you use it? LaTeX (pronounced lah-tech

More information

Presentation of Scientific Results

Presentation of Scientific Results Presentation of Scientific Results Marek Seliger Lecture and Seminar 2 nd lecture: Gnuplot and LaTeX how to prepare figures and equations physik.uni-graz.at/~sel/teaching/presentation Marek Seliger Presentation

More information

Lecture 1: Short summary of LaTeX basics

Lecture 1: Short summary of LaTeX basics Laura Konstantaki Lecture 1: Short summary of LaTeX basics Feel at ease with LaTeX Unless otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International License, which means

More information

An Interactive Introduction to L A TEX

An Interactive Introduction to L A TEX An Interactive Introduction to L A TEX Part 1: The Basics Dr John D. Lees-Miller December 2, 2017 Why L A TEX? It makes beautiful documents Especially mathematics It was created by scientists, for scientists

More information

LAT E X Math Mode. RSI 2007 Staff

LAT E X Math Mode. RSI 2007 Staff LAT E X Math Mode RSI 2007 Staff LAT E X has a special mode for formatting mathematic This mode allows the use of: Subscripts and superscripts Greek letters and various special symbols Example of text

More information

Using LAT E X for your master s thesis

Using LAT E X for your master s thesis Using LAT E X for your master s thesis Dag Langmyhr (dag@ifi.uio.no) What is T E X? The man behind it all Donald Knuth created T E X in 1974 82, primarily to typeset his own books. What is LAT E X? What

More information

An Introduction to. Rado Ivanov CIS400 Senior Design Tutorial September 18, 2014

An Introduction to. Rado Ivanov CIS400 Senior Design Tutorial September 18, 2014 An Introduction to Rado Ivanov CIS400 Senior Design Tutorial September 18, 2014 Today's Outline Introducing TeX/LaTeX Benefits and potential difficulties Installation and use on Unix/Mac/Windows Compiling

More information

Getting Funky: Headers, Tables, Abstracts etc.

Getting Funky: Headers, Tables, Abstracts etc. : Headers, Tables, Abstracts etc. Introduction Today, we will be finishing off our need-to-know course with some extra bits and pieces that didn t really fit anywhere else in the tutorials. We won t be

More information

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX An Interactive Introduction to L A TEX Part 1: The Basics John Lees-Miller writel A TEX Why L A TEX? I It makes beautiful documents I Especially mathematics I It was created by scientists, for scientists

More information

The Joys of L A T E X

The Joys of L A T E X The Joys of L A T E X A 60 minute lecture, with examples, introducing the world s standard typesetting language. Vadim Ponomarenko Department of Mathematics and Statistics San Diego State University February

More information

COMP496/901: Academic Presentation and Writing Skills Using LaTeX

COMP496/901: Academic Presentation and Writing Skills Using LaTeX COMP496/901: Academic Presentation and Writing Skills Using LaTeX Robert Dale Robert.Dale@mq.edu.au 1 Acknowledgements These slides borrow heavily from similar material by: Jan-Philipp Söhn David Squire

More information

Introduction to Math in LaTeX

Introduction to Math in LaTeX Robert Andersen University of Oxford and University of Western Ontario ICPSR Summer Program, July 2002 Introduction to Math in LaTeX LaTeX has three basic modes: 1. Text mode 2. Inline math mode (allows

More information

Tools for Scientific Writing with LAT E X. Johan Carlson

Tools for Scientific Writing with LAT E X. Johan Carlson Tools for Scientific Writing with LAT E X Johan Carlson Luleå University of Technology Dept. of CSEE EISLAB Email: johanc@csee.ltu.se Tools for Scientific Writing Lecture no. 3 1 Last lecture Bibliography

More information

Introduction to LATEX

Introduction to LATEX Introduction to L A TEX Department of Statistics, UC Berkeley January 28, 2011 1 Why L A TEX? 2 Basics 3 Typing Math 4 BibTeX 5 More Why L A TEX? Professional typesetting tool offering great control Why

More information

Abstract A quick intro by examples to the document preparation language L A TEX.

Abstract A quick intro by examples to the document preparation language L A TEX. Jumpstart LaTeX Bo Waggoner Updated: 2014-09-15 Abstract A quick intro by examples to the document preparation language L A TEX. 1 Overview LaTeX is essentially a programming language that, when executed,

More information

(Yet Another) Introduction to L A TEX 2ε (V3)

(Yet Another) Introduction to L A TEX 2ε (V3) (Yet Another) Introduction to L A TEX 2ε (V3) Matteo Carrara August 30th, 2013 (Yet Another) Introduction to LATEX2ε (V3) 1 / 29 What is L A TEX 2ε? Typesetting system that is very suitable for producing

More information

LATEX Seminar Week 2 Jonathan Blair & Evan Ott. Document classes, basic math formatting, basic pictures, tables and matrices

LATEX Seminar Week 2 Jonathan Blair & Evan Ott. Document classes, basic math formatting, basic pictures, tables and matrices LATEX Seminar Week 2 Jonathan Blair & Evan Ott Document classes, basic math formatting, basic pictures, tables and matrices 1 Document Classes Used \documentclass before, here are more options: \documentclass{

More information

INTRODUCTION TO L A TEX WHAT IS L A TEX?

INTRODUCTION TO L A TEX WHAT IS L A TEX? INTRODUCTION TO L A TEX WHAT IS L A TEX? What is L A TEX? Basic usage and syntax Modes and environments Newcommands Cross-referencing Packages Importing graphics Tables and figures What L A TEX is NOT:

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Henrik Thostrup Jensen September 29 th 2006 1 About What is L A TEX How does it work Exercises Fetch slides and work from them Not everyone works with same speed/focus First a topic

More information

VERY VERY SHORT GUIDE TO LATEX

VERY VERY SHORT GUIDE TO LATEX - a System VERY VERY SHORT GUIDE TO LATEX School of Mathematics September 2017 - a System Advantages... Disadvantages... The Basics THE BASIC IDEA A word processor allows the user to design the document

More information

The Joys of L A T E X

The Joys of L A T E X The Joys of L A T E X A 45 minute lecture, with examples, introducing the world s standard typesetting language. Vadim Ponomarenko Department of Mathematics and Statistics San Diego State University June

More information

TEX users habits versus publishers requirements

TEX users habits versus publishers requirements TEX users habits versus publishers requirements Lolita Tolenė lolita.tolene@vtex.lt May 2, 2017 Lolita Tolenė TEX users habits versus publishers... May 2, 2017 1 / 18 L A TEX first workflow PDF HTML LaTeX

More information

Learning LaTeX: The Basics

Learning LaTeX: The Basics Learning LaTeX: The Basics The best way to learn LaTeX is by trial and error, with a lot of experimenting, and using other people s.tex files as a model. Google is also a good source: for example, googling

More information

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting Clifford E. Weil March 24, 2004 1 General Environments We have already encountered two environments. They are the document environment

More information

Workshop: A Simple Introduction to L A TEX

Workshop: A Simple Introduction to L A TEX Workshop: A Simple Introduction to L A TEX Michael P. Fix Susanne Schorpp Georgia State University 142 October 2012 Outline 1 Introduction 2 The Basics 3 Typesetting Text 4 Typesetting Math 5 Tables and

More information

Workshop on LATEX 2ε. Asst. Prof. Dr. Kemal Bagzibagli Department of Economics. 20 May 2015

Workshop on LATEX 2ε. Asst. Prof. Dr. Kemal Bagzibagli Department of Economics. 20 May 2015 Workshop on LATEX 2ε Asst. Prof. Dr. Kemal Bagzibagli Department of Economics 20 May 2015 1 Outline 1 Introduction 2 Some L A TEX Features 3 Input File Structure 4 The Layout of the Document 5 Special

More information

Getting Started with L A TEX

Getting Started with L A TEX Getting Started with L A TEX This document is designed to help you see how to produce some mathematical typesetting. The best way to learn how to use L A TEX is to experiment with particular commands.

More information

Document Preparation Word Processors

Document Preparation Word Processors latex xfig xv spell checkers printing Document Preparation Word Processors Word processors, like Word, use the model of WYSIWYG (What-You-See-Is-What-You-Get). interactive easier for novices to learn good

More information

Preparing Basic Manuscripts with L A TEX

Preparing Basic Manuscripts with L A TEX Preparing Basic Manuscripts with L A TEX Garrett Darl Lewis Department of Politics Princeton University March 24, 2015 Abstract This is an interactive document designed to introduce seminar participants

More information

Workshop on LaTeX. Outline. Muhammad Mostafa Monowar 11/13/2017

Workshop on LaTeX. Outline. Muhammad Mostafa Monowar 11/13/2017 Workshop on LaTeX Muhammad Mostafa Monowar Outline Part-1: Basics Part-2: How to Typeset a document? Part-3: Thesis Fundamentals Part-4: Creating Presentation 1 Part-1: Basics Why do I need LaTeX? Free

More information

The Honours Dissertation Class for L A TEX2e. Cara MacNish

The Honours Dissertation Class for L A TEX2e. Cara MacNish The Honours Dissertation Class for L A TEX2e Cara MacNish This report is submitted as partial fulfilment of the requirements for the Honours Programme of the School of Computer Science and Software Engineering,

More information

Pimp your thesis: a minimal introduction to L A T E X.

Pimp your thesis: a minimal introduction to L A T E X. 1 / 20 Pimp your thesis: a minimal introduction to L A T E X. Maarten Bransen IC/TC, U.S.S. Proton March 20, 2018 2 / 20 What is L A T E X? Most word processors you may be used to (i.e. Microsoft Word,

More information

Tools Course: Part 2

Tools Course: Part 2 Tools Course: Part 2 Christoph M. Kanzler Slides adapted from Dominik Wyser/Jean- Claude Metzger christoph.kanzler@hest.ethz.ch http://www.relab.ethz.ch 22.02.2017 Zürich, 20.02.2019 Overview Theory Recap:

More information

How to get started in L A TEX

How to get started in L A TEX very How to get started in L A TEX Florence Bouvet Department of Economics Sonoma State University March 26, 2009 1 / 29 Introduction very L A TEX is a document preparation system for high-quality typesetting.

More information

What is LaTeX. Is a document markup language and document preparation system for the TeX typesetting program

What is LaTeX. Is a document markup language and document preparation system for the TeX typesetting program What is LaTeX LaTeX ( /ˈleɪtɛk/, /ˈleɪtɛx/, /ˈlɑːtɛx/, or /ˈlɑːtɛk/) Is a document markup language and document preparation system for the TeX typesetting program Refers only to the language, not to the

More information

7/8. LaTex TeX -1 7/ LaTeX 7/10 2 7/11 EPS 7/12 IEEE

7/8. LaTex TeX -1 7/ LaTeX 7/10 2 7/11 EPS 7/12 IEEE LaTex 201 ( ) 7/8 LaTex TeX -1 7/9-2 -1 LaTeX 7/10 2,, 7/11 EPS 7/12 IEEE 2 Tobias Oetiker The Not So Short Introduction to LaTeX 2e 4.16 LaTex Template 3 : Windows MiKTeX 2.9 A typesetting system for

More information

Using the Bard Project Style File for

Using the Bard Project Style File for Using the Bard Project Style File for Bard Senior Projects and Bard M.A.T. Mathematics Research Projects Ethan Bloch August 7, 2015 1 Contents 1 Introduction 3 1.1 Obtaining the Bard Project Style File........................

More information

Forschungskolleg / ACSE Exercise 2. Tools around LaTeX

Forschungskolleg / ACSE Exercise 2. Tools around LaTeX Fakultät Informatik Institut für Software- und Multimediatechnik - Lehrstuhl für Softwaretechnologie Forschungskolleg / ACSE Exercise 2 Tools around LaTeX 23.10.2012 LAST WEEK Any Questions? 23.10.2012

More information