Formatting with LaTeX

Size: px
Start display at page:

Download "Formatting with LaTeX"

Transcription

1 Formatting with LaTeX Zuyuan Wang School of Mechanical Engineering Purdue University June 23, 2016 SURF 2016

2 About the SURF GAs Formatting with LaTeX (02/35) 06/23/2016 Purdue University Zuyuan Wang

3 Formatting with LaTeX (03/35) 06/23/2016 Purdue University Zuyuan Wang About the speaker 08/ / / / / / / present

4 Formatting with LaTeX (04/35) 06/23/2016 Purdue University Zuyuan Wang Outline What is LaTeX? History, work flow Why LaTeX? Choosing the appropriate tool, MS Word v.s. LaTeX How to use LaTeX? Installing LaTeX packages on Windows and Mac: Some instructions General matter: Document type, page size, page layout, base font size, packages Front matter: Title, author(s), affiliation(s), date Main matter: Chapter, section, subsection, subsubsection Abstract, introduction, method, results and discussion, conclusions, acknowledges Paragraph, list, special font/symbol, verbatim Figure, table, equation, reference, hyperlink Appendix: Special chapters of supplemental information (not covered) Some tips and useful resources Some tips: Use of comments and \end{document}, style of writing, file management, Google Useful resources: Books, websites

5 Formatting with LaTeX (05/35) 06/23/2016 Purdue University Zuyuan Wang Outline What is LaTeX? History, work flow Why LaTeX? Choosing the appropriate tool, MS Word v.s. LaTeX How to use LaTeX? Installing LaTeX packages on Windows and Mac: Some instructions General matter: Document type, page size, page layout, base font size, packages Front matter: Title, author(s), affiliation(s), date Main matter: Chapter, section, subsection, subsubsection Abstract, introduction, method, results and discussion, conclusions, acknowledges Paragraph, list, special font/symbol, verbatim Figure, table, equation, reference, hyperlink Appendix: Special chapters of supplemental information (not covered) Some tips and useful resources Some tips: Use of comments and \end{document}, style of writing, file management, Google Useful resources: Books, websites

6 What is LaTeX? TeX LaTeX Description: A typesetting language Description: A TeX macro package, Developer: Dr. Donald Knuth ( ) simplifying the use of TeX Professor Emeritus of Computer Developer: Dr. Leslie Lamport ( ) Science at Stanford University Computer Scientist at Initial release: 1978 Microsoft Research Stable release: (01/2014) Initial release: 1985 Expected release: π (after Dr. Knuth s death) Current release: LaTeX2e (10/01/2015) Website: Website: LaTeX source file (plain text) Compiler PDF output file (formatted document) References: Wikipedia. TeX. Donald Knuth. LaTeX. Leslie Lamport. Microsoft Office. Formatting with LaTeX (06/35) 06/23/2016 Purdue University Zuyuan Wang

7 Formatting with LaTeX (07/35) 06/23/2016 Purdue University Zuyuan Wang Outline What is LaTeX? History, work flow Why LaTeX? Choosing the appropriate tool, MS Word v.s. LaTeX How to use LaTeX? Installing LaTeX packages on Windows and Mac: Some instructions General matter: Document type, page size, page layout, base font size, packages Front matter: Title, author(s), affiliation(s), date Main matter: Chapter, section, subsection, subsubsection Abstract, introduction, method, results and discussion, conclusions, acknowledges Paragraph, list, special font/symbol, verbatim Figure, table, equation, reference, hyperlink Appendix: Special chapters of supplemental information (not covered) Some tips and useful resources Some tips: Use of comments and \end{document}, style of writing, file management, Google Useful resources: Books, websites

8 Formatting with LaTeX (08/35) 06/23/2016 Purdue University Zuyuan Wang Why LaTeX? --- Choosing the appropriate tool Drawing a gas turbine Formatting a document Can we draw a gas turbine with PowerPoint? Yes. Should we draw a gas turbine with PowerPoint? Probably No, because there are more advanced tools (e.g., SolidWorks, Pro/E) for this purpose. Can we format this document with MS Word? Yes. Should we format this document with MS Word? Probably No, because LaTeX could be a better option for this purpose.

