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

Size: px
Start display at page:

Download "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"

Transcription

1 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

2 What is L A T E X? L A T E X is a document preparation system by Leslie Lamport built upon Donald Knuth s T E X formatting engine. It is widely used in academia to produce documents of high typographical quality. Figure: Knuth (left) and Lamport (right). Dan Yasaki What is LAT E X? 2 / 22

3 Some Advantages L A T E X follows the design philosophy of separating presentation from content. High quality typesetting. Convenient formatting of mathematical formulae. Complex structures (footnotes, references, table of contents, links, etc) can be generated easily. Encourages structured writing. Highly portable and free. Dan Yasaki What is LAT E X? 3 / 22

4 Some Disadvantages? L A T E X follows the design philosophy of separating presentation from content. It is very hard to write unstructured and disorganized documents. Changes to document layout are tricky. Syntax errors. Dan Yasaki What is LAT E X? 4 / 22

5 Basic Workflow Plain text file foo.tex to foo.pdf Edit L A T E X Dan Yasaki What is LAT E X? 5 / 22

6 Advanced Workflow Edit L A T E X L A T E X BibT E X makeindex Dan Yasaki What is LAT E X? 6 / 22

7 Resources Getting started with TeX, LaTeX, and friends from the TeX Users Group ( LaTeX project site ( This workshop page ( teaching/latex/) Dan Yasaki What is LAT E X? 7 / 22

8 Get to Work hello-world.tex nonsense.tex workshop-article.tex workshop-slides.tex (if time permits) Dan Yasaki What is LAT E X? 8 / 22

9 hello-world.tex \documentclass{amsart} % This is a comment \begin{document} Hello world. \end{document} Dan Yasaki What is LAT E X? 9 / 22

10 hello-world.tex \documentclass{amsart} % This is a comment \begin{document} Hello world. \end{document} Dan Yasaki What is LAT E X? 9 / 22

11 hello-world.tex \documentclass{amsart} % This is a comment \begin{document} Hello world. \end{document} Dan Yasaki What is LAT E X? 9 / 22

12 hello-world.tex \documentclass{amsart} % This is a comment \begin{document} Hello world. \end{document} Dan Yasaki What is LAT E X? 9 / 22

13 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

14 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

15 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

16 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

17 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

18 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

19 nonsense.tex \documentclass{amsart} \usepackage{lipsum} \begin{document} \title{some Nonsense} \author{dan Yasaki} \begin{abstract} \lipsum[1] \end{abstract} \maketitle \section{introduction} \lipsum \end{document} Dan Yasaki What is LAT E X? 10 / 22

20 minimal.tex Go to teaching/latex/ and download minimal.tex. Rename it workshop-article.tex and move to a workshop folder. Dan Yasaki What is LAT E X? 11 / 22

21 Inline versus displayed Use $ around inline math and \[... \] around displayed math. $1 + 2 = 2$ versus \[1 + 2 = 2.\] The number of nonisomorphic Galois 2-adic fields with Galois group G is 1 µ # Aut(G) G (H)α(H). H G The number of nonisomorphic Galois $2$-adic fields with Galois group $G$ is \[\frac{1}{\#\aut(g)}\sum_{h \leq G} \mu_g(h)\alpha(h).\] Dan Yasaki What is LAT E X? 12 / 22

22 Inline versus displayed Use $ around inline math and \[... \] around displayed math. $1 + 2 = 2$ versus \[1 + 2 = 2.\] The number of nonisomorphic Galois 2-adic fields with Galois group G is 1 µ # Aut(G) G (H)α(H). H G The number of nonisomorphic Galois $2$-adic fields with Galois group $G$ is \[\frac{1}{\#\aut(g)}\sum_{h \leq G} \mu_g(h)\alpha(h).\] Dan Yasaki What is LAT E X? 12 / 22

23 Inline versus displayed Use $ around inline math and \[... \] around displayed math. $1 + 2 = 2$ versus \[1 + 2 = 2.\] The number of nonisomorphic Galois 2-adic fields with Galois group G is 1 µ # Aut(G) G (H)α(H). H G The number of nonisomorphic Galois $2$-adic fields with Galois group $G$ is \[\frac{1}{\#\aut(g)}\sum_{h \leq G} \mu_g(h)\alpha(h).\] Dan Yasaki What is LAT E X? 12 / 22

24 Inline versus displayed Use $ around inline math and \[... \] around displayed math. $1 + 2 = 2$ versus \[1 + 2 = 2.\] The number of nonisomorphic Galois 2-adic fields with Galois group G is 1 µ # Aut(G) G (H)α(H). H G The number of nonisomorphic Galois $2$-adic fields with Galois group $G$ is \[\frac{1}{\#\aut(g)}\sum_{h \leq G} \mu_g(h)\alpha(h).\] Dan Yasaki What is LAT E X? 12 / 22

25 A Syntax Error Figure: xkcd: Wisdom of the Ancients ( All long help threads should have a sticky globally-editable post at the top saying DEAR PEOPLE FROM THE FUTURE: Here s what we ve figured out so far... Dan Yasaki What is LAT E X? 13 / 22

26 newcommand and DeclareMathOperator You can define your own functions. Add these lines to your preamble. \newcommand{\rr}{\mathbb{r}} \newcommand{\qq}{\mathbb{q}} \DeclareMathOperator{\Aut}{Aut} Dan Yasaki What is LAT E X? 14 / 22

27 newcommand and DeclareMathOperator You can define your own functions. Add these lines to your preamble. \newcommand{\rr}{\mathbb{r}} \newcommand{\qq}{\mathbb{q}} \DeclareMathOperator{\Aut}{Aut} Dan Yasaki What is LAT E X? 14 / 22

28 newcommand and DeclareMathOperator You can define your own functions. Add these lines to your preamble. \newcommand{\rr}{\mathbb{r}} \newcommand{\qq}{\mathbb{q}} \DeclareMathOperator{\Aut}{Aut} Dan Yasaki What is LAT E X? 14 / 22

29 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

30 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

31 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

32 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

33 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

34 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

35 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

36 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

37 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

38 Labels and references Label and reference. Compile at least twice. \begin{theorem}\label{thm:bob} Let $a$, $b$, and $c$ blah. \end{theorem} An equation we want to reference: \begin{equation}\label{eq:fancy} \sum_{k = 1}^{\infty} k = -\frac{1}{12}. \end{equation} Theorem~\ref{thm:bob} and \eqref{eq:fancy} blah. Dan Yasaki What is LAT E X? 15 / 22

39 Citations Go to MathSciNet: Retrieve BibT E X reference. Save to references.bib. At end: \bibliographystyle{amsalpha} \bibliography{references} In text: \cite{foo} or \cite[theorem 1.2]{foo} L A T E X, BibT E X, L A T E X, L A T E X. Dan Yasaki What is LAT E X? 16 / 22

40 Citations Go to MathSciNet: Retrieve BibT E X reference. Save to references.bib. At end: \bibliographystyle{amsalpha} \bibliography{references} In text: \cite{foo} or \cite[theorem 1.2]{foo} L A T E X, BibT E X, L A T E X, L A T E X. Dan Yasaki What is LAT E X? 16 / 22

41 Citations Go to MathSciNet: Retrieve BibT E X reference. Save to references.bib. At end: \bibliographystyle{amsalpha} \bibliography{references} In text: \cite{foo} or \cite[theorem 1.2]{foo} L A T E X, BibT E X, L A T E X, L A T E X. Dan Yasaki What is LAT E X? 16 / 22

42 Citations Go to MathSciNet: Retrieve BibT E X reference. Save to references.bib. At end: \bibliographystyle{amsalpha} \bibliography{references} In text: \cite{foo} or \cite[theorem 1.2]{foo} L A T E X, BibT E X, L A T E X, L A T E X. Dan Yasaki What is LAT E X? 16 / 22

43 align and friends a = (1) c = 4 (2) \begin{align} a &= \label{eq:eve1} \\ c &= 4 \label{eq:eve2} \end{align} Use align* for no equation numbers. a = c = 4 Dan Yasaki What is LAT E X? 17 / 22

44 align and friends a = (1) c = 4 (2) \begin{align} a &= \label{eq:eve1} \\ c &= 4 \label{eq:eve2} \end{align} Use align* for no equation numbers. a = c = 4 Dan Yasaki What is LAT E X? 17 / 22

45 align and friends a = (1) c = 4 (2) \begin{align} a &= \label{eq:eve1} \\ c &= 4 \label{eq:eve2} \end{align} Use align* for no equation numbers. a = c = 4 Dan Yasaki What is LAT E X? 17 / 22

46 align and friends a = (1) c = 4 (2) \begin{align} a &= \label{eq:eve1} \\ c &= 4 \label{eq:eve2} \end{align} Use align* for no equation numbers. a = c = 4 Dan Yasaki What is LAT E X? 17 / 22

47 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

48 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

49 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

50 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

51 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

52 Figures In your preamble: \usepackage{graphicx} %for including pictures Figure captions go below. The [width = 0.5\textwidth] is optional. \begin{figure} \includegraphics[width=0.5\textwidth]{me.jpg} \caption{caption goes here.}\label{fig:selfie} \end{figure} Dan Yasaki What is LAT E X? 18 / 22

53 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

54 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

55 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

56 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

57 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

58 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

59 Tables using tabular You can create tables with tabular and array. The caption is before the table. The label comes after the caption. In preamble: \usepackage{booktabs} %for good looking tables. \begin{table} \caption{caption goes here.}\label{tab:han} \begin{tabular}{clr} \toprule centered & left & right\\ \midrule alice & bob & eve\\ $x$ & $y$ & $z$\\ \bottomrule \end{tabular} \end{table} Dan Yasaki What is LAT E X? 19 / 22

60 Tables using array \begin{table} \caption{caption goes here.}\label{tab:obiwan} $\begin{array}{clr} \toprule \text{centered} & \text{left} & \text{right}\\ \midrule \text{alice} & \text{bob} & \text{eve}\\ x & y & z\\ \bottomrule \end{array}$ \end{table} Dan Yasaki What is LAT E X? 20 / 22

61 Tables using array \begin{table} \caption{caption goes here.}\label{tab:obiwan} $\begin{array}{clr} \toprule \text{centered} & \text{left} & \text{right}\\ \midrule \text{alice} & \text{bob} & \text{eve}\\ x & y & z\\ \bottomrule \end{array}$ \end{table} Dan Yasaki What is LAT E X? 20 / 22

62 Beamer Go to: teaching/latex/ and download sample-slides.tex. Rename it workshop-slides.tex and move to workshop folder. We will edit that file together. Dan Yasaki What is LAT E X? 21 / 22

63 Thank you. Dan Yasaki What is LAT E X? 22 / 22

A demonstration of the L A TEX2ε class file for Earthquake Engineering and Structural Dynamics

A demonstration of the L A TEX2ε class file for Earthquake Engineering and Structural Dynamics EARTHQUAKE ENGINEERING AND STRUCTURAL DYNAMICS Earthquake Engng Struct Dyn 2010; 00:1 5 Published online in Wiley InterScience (wwwintersciencewileycom) DOI: 101002/eqe A demonstration of the L A TEX2ε

More information

A demonstration of the L A TEX2ε class file for the International Journal of Network Management

A demonstration of the L A TEX2ε class file for the International Journal of Network Management INTERNATIONAL JOURNAL OF NETWORK MANAGEMENT Int J Network Mgmt 2010; 00:1 5 Published online in Wiley InterScience (wwwintersciencewileycom) DOI: 101002/nem A demonstration of the L A TEX2ε class file

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 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

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

LaTeX. Information Literacy II EN(IL2) Course

LaTeX. Information Literacy II EN(IL2) Course LaTeX Information Literacy II EN(IL2) Course Previous Lecture Saving plots to file Customizing plots Bar and pie charts Today Introduction to Latex - Basic commands - Structure of the document - Mathematical

More information

Introduction to L A TEX beamer

Introduction to L A TEX beamer Introduction to L A TEX beamer Lukas Block, Nadja Maraun University of Paderborn June, 2017 Abstract You will learn what L A TEX is and how to use it for presentations. 2/34 Summary Introduction: L A TEX

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

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

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

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

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

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

Document Preparation Using L A TEX

Document Preparation Using L A TEX Document Preparation Using L A TEX 1 1 Department of Mathematics Michigan State University East Lansing, MI USA weil@math.msu.edu October 28, 2008 Before L A TEX Was TEX TEX is a professional typesetting

More information

A Demonstration of the L A TEX 2ε Class File for the Oxford University Press Ltd Journal. First Author 1 and Second Author 2.

A Demonstration of the L A TEX 2ε Class File for the Oxford University Press Ltd Journal. First Author 1 and Second Author 2. Author, F, and S Author (2009) A Demonstration of the LATEX 2ε Class File for the Oxford University Press Ltd Journal, International Mathematics Research Notices, Vol 2009, Article ID rnn999, 6 pages doi:101093/imrn/rnn999

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Helen Scharber 1 Introduction In this workshop, we ll be looking at how to create a basic document in L A TEXthat includes some math. There are a few important things to mention

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

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

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

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

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

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

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

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

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

L A TEX Workshop. Don Brower

L A TEX Workshop. Don Brower L A TEX Workshop Don Brower 2016-5-11 1. TEX and L A TEX. L A TEX is a typesetting system which makes it easy to create typographically sophisticated documents. It also has a challenging, unintuitive interface.

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

Exercises in LaTeX IDA on AAU

Exercises in LaTeX IDA on AAU Exercises in LaTeX IDA on AAU Consistently the exercises are divided into a mandatory part and a bonus part. We expect all to do the exercises in the mandatory part, while the ones in the bonus part can

More information

Dec. 27 th, 2010 University of Isfahan

Dec. 27 th, 2010 University of Isfahan Lt Latex Introduction It ti Adapted from Latex Workshop [1] Dr. Bahman Zamani Dec. 27 th, 2010 University of Isfahan Overview What is Latex? Why Latex? Why not Latex? How to InstallLatex? Where to Start?

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

TUTORIAL 10: ARRAYS AND MATRICES. 1. Welcome. Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series.

TUTORIAL 10: ARRAYS AND MATRICES. 1. Welcome. Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series. TUTORIAL 10: ARRAYS AND MATRICES CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to construct arrays and matrices. 1. Welcome Hello. My name is Dr. Christopher

More information

Formatting with LaTeX

Formatting with LaTeX Formatting with LaTeX Zuyuan Wang School of Mechanical Engineering Purdue University wang1707@purdue.edu June 23, 2016 Seminar @ SURF 2016 About the SURF GAs Formatting with LaTeX (02/35) 06/23/2016 Purdue

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

(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

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

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

A L A TEX-Package for IEEE PES Transactions

A L A TEX-Package for IEEE PES Transactions A L A TEX-Package for IEEE PES Transactions Volker Kuhlmann Dept of Electrical and Electronic Engineering Christchurch, New Zealand 20 April 1999 Contents 1 Introduction 1 2 Installation 2 3 Changes from

More information

Typesetting with L A TEX: The Basics 1

Typesetting with L A TEX: The Basics 1 Typesetting with L A TEX: The Basics 1 Paul Bergeron Department of Physics and Astronomy, University of Utah, Salt Lake City January 26, 2016 1 These slides will be available at http://www.physics.utah.edu/~bergeron/

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

CSCE 222 Discrete Structures for Computing. LaTeX. Dr. Hyunyoung Lee. !!!!! Based on slides by Andreas Klappenecker

CSCE 222 Discrete Structures for Computing. LaTeX. Dr. Hyunyoung Lee. !!!!! Based on slides by Andreas Klappenecker CSCE 222 Discrete Structures for Computing LaTeX Dr. Hyunyoung Lee!!!!! Based on slides by Andreas Klappenecker 1 Tripitaka Koreana Palman Daejanggyeong ( Eighty-Thousand Tripitaka ) South Korean collection

More information

L A TEX: Eh? What is it, what isn t it, who cares? Andy Caird. LATEX: Eh? p.1/13

L A TEX: Eh? What is it, what isn t it, who cares? Andy Caird. LATEX: Eh? p.1/13 LATEX: Eh? p.1/13 L A TEX: Eh? What is it, what isn t it, who cares? Andy Caird acaird@umich.edu LATEX: Eh? p.2/13 L A TEX It is not a word-processor. LATEX: Eh? p.2/13 L A TEX It is not a word-processor.

More information

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type T E X and L A T E X Document preparation tools This lecture will introduce software necessary to produce documents using L A T E X in the School of Computer Science. It will also show the basics of producing

More information

EBESS and MESS Presents: Learn to LaTeX. Presented by Joshua Tambunan 13 February 2018

EBESS and MESS Presents: Learn to LaTeX. Presented by Joshua Tambunan 13 February 2018 EBESS and MESS Presents: Learn to LaTeX Presented by Joshua Tambunan 13 February 2018 Structure of the Night Basics of LaTeX Motivation What? Why? Structure of the Night Starting a document Commenting

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

Getting started with Latex

Getting started with Latex Getting started with Latex Robert G. Niemeyer University of New Mexico, Albuquerque October 15, 2012 What is Latex? Latex is a mathematical typesetting language. Essentially, when you are using Latex to

More information

Basics. Options. Commands

Basics. Options. Commands L A TEX Basics https://www.sharelatex.com http://gradquant.ucr.edu/latex-resources Options Preamble Commands Line numbers Document body Document Classes Document class determines the overall layout of

More information

StarT E X at E X for beginners

StarT E X at E X for beginners StarT E X at E X for beginners Dag Langmyhr Department of Informatics University of Oslo dag@ifi.uio.no 1 Background In many courses taught at the Department of Informatics at the University of Oslo, students

More information

L A TEX. COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. LaTeX. Development. Why?

L A TEX. COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. LaTeX. Development. Why? LaTeX A document preparation system Used to typeset a document COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing LaTeX Compiler L A TEX http://en.wikipedia.org/wiki/latex

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

L A TEX. A computer system for typesetting documents

L A TEX. A computer system for typesetting documents L A TEX A computer system for typesetting documents Typewriter designer typesetter printer Text (content) design and implementation what we see and read L A TEX is a document design language and can be

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

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

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

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

COMS 6100 Class note

COMS 6100 Class note COMS 6100 Class note Biala Toheeb A. 26 August, 2016 A short quiz was given to test if the students really studied the linux commands. The answers to the quiz are Q1. How do you create a directory named

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

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 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

An Introduction to L A T E X

An Introduction to L A T E X An Introduction to L A T E X Robert Dyer Department of Computer Science Iowa State University rdyer@cs.iastate.edu August 27, 2008 Why Use L A T E X? L A T E X lets you focus on the content and not how

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

Using the Penn Biostat LaTeX Templates

Using the Penn Biostat LaTeX Templates Using the Penn Biostat LaTeX Templates Sarah J. Ratcliffe Professor of Biostatistics January 4, 2018 Why LaTeX? It s is a document preparation system for high-quality typesetting. Controls all the page

More information

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

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 Joys of LAT E X. Vadim Ponomarenko. introducing the world s standard typesetting language.

The Joys of LAT E X. Vadim Ponomarenko. introducing the world s standard typesetting language. The Joys of LAT E X A 60 minute lecture, with examples, introducing the world s standard typesetting language. Vadim Ponomarenko http://www.trinity.edu/vadim/latex.pdf LAT E X? LAT E X is not: Word processor

More information

WYSIWYG Systems. CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems

WYSIWYG Systems. CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems WYSIWYG Systems CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX Anton Setzer http://www.cs.swan.ac.uk/ csetzer/lectures/ computerscienceprojectresearchmethods/current/index.html WYSIWYG

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

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

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

CSCM10 Research Methodology A Taster of L A TEX

CSCM10 Research Methodology A Taster of L A TEX CSCM10 Research Methodology A Taster of L A TEX Anton Setzer http://www.cs.swan.ac.uk/ csetzer/lectures/ computerscienceprojectresearchmethods/current/index.html November 10, 2016 CSCM10 Lecture 4, 11/2/16:

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

Why do I need LaTeX? What is LaTeX? Where can I get LaTeX? How can I use LaTeX? Who can help me with LaTeX? Why What Where How Who

Why do I need LaTeX? What is LaTeX? Where can I get LaTeX? How can I use LaTeX? Who can help me with LaTeX? Why What Where How Who in scientific writing and publishing Why do I need LaTeX? What is LaTeX? Where can I get LaTeX? How can I use LaTeX? Who can help me with LaTeX? Why What Where How Who History of Long, long, long, long,

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to L A TEX Hands-on workshop University at Buffalo INFORMS Student Chapter October 26, 2016 Agenda Motivation & Intro to LATEX 1 Motivation & Intro to L A TEX Motivation Introduction Getting

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

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

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

Literate programming with R and L A TEX

Literate programming with R and L A TEX Literate programming with R and L A TEX A brief overview Glen Sargeant U.S. Geological Survey Sponsored by the TWS Biometrics Working Group October 2, 2010 Objectives Promote appreciation for literate

More information

L A TEX minicourse. dstowell, mag, sar, scannell,... September Typeset by FoilTEX

L A TEX minicourse. dstowell, mag, sar, scannell,... September Typeset by FoilTEX L A TEX minicourse dstowell, mag, sar, scannell,... September 2003 Typeset by FoilTEX What it is What is L A TEX? a typesetting system for creating high-quality documents allows you to create complex-looking

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

LaTeX Workshop. While you re waiting, please make an account at

LaTeX Workshop. While you re waiting, please make an account at LaTeX Workshop While you re waiting, please make an account at http://sharelatex.com 1 High-level overview Intro: What is LaTeX, why bother learning it? Structure of a LaTeX document What does a document

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

Introduction to LaTeX. Christoph Pickl

Introduction to LaTeX. Christoph Pickl Introduction to LaTeX Christoph Pickl 1 Who knows (La-)TeX? 2 Who has ever written a document with it? 3 Who has ever written a package? 4 Agenda 1. Basics First steps with LaTeX Creating a LaTeX-Document

More information

Began as TeX, in 1982 (Knuth). Purely a typesetting tool. LaTeX added macros, maintaining TeX as it s typesetting engine (Lamport).

Began as TeX, in 1982 (Knuth). Purely a typesetting tool. LaTeX added macros, maintaining TeX as it s typesetting engine (Lamport). LaTeX Began as TeX, in 1982 (Knuth). Purely a typesetting tool. LaTeX added macros, maintaining TeX as it s typesetting engine (Lamport). Now maintained by Frank Mittlebach. For an interesting interview,

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

Aalborg October 2014

Aalborg October 2014 Aalborg October 2014 Presentation Background for the course Why I am qualified 2 parts Format Slides pay attention Demonstration Exercises Questions Homepage and installation Page 2 of 69 Content part

More information

HOW TO TYPESET THESES. Using iiscthesis style for LAT E X

HOW TO TYPESET THESES. Using iiscthesis style for LAT E X HOW TO TYPESET THESES Using iiscthesis style for LAT E X A Thesis Submitted For the Degree of Doctor of Philosophy in the Faculty of Engineering by My Name Here Computer Science and Automation Indian Institute

More information

Introduction to Scientific Typesetting Lesson 5: The Structure of a Document

Introduction to Scientific Typesetting Lesson 5: The Structure of a Document Introduction to Scientific Typesetting Lesson 5: The Structure of a Document Ryan Higginbottom January 11, 2012 1 2 Page of Page 3 Page Page of Page L A T E X provides several standard page styles. In

More information

A LAT E X Tutorial. Evangelos Milios. March 15, 2004

A LAT E X Tutorial. Evangelos Milios. March 15, 2004 A LAT E X Tutorial Evangelos Milios March 15, 2004 What is LAT E X LAT E X is a typesetter. processor. It is not WYSIWYG. It is not a word Author specifies the structure of the document symbolically (in

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

1 Obtaining LyX and L A TEX

1 Obtaining LyX and L A TEX A Guide to LyX and L A TEX Based off A Quick Guide to LyX by Jessica Moses 08 October 2011 Many economists (and academics in mathematics-heavy disciplines) use a program called L A TEX to create documents.

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Zitro December 27, 2017 Zitro Introduction to LATEX December 27, 2017 1 / 17 Introduction Introduction What is L A TEX? Where can I use it? Should I use it? Zitro Introduction to

More information

Basic L A TEX. what is LaTeX?

Basic L A TEX. what is LaTeX? Basic L A TEX Erik Brunvand what is LaTeX? it s a typesetting markup language it s a set of macros that use TeX to format documents it s a powerful set of formatting commands that includes support for

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

The EJASA L A TEXTemplate An introduction for authors

The EJASA L A TEXTemplate An introduction for authors Electronic Journal of Applied Statistical Analysis Vol. 00, N. 00, August 2013, 1-35 The EJASA L A TEXTemplate An introduction for authors The EJASA Committee a a Electronic Journal of Applied Statistical

More information

Introduction to Scientific Typesetting Lesson 7: Graphics and Floats

Introduction to Scientific Typesetting Lesson 7: Graphics and Floats Introduction to Scientific Typesetting Lesson 7: Graphics and Ryan Higginbottom January 13, 2012 1 2 3 Vector Graphics drawn using geometrical objects, like lines, polygons, circles; image information

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

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

Scientific writing and bibliographic research

Scientific writing and bibliographic research Scientific writing and bibliographic research Day 3 Philipp Zumstein, Stefan Weil (Mannheim University Library) philipp.zumstein, stefan.weil @bib.uni-mannheim.de Scientific writing and bibliographic research

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

Typing Mathematics. Darrin Doud

Typing Mathematics. Darrin Doud Typing Mathematics in LATEX Darrin Doud Darrin Doud Department of Mathematics Brigham Young University Provo, UT 84602 doud@math.byu.edu Copyright c 2018 Version: 0.01 Date: January 31, 2018 Contents 1

More information

Introduction to L A T E X

Introduction to L A T E X L A T E X R. M. Department of Mathematics University of Kentucky 6 October 2008 / L A T E X Outline T E X T E X was begun by Donald Knuth in 1977 because he did not like the appearance of his book The

More information