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

Size: px
Start display at page:

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

Transcription

1 L A TEXcourse Basque Center for Applied Mathematics -5pt 30th May-2nd June, 2016

2 Outline

3 In the previous lesson, we have a small introduction of the basics for LATEX Learnt basic document structure Basic commands Packages Bold, italic, letter size... Lists Input vs. include Logical division of the document using chapter, section, subsection... Right now you can use LATEX and manage basic stuff!

4 Outline

5 L A TEXin a nutshell Mathematics in L A TEX Floating environment: tables and images Bibliography management in LATEX Understanding the basic of bibliography items & bibtex Doing Presentation in LATEX A very basic introduction : Completing my document

6 Outline

7 Outline Matrices and arrays Some examples Equation environment Symbols Matrices and arrays Some examples Equation environment Symbols 5 6 7

8 Matrices and arrays Some examples Equation environment Symbols The main aim for Donald Knuth when he began developing the original TeX system was to create something that allowed construction of mathematical formulae, while looking professional when printed. Typesetting mathematics is one of LATEX s greatest strengths. How to use Mathematical tools in LATEX? Simple mathematical formulas plain LATEX Complicated formulas, you have two options: amsmath package: introduces several new powerful and flexible commands (\usepackage{amsmath}) mathtools package:fixes some amsmath quirks and adds some useful settings, symbols, and environments to amsmath ( \usepackage{mathtools})

9 Mathematics & L A TEX Matrices and arrays Some examples Equation environment Symbols LATEX needs to know beforehand that the subsequent text does indeed contain mathematical element. Mathematical environments Inline text formulas Displayed formulas separated from the main text

10 Starting to write mathematical equations... Matrices and arrays Some examples Equation environment Symbols Direct symbols from the keyboard: + =!/()[] <> : Predefined symbols: LATEXprovide a quite big list of predefined symbols (Greek letters, set and relation symbols, etc). Some examples: x X, y ɛ \forall x \in X, \quad \exists y \leq \epsilon α, β, γ, π, φ, ϕ \alpha, \beta, \gamma, \pi, \phi, \varphi Operators: function that is written as a word: e.g. trigonometric functions (sin, cos, tan), logarithms and exponentials (log, exp), limits (lim), as well as trace and determinant (tr, det) Powers and indices are equivalent to superscripts and subscripts in normal text mode. ^ (circumflex accent) - power _ - indices

11 Matrices and arrays Some examples Equation environment Symbols Fraction: \frac{numerator}{denominator} Roots: sqrt Sum and integral: \sum and \int Accents: an example: ā \bar{a} Help! I don t know the name to look for it in google! Don t worry. There is a very handy online tool that you can use to directly draw it, and it will give you the name of the LATEX command See Detexify:

12 Arrays to write formulae Matrices and arrays Some examples Equation environment Symbols A basic matrix may be created using the matrix environment: in common with other table-like structures, entries are specified by row, with columns separated using an ampersand (&) and a new rows separated with a double backslash (\\) Example of a matrix a b c d e f g h i \begin{displaymath} \begin{matrix} a & b & c \\ d & e & f \\ g & h & i \end{matrix} \end{displaymath}

13 Matrices and arrays Some examples Equation environment Symbols source:

14 Some basics in mathematic formulae Matrices and arrays Some examples Equation environment Symbols Basically typing a formula in LATEXis pretty much straightforward, almost following the natural way of typing it. LATEX will take care of the proper format a + b a + b a b a - b a = bc a = b c a 2, a n+1 a^2, a^{n+1} a 2c a n+1 a_2, a_{n+1} f (x) = (x + 5)(x 2) f(x) = (x+5)(x-2) 1 2, 1 n+1 \frac{1}{2},\frac{1}{n+1} i n f (x) $\sum_{n}^{i} f(x) j,i f (x) \int_{j,i} f(x) cos(2θ) = cos 2 θ sin 2 θ \cos (2\theta) = \cos^2 \theta - \sin^2 \theta n 1 + x + x 2 + x \sqrt[n]{1+x+x^2+x^3+\ldots}