9 Why LaTeX? --- MS Word v.s. LaTeX Components of writing a document: Author: Prepare contents, e.g., texts, figures, tables, equations, references, etc. Designer: Design page layout, margins, headers, footers, page numbers, etc. Typewriter: Specify font size, font style, line spacing, layout/numbering/cross-referencing of figures/tables/equations/references, etc. MS Word v.s. LaTeX: MS Word: Author + Designer + Typewriter LaTeX: Author + Partly Designer + Partly Typewriter LaTeX effectively separates content from formatting. The author focuses on the content. LaTeX takes care of the formatting via the many environments, which are well designed by many smart scientists and artists. Formatting with LaTeX (09/35) 06/23/2016 Purdue University Zuyuan Wang

10 Why LaTeX? --- MS Word v.s. LaTeX MS Word Advantages: Easy to learn WYSIWYG Large user group (> 1 billion) Disadvantages: Not free Poor file compatibility Large file size Hard to deal with large files (prone to crash) what-is-the-best-toolkit-for-writing-long-technical-texts LaTeX Advantages: Free and open-source Professional documents Small file size Easy to modify file types Easy to deal with large files (barely crash) Good file management Disadvantages: Steep learning curve Hard to customize (trust) Small user group (< 1 million) Formatting with LaTeX (10/35) 06/23/2016 Purdue University Zuyuan Wang

11 Formatting with LaTeX (11/35) 06/23/2016 Purdue University Zuyuan Wang Outline What is LaTeX? History, work flow Why LaTeX? Choosing the appropriate tool, MS Word v.s. LaTeX How to use LaTeX? Installing LaTeX packages on Windows and Mac: Some instructions General matter: Document type, page size, page layout, base font size, packages Front matter: Title, author(s), affiliation(s), date Main matter: Chapter, section, subsection, subsubsection Abstract, introduction, method, results and discussion, conclusions, acknowledges Paragraph, list, special font/symbol, verbatim Figure, table, equation, reference, hyperlink Appendix: Special chapters of supplemental information (not covered) Some tips and useful resources Some tips: Use of comments and \end{document}, style of writing, file management, Google Useful resources: Books, websites

12 How to use LaTeX? --- Installing LaTeX package (TeXworks) Formatting with LaTeX (12/35) 06/23/2016 Purdue University Zuyuan Wang

13 How to use LaTeX? --- Underlying Mechanism of LaTeX Formatting Formatting with LaTeX (13/35) 06/23/2016 Purdue University Zuyuan Wang S U R F

14 How to use LaTeX? --- Basic components of LaTeX source files Space: Spacebar, tab, \\ (line break), \newline (new line), \newpage (new page); \hspace{value} (horizontal space), \vspace{value} (vertical space); $\quad$, $\;$, $\!$, $\,$, etc. (space in mathematical expressions). Commands: Preceded by a backslash \, such as \textit{italic texts}, which produces italic texts. Could take no or some required and/or optional arguments. Many available environments \begin{ } \end{ }, similar to HTML. Contents: Including texts, mathematical expressions, figures, tables, references, appendices, headers, footers, page numbers, etc. Comments: Preceded by a percentage sign %. Formatting with LaTeX (14/35) 06/23/2016 Purdue University Zuyuan Wang

15 How to use LaTeX? --- General structure of LaTeX source files Formatting with LaTeX (15/35) 06/23/2016 Purdue University Zuyuan Wang % General information about the file: This is my first LaTeX file. % The purpose is to show what a LaTeX file looks like. % Created by Zuyuan Wang, 06/23/2016. \documentclass[option, option, ]{class} % Preamble: List packages, declarations, new commands/environments, etc. \begin{document} % Front matter: Title, author(s), affiliation(s), date, etc. % Main matter: Texts, equations, figures, tables, references, etc. % Appendix: Additional information \end{document} % Ignored content

16 How to use LaTeX? --- Document class \documentclass[option, option, option, ]{class} Document classes: Class options: Article: Report: Book: Letter: Slides: 10pt, 11pt, 12pt: twocolumn: titlepage: leqno: fleqn: twoside: openright: for simple or short documents, including journal articles, and short reports. A good all-purpose class. for small books and longer reports containing chapters. for books. for letters, either business or personal. for making transparencies for projection on a screen. Specify the font size for the main text. The default is 10pt. Produces two-column pages. Causes the \maketitle to generate the title page on a separate page for the article class. Default for the book and report classes. Puts equation numbers on left side. They are on the right by default. Left-aligns equations. They are centered by default. Formats for printing on both sides of paper. Default for the book class, but not for any of the other classes. If the twoside option is used, chapters will begin on right hand pages. Default for the book class. The opposite of openright is openany. Formatting with LaTeX (16/35) 06/23/2016 Purdue University Zuyuan Wang

17 How to use LaTeX? --- Exercise 1: Hello World! Formatting with LaTeX (17/35) 06/23/2016 Purdue University Zuyuan Wang Compare your output file with the provided output file.

18 How to use LaTeX? --- Preamble Placed between \documentclass and \begin{document}. Affects the entire document. Possible contents: Packages: e.g., \usepackage {amsmath} (for mathematical expressions), \usepackage{graphicx} (for figures), \usepackage{hyperref} (for hyperlinks); New commands: e.g., \renewcommand{\thesection}{\roman{section}} (for redefining section numbering); Declarations: e.g., \centering (for center-aligning the entire document). Formatting with LaTeX (18/35) 06/23/2016 Purdue University Zuyuan Wang

19 How to use LaTeX? --- Front matter Placed right after \begin{document}. Put \maketitle after \begin{document} and before the other texts to generate the front matter. Possible contents: Title, author(s), affiliation(s), date, etc. % Front matter: Title, author(s), affiliation(s), date \title{2016 Summer Undergraduate Research Fellowship (SURF) Program} \author{zuyuan Wang} \date{june 23, 2016} Formatting with LaTeX (19/35) 06/23/2016 Purdue University Zuyuan Wang

20 How to use LaTeX? --- Main matter --- Organization of contents Formatting with LaTeX (20/35) 06/23/2016 Purdue University Zuyuan Wang Use the star version (e.g., \section*{2016 SURF}) to remove numbering.

21 How to use LaTeX? --- Main matter --- References Formatting with LaTeX (21/35) 06/23/2016 Purdue University Zuyuan Wang The thebibliography Environment: The option specifies the maximum number of references. Each reference is entered with a \bibitem{label}. Cite the reference by using ~\cite{ref:example}.

22 Formatting with LaTeX (22/35) 06/23/2016 Purdue University Zuyuan Wang How to use LaTeX? --- Main matter --- Mathematical expressions In-line mode: $...$ Display mode: \begin{equation} \end{equation} Cite the equation by using ~\ref{eq:1d_heat}. Use Google to figure out specific usages.

23 How to use LaTeX? --- Exercise 2: An Introduction to Purdue University (1) Formatting with LaTeX (23/35) 06/23/2016 Purdue University Zuyuan Wang

24 How to use LaTeX? --- Exercise 2: An Introduction to Purdue University (2) Formatting with LaTeX (24/35) 06/23/2016 Purdue University Zuyuan Wang

25 How to use LaTeX? --- Exercise 2: An Introduction to Purdue University (3) Formatting with LaTeX (25/35) 06/23/2016 Purdue University Zuyuan Wang

26 How to use LaTeX? --- Exercise 2: An Introduction to Purdue University (4) Formatting with LaTeX (26/35) 06/23/2016 Purdue University Zuyuan Wang Compare your output file with the provided output file.

27 Formatting with LaTeX (27/35) 06/23/2016 Purdue University Zuyuan Wang How to use LaTeX? --- Main matter --- Figures Package: \usepackage{graphicx} Cite the figure by using ~\ref{fig:fig1_purduecampus}.

28 How to use LaTeX? --- Main matter --- Tables Formatting with LaTeX (28/35) 06/23/2016 Purdue University Zuyuan Wang LaTeX Table Generator: Cite the table by using ~\ref{table:purdue_facts}.

29 How to use LaTeX? --- Exercise 3: Writing a Research Paper with LaTeX (1) Formatting with LaTeX (29/35) 06/23/2016 Purdue University Zuyuan Wang

30 How to use LaTeX? --- Exercise 3: Writing a Research Paper with LaTeX (2) Formatting with LaTeX (30/35) 06/23/2016 Purdue University Zuyuan Wang

31 How to use LaTeX? --- Exercise 3: Writing a Research Paper with LaTeX (3) Formatting with LaTeX (31/35) 06/23/2016 Purdue University Zuyuan Wang Finish formatting the remaining parts of the document, and compare your output file with the provided output file.