15 Some Examples using displaymath Matrices and arrays Some examples Equation environment Symbols Some simple examples E = mc 2 \begin{displaymath} E = m c^2 \end{displaymath} a n+1 = a n + 1 \begin{displaymath} a_{n+1} = a_n + 1 \end{displaymath} And a bit more complex examples [ ] 1 2 \begin{displaymath} \left[ \dfrac{1}{2} \right] \end{displaymath} { a + b = 4 2a + 3b = 36 \begin{displaymath} \left\{\begin{array}{rcl} a+b & = & 4 \\ 2a+3b & = & 36\\ \end{array}\right. \end{displaymath}

16 Equation environment Matrices and arrays Some examples Equation environment Symbols The equation environment automatically numbers your equation, and you can also use the commands to to label and reference equations \label \ref \eqref from the amsmath package An example f (x) = (x + a)(x + b) (1) \begin{equation} f(x)=(x+a)(x+b) \end{equation}

17 Matrices and arrays Some examples Equation environment Symbols An example with references this references the eq = 20 (2) \begin{equation} \label{eq:myeq} 5^2-5 = 20 \end{equation} this references the eq. \ref{eq:myeq}

18 Some suggestions Matrices and arrays Some examples Equation environment Symbols The $$...$$ may cause problems, particularly with the AMS-LATEX macros The equation* and displaymath environments are functionally equivalent. Differences among text and math mode: Math mode: most spaces and line breaks do not have any significance, you need to specify with special commands such as \quad Empty lines are not allowed. Only one paragraph per formula. Each letter is considered to be the name of a variable and will be typeset as such.

19 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

20 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

21 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

22 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

23 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

24 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

25 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

26 Summary of symbols Matrices and arrays Some examples Equation environment Symbols source:

27 Outline Figure Environment Table Environment Figure Environment Table Environment 6 7 8

28 Floating: what s that? Figure Environment Table Environment Floats are containers for things in a document that cannot be broken over a page. table figure Features: part of the normal stream of text, Separate entities, positioned in a part of the page to themselves (top, middle, bottom, left, right, or wherever the designer specifies). always have a caption they can be referred to from elsewhere in the text LATEX automatically floats Tables and Figures, depending on how much space is left on the page at the point that they are processed. If there is not enough room on the current page, the float is moved to the top of the next page

29 Adding figures Figure Environment Table Environment To create a figure that floats, use the figure environment. Example \begin{figure}[placement specifier]... figure contents... \end{figure} The placement specifier parameter exists as a compromise, and its purpose is to give the author a greater degree of control over where certain floats are placed.

30 Placement positions Figure Environment Table Environment Placement permissions lists which of the options you wish to make available to LATEX. These are simply possibilities, and LATEX will decide when typesetting your document which of your supplied specifiers it thinks is best. So, how LATEXworks? The algorithm, was proposed by Frank Mittelbach: 1 If a float is encountered, LATEX attempts to place it immediately according to its rules if this succeeds, the float is placed and that decision is never changed; if this does not succeed, then L A TEX places the float into a holding queue to be reconsidered when the next page is started (but not earlier). 2 Once a page has finished, LATEX examines this holding queue and tries to empty it as best as possible. Try to generate as many float pages as possible Try to place the remaining floats into top and bottom areas. The remaining floats and either places them or defers them to a later page 3 If the end of the document has been reached or if a \clearpage is encountered, LATEX starts a new page, relaxes all restrictive float conditions, and outputs all floats in the holding queue by placing them on float page(s)

31 Including my figure: Howto Figure Environment Table Environment As it was explained the first day, our preferred formats will be either PDF and PNG (PdfLATEX ) or EPS (LATEX ). Including my figure You need to include the package: \usepackage{graphicx} And the syntax is \includegraphics[attr1=val1, attr2=val2,..., attrn=valn]{imagename} source:

32 Scaling the image Figure Environment Table Environment Usually images are bigger than expected, or we need to customize its size. Trying to define exact width and height is a bit complicated. Your best choice is to make use of \scalebox, which will allows you to scale the image by writing the % of scale. \begin{figure}[htb] \centering \scalebox{0.5}{\includegraphics{images/myfig.png}} \end{figure} Figure environment The figure environment is useful when you might want to accompany an image with a caption and possibly a cross-reference. Tip: In 2column papers, if you have a big image occupying the two columns, you must use \figure* To list all the figures use \listoffigures

33 Figure Environment Table Environment source:

34 Figure Environment Table Environment Example \begin{figure}[htb] \centering \scalebox{0.5}{\includegraphics{images/myfig.png}} \caption{awesome Image} \label{fig:myfig} \end{figure} Figure : Awesome Image

35 Figure Environment Table Environment But, what if I have several figures? The subfigure The subfigure and subfig packages allows to have subfigures within figures, or subtables within table floats. They are deprecated but useful alternatives when used in-conjunction with LATEX templates (i.e templates for journals from Springer and IOP, IEEETran and ACM SIG) \begin{figure} \centering \subfigure[mycaption]{ \scalebox{0.22}{ \includegraphics{images/fig1.png}} \label{subfig:fig1} } \subfigure[mycaption2]{ \scalebox{0.05}{ \includegraphics{images/fig2.png}} \label{subfig:fig2} } \caption{my global text:and refers to~\ref{subfig:fig1} and ~\ref{subfig:fig2} } \label{fig:globfig} \end{figure} (a) mycaption (b) mycaption2 Figure : My global text:and refers to 2(a) and 2(b)

36 The tabular environment Figure Environment Table Environment The tabular environment is used to construct the tables Tabular environment is not a float by default. For tables you wish to float, wrap the tabular environment within a table environment It is good to use dedicated editors to create the tables, and export it to LATEX (e.g. Example The format of tabular command is: \begin{tabular}[pos]{table spec} And the tabular environment inside a table environment looks like this \begin{table} \begin{tabular}{...}... table data... \end{tabular} \end{table}

37 Figure Environment Table Environment \begin{tabular}[pos]{table spec} The table spec argument tells LATEX the alignment to be used in each column and the vertical lines to insert. The number of columns does not need to be specified as it is inferred by looking at the number of arguments provided. The optional parameter pos can be used to specify the vertical position of the table relative to the baseline of the surrounding text: b (bottom),c(center,default), t (top) source

38 Figure Environment Table Environment

39 Figure Environment Table Environment \begin{center} \begin{tabular}{ l c r } \hline 1 & 2 & 3 \\ \hline 4 & 5 & 6 \\ \hline 7 & 8 & 9 \\ \hline \end{tabular} \end{center}

40 Rows spanning multiple columns Figure Environment Table Environment The command is \multicolumn{num_cols}{alignment}{contents} num cols is the number of subsequent columns to merge; alignment is either l, c, r, or to have text wrapping specify a width p{5.0cm} contents is simply the actual data you want to be contained within that cell \begin{tabular}{ l l } \hline \multicolumn{2}{ c }{Team sheet} \\ Team sheet \hline GK Paul Robinson GK & Paul Robinson \\ LB Lucas Radebe LB & Lucas Radebe \\ DC Michael Duberry DC & Michael Duberry \\ DC Dominic Matteo DC & Dominic Matteo \\ RB & Dider Domi \\ \hline \end{tabular} RB Dider Domi source:

41 Columns spanning multiple rows Figure Environment Table Environment Add \usepackage{multirow} \multirow{ num_rows }{ width }{ contents }. \begin{tabular}{ l l l } \hline \multicolumn{3}{ c }{Team sheet} \\ \hline Goalkeeper & GK & Paul Robinson \\ \hline \multirow{4}{*}{defenders} & LB & Lucas Radebe \\ & DC & Michael Duburry \\ & DC & Dominic Matteo \\ & RB & Didier Domi \\ \hline \hline \end{tabular} Team sheet Goalkeeper GK Paul Robinson LB Lucas Radebe Defenders DC Michael Duburry DC Dominic Matteo RB Didier Domi

42 The table environment Figure Environment Table Environment The table environment allows to use caption and labels for the table, in the same fashion as the figure environment The table environment is also useful when you want to have a list of tables at the beginning or end of your document with the command \begin{table}[position specifier] \centering \begin{tabular}{ l }... your table... \end{tabular} \caption{this table shows some data} \label{tab:myfirsttable} \end{table}

43 Outline

44 Incorporating references into a document is an important task LATEX has a built-in support for citing references The auxiliary tool called BibTeX automates the process through a flat.file database (.bib) This database file can be referenced in any L A TEX document, and citations made to any record that is contained within the file centralized bibliography source can be linked to as many documents as desired Classical approach \begin{thebibliography}{9} \bibitem{lamport94} Leslie Lamport, \emph{\latex: a document preparation system}, Addison Wesley, Massachusetts, 2nd edition, Using BibTex \bibliographystyle{plain} \bibliography{sample1,...,samplen} \end{thebibliography}

45 source:

46 Citating To actually cite a given document is very easy. Go to the point where you want the citation to appear, and use the following: \cite{cite_key} the cite_key is that of the bibitem you wish to cite When LATEXprocesses the document, the citation will be cross-referenced with the bibitems and replaced with the appropriate number citation. The advantage here, once again, is that LATEX looks after the numbering for you.

47 Understanding the bibitems A BibTeX database is stored as a.bib file. It is a plain text file, and so can be viewed and edited easily. The structure of the file is also quite simple. An example of a BibTeX author = "George D. Greenwade", title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})", year = "1993", journal = "TUGBoat", volume = "14", number = "3", pages = " " }

48 Understanding the bibitems Each item begins with the declaration of the reference type, in the form book, article, and for papers presented at conferences, there is inproceedings. the content of the item is enclosed in a block using { } The different elements we can find by order: citation key: identifier that you will use within your document to cross-reference it to this entry Attributes in the format BibTex keyword = value. The value can be also surrounded by { } each attribute must be followed by a comma to delimit one from another citation key standard use the author s surname, followed by the year of publication In any case, as we said the first day, use a bibliography manager to do this automatically!

49 Bibliography styles There are several different ways to format lists of bibliographic references and the citations to them in the text. These are called citation styles citation style It Consist of two parts: The format of the abbreviated citation (i.e. the marker that is inserted into the text to identify the entry in the list of references) Numbered (Vancouver referencing system) are numbered consecutively in order of appearance in the text Textual (Harvard referencing system) use the author surname and (usually) the year as the abbreviated form of the citation The format of the corresponding entry in the list of references, which includes full bibliographic details.

50 Outline

51 L A TEX beamer The package beamer can be used to do presentations The usual header information may then be specified. \documentclass{beamer} \begin{document} \begin{frame} \frametitle{this is the first slide} %Content goes here \end{frame} \begin{frame} \frametitle{this is the second slide} \framesubtitle{a bit more information about this} %More content goes here \end{frame} % etc \end{document} Frametitle keyword example.png

52 Outline

53 1 Add images Use the image you create the first day Add the eps image and compile with L A TEX and with pdfl A TEX, what does it happen? Add the png image and compile with L A TEX and with pdfl A TEX, what does it happen? Add a label to your image and reference it in the text Add a caption to the image (short and long caption) Add list of images in the document and check if your image appear 2 Add a table of at least 2 columns and 3 rows The header of the table must be in bold Use lines to separate each row Give a label to the table and reference it in the text Add the list of tables in the document and check if your table appear 3 Add a set of equations using $ $$ Equation environment Give a label to the equation and reference it in the text 4 Generate your.bib file with Mendeley and cite one of the papers in the text using \cite Change the bibliography styles in your main document

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

How to L A TEX. George Wong, David Mykytyn. 6 October 2016

How to L A TEX. George Wong, David Mykytyn. 6 October 2016 How to L A TEX George Wong, David Mykytyn 6 October 2016 1 What is L A TEX? Used in textbooks, journal/conference articles, and lab reports! You provide the material and L A TEX renders according to typographical

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

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

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

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

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

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

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

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

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

Lecture 2: Tables, Figures and Formulæ

Lecture 2: Tables, Figures and Formulæ Federico Cantini (Lib4RI) Module 5: L A TEX Lecture 2: Tables, Figures and Formulæ Unless otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International

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

L A TEX-cursus 5th e session: thesis in L A TEX

L A TEX-cursus 5th e session: thesis in L A TEX L A TEX-cursus 5th e session: thesis in L A TEX TEXniCie A Eskwadraat 17 november 2014 Previous week Last week, we talked about: Importing vector images (.pdf instead of.jpg) Making presentation with the

More information

L A TEX for Psychological Researchers

L A TEX for Psychological Researchers L A TEX for Psychological Researchers Lecture 2: Basics of the L A TEX language Sacha Epskamp University of Amsterdam Department of Psychological Methods 27-01-2015 The L A TEX process.tex pdfl A TEX.pdf

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

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

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

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

LaTeX A Tutorial. Mohsen Alimomeni, 2010

LaTeX A Tutorial. Mohsen Alimomeni, 2010 LaTeX A Tutorial Mohsen Alimomeni, 2010 How to pronounce LaTeX? (Lah-tek, or Lay-tek) A typesetting program, not a word-processor Designed for producing beautiful books, thesis, papers, articles... (Springer

More information

A Short L A TEX Introduction

A Short L A TEX Introduction A Short L A TEX Introduction Dr Will Hossack School of Physics & Astronomy tele: 50-5261 Will.Hossack@ed.ac.uk February 2016 What is L A TEX L A TEX(being Layman s-tex) is a text-formatting mark-up language,

More information

Title. Author 1 Author 2 Author 3. January 23, 2015

Title. Author 1 Author 2 Author 3. January 23, 2015 Title Author 1 Author 2 Author 3 January 23, 2015 Abstract Place your abstract here. This document is a template for turning in project and assignment reports for Math 442. In addition, we go over some

More information

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number.

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number. Using L A TEX About these notes These notes give some starting tips on using L A TEX to typeset mathematical documents. To learn the system at all fully you ll need a proper L A TEX manual, but you can

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

CTAN lion drawing by Duane Bibby \LaTeX and \BibTeX. HJ Hoogeboom 19 april 2013 Bachelorklas

CTAN lion drawing by Duane Bibby   \LaTeX and \BibTeX. HJ Hoogeboom 19 april 2013 Bachelorklas CTAN lion drawing by Duane Bibby http://www.ctan.org/lion/ \LaTeX and \BibTeX HJ Hoogeboom 19 april 2013 Bachelorklas Donald Knuth (TeX, 1978) Leslie Lamport (LaTeX) & Oren Patashnik (BibTeX, 1985) 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

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

عمادة البحث العلمي جامعة الملك سعود عمادة البحث العلمي جامعة الملك سعود 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

An Introduction to. Andrew G. West, Jian Chang CIS400 Senior Design Tutorial September 15, 2009

An Introduction to. Andrew G. West, Jian Chang CIS400 Senior Design Tutorial September 15, 2009 An Introduction to Andrew G. West, Jian Chang CIS400 Senior Design Tutorial September 15, 2009 Today's Outline Introducing TeX/LaTeX Benefits and potential difficulties Installation and use on Unix/Mac/Windows

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

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

Manuscript Title. with Forced Linebreak. Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\

Manuscript Title. with Forced Linebreak. Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\ Manuscript Title: with Forced Linebreak Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\ Charlie Authoring c) Second institution and/or address This

More information

A brief introduction to L A TEX

A brief introduction to L A TEX A brief introduction to L A TEX Chris Bowers October 16, 2007 What is L A TEX? TEX developed late 70 s as typesetting language. L A TEX is a set of macro extensions to TEX It s a document preparation system.

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

GENERAL INFORMATION INSTRUCTIONS FOR MANUSCRIPT SUBMISSION

GENERAL INFORMATION INSTRUCTIONS FOR MANUSCRIPT SUBMISSION GENERAL INFORMATION ROMANIAN JOURNAL OF PHYSICS is a publication of the Romanian Academy. The journal was first published in 1992, as a continuation of the former REVUE ROUMAINE DE PHYSIQUE (established

More information

Introduction to MCS 220 and L A TEX

Introduction to MCS 220 and L A TEX Introduction to MCS 220 and L A TEX Tom LoFaro August 28, 2009 1 Introduction to MCS 220 MCS 220, Introduction to Analysis, carries a WRITD (writing in the discipline) designation. What this means to you

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

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

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

Using L A TEX Tom Edgar

Using L A TEX Tom Edgar M499 - Senior Capstone Using L A TEX Tom Edgar Department of Mathematics Pacific Lutheran University Tacoma, WA Wednesday, September 17, 2014 Introduction Introduction What is L A TEX? Powerful (Mathematical)

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

Effective Programming Practices for Economists

Effective Programming Practices for Economists Effective Programming Practices for Economists 4. A L A T E X primer Hans-Martin von Gaudecker Department of Economics, Universität Bonn The case for plain L A T E X Version control works best with simple

More information

Typesetting with TEX

Typesetting with TEX Typesetting with TEX Scientific typesetting made easy TEX (rhymes with blecchhh! ) is a technical typesetting system created by Donald Knuth of Stanford University. It is currently used by most physicists,

More information

LaTeX is essentially a markup language

LaTeX is essentially a markup language Dept of Civil & Environmental Engineering LaTeX is essentially a markup language g You provide LaTeX with a text based document that is part text, part code (kind of like a simple HTML) LaTeX does all

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. Leslie Lamport. Digital Equipment Corporation. Illustrations by Duane Bibby. v ADDISON-WESLEY

LATEX. Leslie Lamport. Digital Equipment Corporation. Illustrations by Duane Bibby. v ADDISON-WESLEY LATEX A Document Preparation System User's Guide and Reference Manual Leslie Lamport Digital Equipment Corporation Illustrations by Duane Bibby v ADDISON-WESLEY Boston San Francisco New York Toronto Montreal

More information

Latex Manually Set Font Size For Tables

Latex Manually Set Font Size For Tables Latex Manually Set Font Size For Tables I would like to set my table to font 10pt. Here is my coding /begin(table)(h) /resizebox(/textwidth)(!)(% /begin(tabular)(/l/l/l/l/l/) /hline & A & B & C & D //

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

Guide to using L A TEX

Guide to using L A TEX Guide to using L A TEX Andrew Stevens, UC Berkeley 1 What is L A TEX, and why use it? L A TEX (pronounced LAH-tekh or LAY-tekh) is a language and document preparation system for typesetting. L A TEX is

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

L A TEX for Psychological Researchers

L A TEX for Psychological Researchers L A TEX for Psychological Researchers Lecture 2: Basics of the L A TEX language Sacha Epskamp University of Amsterdam Department of Psychological Methods 10/04/2013 Outline Last Week The L A TEX Language

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

An Introduction to L A TEX

An Introduction to L A TEX An Introduction to L A TEX Ryan C. Trinity University Math Majors Seminar September 12, 2017 What is L A TEX? L A TEX is a typesetting system/language used for the production of technical (mathematical)

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

Latex Tutorial 1 L A TEX. 1.1 Text

Latex Tutorial 1 L A TEX. 1.1 Text Latex Tutorial This tutorial was originally prepared by Joel Wein of MIT. You may find it helpful in preparing your notes. Anything I send you in the template file supercedes what is written here. Yishay

More information

L A TEX examples. a b c a b c b b a c b c c b a. This table was typeset with the following commands.

L A TEX examples. a b c a b c b b a c b c c b a. This table was typeset with the following commands. L A TEX examples 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. After you have

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

LATEX Primer. 1 Introduction (Read Me)

LATEX Primer. 1 Introduction (Read Me) LATEX Primer 1 Introduction (Read Me) This document is intended to be used as a primer. You are welcome to remove the body of the document and use the headers only. If you actually read this document,

More information

My Mathematical Thesis

My Mathematical Thesis My Mathematical Thesis A. Student September 1, 2018 Abstract An abstract is a paragraph or few that gives the reader an overview of the document. Abstracts are commonly found on research articles, but

More information

A Very Brief Introduction to L A T E X MAT 3535

A Very Brief Introduction to L A T E X MAT 3535 A Very Brief Introduction to L A T E X MAT 3535 Wm C Bauldry BauldryWC Spring Semester, 2006 Wm C Bauldry (BauldryWC) A Very Brief Introduction to LAT E X MAT 3535 Spring Semester, 2006 1 / 19 Topics 1

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

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

The basics of LaTeX. Cédric Buron. April 25, 2016

The basics of LaTeX. Cédric Buron. April 25, 2016 The basics of LaTeX Cédric Buron April 25, 2016 Hello fellows! Today, I introduce a very important language in my PhD, L A TEX(what a logo!). In this article, I m going to introduce very quickly the purpose,

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

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

Alex Milbrand. September 8, Graduate Student Seminar. Introduction to L A TEX. Alex Milbrand. History. Software. Basic Set-Up and Construction

Alex Milbrand. September 8, Graduate Student Seminar. Introduction to L A TEX. Alex Milbrand. History. Software. Basic Set-Up and Construction to L A TEX Graduate Student Seminar September 8, 2017 Table of Contents 1 2 3 4 5 6 7 8 9 TEX created by Donald E. Knuth, released in 1978 L A TEX created by Leslie Lamport, released in 1985 After version

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

Creating Tables and Figures with L A T E X

Creating Tables and Figures with L A T E X Creating and with L A T E X Ricky Patterson bit.ly/latex 5 Oct 2016 Ricky Patterson and in LAT E X 5 Oct 2016 1 / 23 Outline Introduction picture environment Importing Graphics Ricky Patterson and in LAT

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

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

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

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Aravind Ranganathan Graduate Assistant Engineering Library University of Cincinnati r.aravind@gmail.com Workshop Objectives Introduction to L A TEX Hands-on Hello World! Basic Document

More information

LATEX and Beamer. L A TEX and Beamer. Software Freedom Day, Indian Statistical Institute, Kolkata. September 16, 2011.

LATEX and Beamer. L A TEX and Beamer. Software Freedom Day, Indian Statistical Institute, Kolkata. September 16, 2011. L A TEX and Beamer Software Freedom Day, Indian Statistical Institute, Kolkata. September 16, 2011. Outline 1 An introduction to L A TEX 2 Writing documents in L A TEX 3 Beamer in a nutshell 4 Where to

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

L A TEX Primer. Randall R. Holmes. August 17, 2018

L A TEX Primer. Randall R. Holmes. August 17, 2018 L A TEX Primer Randall R. Holmes August 17, 2018 Note: For this to make sense it needs to be read with the code and the compiled output side by side. And in order for the compiling to be successful, the

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

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