32 Formatting with LaTeX (32/35) 06/23/2016 Purdue University Zuyuan Wang Outline What is LaTeX? History, work flow Why LaTeX? Choosing the appropriate tool, MS Word v.s. LaTeX How to use LaTeX? Installing LaTeX packages on Windows and Mac: Some instructions General matter: Document type, page size, page layout, base font size, packages Front matter: Title, author(s), affiliation(s), date Main matter: Chapter, section, subsection, subsubsection Abstract, introduction, method, results and discussion, conclusions, acknowledges Paragraph, list, special font/symbol, verbatim Figure, table, equation, reference, hyperlink Appendix: Special chapters of supplemental information (not covered) Some tips and useful resources Some tips: Use of comments and \end{document}, style of writing, file management, Google Useful resources: Books, websites

33 Some tips Formatting with LaTeX (33/35) 06/23/2016 Purdue University Zuyuan Wang (1) Read a few documents on LaTeX before getting started; (2) Learn LaTeX through using it in real settings; (3) Use templates if available; (4) Use comments (preceded by % ) or the \end{document} to format a document part by part; (5) Use Google to find out solutions to problems or errors; (6) Focus on the outcome of formatting; (7) Keep a style of writing and file management.

34 Useful resources Formatting with LaTeX (34/35) 06/23/2016 Purdue University Zuyuan Wang [1] Allin Cottrell, A Short Introduction to LaTeX. (12/1995, 8 pages). [2] Michael Downes, Short Math Guide for LaTeX. (v1.09, 03/22/2002, 17 pages). ftp://ftp.ams.org/pub/tex/doc/amsmath/short-math-guide.pdf. [3] Text Formatting with LaTeX: A Tutorial. (2007, 62 pages). [4] Tobias Oetiker, Hubert Partl, Irene Hyna, and Elisabeth Schlegl. The Not So Short Introduction to LaTeX 2e. (v5.05, 07/18/2015, 171 pages). [5] Nicola L. C. Talbot, LaTeX for Complete Novices. (v1.4, 09/25/2012, 273 pages). [6] Scott Pakin, The Comprehensive LaTeX Symbol List. (11/30/2015, 331 pages). [7]

35 Formatting with LaTeX (35/35) 06/23/2016 Purdue University Zuyuan Wang Thank you Q & A wang1707@purdue.edu

CS 189 L A TEX and Linux: Document Layout and Organization

CS 189 L A TEX and Linux: Document Layout and Organization CS 189 L A TEX and Linux: Document Layout and Organization (1) Robert S. Laramee Computer Science Department School of Physical Sciences Swansea University February 14, 2008 (1) Robert S. Laramee CS 189

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

Introduzione a LaTex. Fabrizio Messina

Introduzione a LaTex. Fabrizio Messina Introduzione a LaTex Fabrizio Messina messina@dmi.unict.it www.dmi.unict.it/~fmessina Tex and LaTex TEX is a formatting program created by Donald E. Knuth from 1977. Typesetting text and mathematical formulae.

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

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

A Brief Introduction to L A TEX

A Brief Introduction to L A TEX A Brief Introduction to L A TEX Amanda Kriesel Metropolitan Community College, Nebraska akriesel@mccneb.edu April 7, 2016 Amanda Kriesel (MCC) LaTex April 7, 2016 1 / 17 Table of Contents 1 What is L A

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

How to Prepare Your Paper in L A T E X for IOE Graduate Conference 2017

How to Prepare Your Paper in L A T E X for IOE Graduate Conference 2017 Proceedings of IOE Graduate Conference, 2017 pp. 1 5 How to Prepare Your Paper in L A T E X for IOE Graduate Conference 2017 Jayandra Raj Shrestha a, Binod Kumar Bhattarai b, Arun Kumar Timalsina c a,

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

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

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

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

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

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

More information

An 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

An Introduction to LATEX

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

More information

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

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

More information

The ohio-etd template for Electronic Theses and Dissertations at Ohio University

The ohio-etd template for Electronic Theses and Dissertations at Ohio University The ohio-etd template for Electronic Theses and Dissertations at Ohio University Michael Stepaniak ms191305@ohio.edu May 10, 2011 Abstract The ohio-etd class provides a L A TEX 2ε template for electronic

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

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

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

Introduction to Latex. A workshop by Dr. Ala Eshmawi

Introduction to Latex. A workshop by Dr. Ala Eshmawi Introduction to Latex A workshop by Dr. Ala Eshmawi Introduction TeX is essentially a Markup Language (like HTML, XML and RTF) TeX written by Donald Knuth in 70 s A revolution in typesetting Latex is an

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

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

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

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

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. MA2730: Analysis I. Lecture slides for MA2730 Analysis I. Study and Assessment Components. MA L A TEX: topics for Lecture 1

Lecture 1. MA2730: Analysis I. Lecture slides for MA2730 Analysis I. Study and Assessment Components. MA L A TEX: topics for Lecture 1 Contents of the teaching and assessment blocks MA2730: Analysis I Lecture slides for MA2730 Analysis I Simon people.brunel.ac.uk/~icsrsss simon.shaw@brunel.ac.uk College of Engineering, Design and Physical

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

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

Using L A T E X for scientific writing

Using L A T E X for scientific writing Using L A T E X for scientific writing (part 1) www.dcs.bbk.ac.uk/~roman/latex Roman Kontchakov roman@dcs.bbk.ac.uk T E X and L A T E X T E X is a computer program created by Donald E. Knuth. It is aimed

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

L A TEX incollaboration

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

More information

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

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

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

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

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

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

(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

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

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

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 October 22, 2017 WYSIWYG Systems WYSIWYG

More information

WYSIWYG Systems. CSCM10 Research Methodology A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems.

WYSIWYG Systems. CSCM10 Research Methodology A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems. WYSIWYG Systems CSCM10 Research Methodology A Taster of L A TEX Anton Setzer http://www.cs.swan.ac.uk/ csetzer/lectures/ computerscienceprojectresearchmethods/current/index.html WYSIWYG = What You See

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

Meeting One. Aaron Ecay. February 2, 2011

Meeting One. Aaron Ecay. February 2, 2011 Meeting One Aaron Ecay February 2, 2011 1 Introduction to a L A TEX file Welcome to LaTeX. Let s start learning how to use the software by going over this document piece by piece. We ll read the output

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

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

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

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

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

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX 2. Document structure Markus Harju Mathematical Sciences 2. Document structure Johdatus LaTeXiin (2/12) a Document classes The basic document classes in L A TEX are article, report

More information

THIS IS AN INTRODUCTION TO. LaTeX. Introduction to Latex. University of Minnesota, November 7, 2016

THIS IS AN INTRODUCTION TO. LaTeX. Introduction to Latex. University of Minnesota, November 7, 2016 THIS IS AN INTRODUCTION TO LaTeX Introduction to Latex Jimmy Broomfield University of Minnesota, November 7, 2016 1 / Jimmy Broomfield Introduction to LaTeX 1/22 22 Outline Introduction Installation Getting

More information

L A T E X crash course

L A T E X crash course L A T E X crash (for PhDs) 1 1 Research group on Computational Geo-Ecology Instituut voor Biodiversiteit en Ecosysteem Dynamica Universiteit van Amsterdam June 26, 2010 Outline 1 2 What is L A T E X? 3

More information

The AES Convention Paper LATEX class Adam H. Lewenberg (October 18, 2008) 1

The AES Convention Paper LATEX class Adam H. Lewenberg (October 18, 2008) 1 1 Introduction The AES Convention Paper LATEX class Adam H. Lewenberg (October 18, 2008) 1 IMPORTANT CHANGE: Due to problems interacting with certain other L A TEXpackages, as of version 0.60 the AES Convention

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

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

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX 2. Document structure Matemaattisten tieteiden laitos Document classes The basic document classes in L A TEX are article, report and book. They are taken into use by starting the

More information

GROUP ASSIGNMENT. L A TEX Assignment 1/3

GROUP ASSIGNMENT. L A TEX Assignment 1/3 GROUP ASSIGNMENT L A TEX Assignment 1/3 GROUP ASSIGNMENT L A TEX Assignment 1/3 create a report in L A TEX about all the homework of the previous lectures the Report should have the following elements

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

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

Tools Course: Part 2

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

More information

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

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

More information

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

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

More information

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

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

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 TEX

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

More information

Introduction to L A TEX for MCS-236

Introduction to L A TEX for MCS-236 Introduction to L A TEX for MCS-236 Max Hailperin, based on a version by Tom LoFaro September 14, 2011 1 Why L A TEX? L A TEX is a very strange document formatting system. Actually, it is a combination

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

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

Outline. Installing LaTeX. Opening TeXShop. Intro to LaTeX. Intro to LaTeX interface Working with text Tabbing and tables Figures Math and equations

Outline. Installing LaTeX. Opening TeXShop. Intro to LaTeX. Intro to LaTeX interface Working with text Tabbing and tables Figures Math and equations Outline UCLA Department of Statistics Statistical Consulting Center interface Working with text Tabbing and tables Figures Math and equations April 23, 2009 Installation Installing LaTeX Opening TeXShop

More information

Introduction. LaTeX (pronounced lay-tech ) is a professional document preparation system.

Introduction. LaTeX (pronounced lay-tech ) is a professional document preparation system. Introduction LaTeX (pronounced lay-tech ) is a professional document preparation system. LaTeX refers to the language in which documents are written. TeX is a computer program that uses LaTeX. Numerous

More information

SOFTWARE ARCHITECTURE 4. TEXT FORMATTING SYSTEM

SOFTWARE ARCHITECTURE 4. TEXT FORMATTING SYSTEM 1 SOFTWARE ARCHITECTURE 4. TEXT FORMATTING SYSTEM Tatsuya Hagino hagino@sfc.keio.ac.jp slides URL https://vu5.sfc.keio.ac.jp/sa/login.php 2 Text Formatting System Text Formatting Print out document nicely

More information

T E X and L A T E X Document preparation tools

T E X and L A T E X Document preparation tools T E X and L A T E X Document preparation tools This lecture adds to the previous introduction to L A T E X, introduces BibT E X and looks at creating larger documents. Last time... The first session introduced:

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

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

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

Written & Oral Presentation: Computer Tools

Written & Oral Presentation: Computer Tools Written & Oral Presentation: Computer Tools Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 Course MATH-GA.2840-004, Spring 2018 February 7th, 2018 A. Donev (Courant Institute) Tools

More information

Introduction to LaTeX. Paul Fodor Stony Brook University

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

More information

Become a L A TEX Guru

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

More information

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

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

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

Introduction to L A T E X

Introduction to L A T E X to L A T E X Ricky Patterson Big Library 21 Sep 2016 Ricky Patterson Intro to LAT E X 21 Sep 2016 1 / 18 Outline A Basic L A T E X Document \documentclass Packages Caveats Formatting Some L A T E X Examples

More information

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

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

More information

L A TEX for psychological researchers

L A TEX for psychological researchers Kahoot! L A TEX for psychological researchers Lecture 1: Introducton Sacha Epskamp University of Amsterdam Department of Psychological Methods 27-01-2015 Contact Details Workshop website: http://sachaepskamp.com/latex-workshop

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

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass.

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass. TUTORIAL 3: MY FIRST L A TEX DOCUMENT CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to produce a very basic L A TEX document. This tutorial will introduce the

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

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

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

LATEX Workshop. Yi Liu Chen SUNY Geneseo PRISM Math Club. February 6, Wordmark Reversed Geneseo Wordmark Style Guide 4

LATEX Workshop. Yi Liu Chen SUNY Geneseo PRISM Math Club. February 6, Wordmark Reversed Geneseo Wordmark Style Guide 4 Yi Liu Chen SUNY Geneseo PRISM Math Club February 6, 2019 Outline L A TEX Environment The Basics Mathematics SUNY Geneseo PRISM Math Club 2 BDA/MBS and Math/Physics People People taking BDA (BIOL250) or

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

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

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

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

L A TEX From The Ground Up

L A TEX From The Ground Up L A TEX From The Ground Up Tim Schulte Albert-Ludwigs-Universität Freiburg Grundlagen der Künstlichen Intelligenz 9. November 2017 Why L A TEX? L A TEX is a document preparation system and markup language.

More information

Getting Started in L A TEX

Getting Started in L A TEX Getting Started in L A TEX Roy Martinez Tuesday May 7th, 2008 1 Welcome to L A TEX Welcome to L A TEX, this guide is designed to give you a quick crash course introduction to this great formating tool.

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

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