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

Size: px
Start display at page:

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

Transcription

1 A Beginner s guide to L A TEX for CSCA67/MATA67 Kohilan Mohanarajan August 31, 2017

2 Contents 1 Foreword 2 2 Getting Started 3 3 Setting up your L A TEXDocument 4 4 Writing your L A TEXDocument Environments Math, and its symbols Equations and Operators Symbols Writing proofs Other useful L A TEXfeatures Making Lists Styling Justification Making Tables Helpful Resources + Afterword 12 1

3 Chapter 1 Foreword This document references Tobias Oetiker s The Not So Short Introduction to L A TEX 2, which you should refer to if you want to learn more about L A TEX and its capabilities. This document serves to be a verbose starter s guide to writing your own L A TEX Documents with respects to what s needed for CSCA67/MATA67. L A TEX is a wonderful resource that not all students take advantage of, and will help you produce beautiful, wonderfully-formatted documents that give off an air of professionalism. As a TA or Professor marking or looking over your submitted work, having documents made in a basic text editor like Microsoft Office Word or Google Docs tends to be an eyesore. As such, being presented with a L A TEX-formatted document is much nicer in comparison. With L A TEX, you ll have access to a lot of the symbols and structuring you ll need for CSCA67/MATA67. Hopefully, the skills you learn here will carry on into your future both at UTSC, and beyond. 2

4 Chapter 2 Getting Started This section assumes that you haven t set up your working environment yet. If you have, move onto the Setting up your L A TEX Document There are multiple methods of working on L A TEX Documents. One of the most commonly-used methods is Downloading the L A TEX software from the official project website, and then downloading a L A TEX editor, such as Texmaker. You could also sign up for websites such as Overleaf or ShareLaTeX, which offers all the amenities of L A TEX without having to install anything. Once you ve set up your working environment, it s as simple as clicking Create a new document 1 1 Not all L A TEX editors have something that says this verbatim, but you get the idea. 3

5 Chapter 3 Setting up your LATEX Document There are several things you should consider including in the header of your.tex file when making your document. All L A TEX-formatted documents will have most, if not all of these lines in their headers. These are as follows: 1. \documentclass[11pt]{article} This identifies the document class, as well as the font size for your document. For this example document, we are creating an article with font size 11pt. For a full list of L A TEX classes, you can use this reference. Here are some common document classes: article: The most common document class, and the class that you ll most likely be using for your CSCA67/MATA67 documents. book: Formatting for a book. This, as well as the report class have access to \chapter{}, which works similarly to \section. report: Formatting that works similarly to the book class. slides: Formatting for presentation slides. 2. \usepackage{amsmath, amsfonts, amsthm, amssymb, hyperref} This line details the packages that you ll be using throughout your document. L A TEX offers the ability to import packages to help you construct your document to your liking. For CSCA67/MATA67, you will most definitely need the amsmath, amsfonts, amsthm, and amssymb in order to have access to the mathematical symbols and operators that you ll be encountering in the course. Some other useful packages you might need are: hyperref: This allows you to use Hyperlinks inside of your document. 4

6 LaTeX Basics CHAPTER 3. SETTING UP YOUR L A TEX DOCUMENT geometry: This allows you to change the page layout, such as margins and page length. graphicx: This allows you to import images into your document. fancyhdr: This allows for headers and footers. color: This allows for color. 3. \title{csca67/mata67 Exercise ##} This is the title of your document. If you use this line, and then the \maketitle line, you can create a title page for your document. 4. \author{joseph Joestar} This line details who the author is. Like \title{}, if used before \maketitle, it will be included on a cover page for your document. 5. \begin{document} This starts your document. Anything written in your document will come after this line, otherwise, it ll be considered part of the header. As with any \begin{} statement, make sure that you include a \end{document} at the very end of your.tex file to signify the end of your document. 6. \tableofcontents This creates an auto-generated table of contents at the beginning of your document. This will automatically recognize any \section{}, \subsection{}, \subsubsection{}, \chapter, and other tags that signify a new section, and include them, omitting you from having to manually create it yourself. 7. \newpage Creates a new page. Useful for page breaks. Once you ve included these lines, you re ready to get going with your document. In the next section, we ll go over formatting and writing your document. 5

7 Chapter 4 Writing your LATEX Document Now that you ve set up your L A TEX document, it s time to work on it! This section will go over necessary parts of your general L A TEX document that you will need over the course of the next four months. 4.1 Environments A key part of writing a L A TEX document is using environments. Even from the very beginning, you re already wrapping your content in the environment \begin{document} and \end{document}. By wrapping your content in these environments, you can modify attributes, such as margins and justification, but also set your content to be styled in a specific manner. To open and close an environment, you would use the tags \begin{} and \end{}. 4.2 Math, and its symbols When writing your basic equation, you can write it inline using $1+1=2$, or center it on its own line like this: y = mx + b To do this, you would write your equation within two square brackets : \[y=mx+b] Another way you you could do this is: \begin{equation*} y=mx+b \end{equation*} Note: If we use equation instead of equation*, we can label our equation with a number, which we can refer to later on, like such: y = mx + b (4.1) 6

8 LaTeX Basics CHAPTER 4. WRITING YOUR L A TEX DOCUMENT To create a multiple-step equation, you would do the following: \begin{eqnarray*} \sum_{i=0}^{3} i &=& \\ &=& 6 \end{eqnarray*} While in an equation environment, you will need to use \textrm{sample text} to write normally, otherwise your text will be squishedtogether. For CSC/MATA67, you re going to need an assortment of mathematical symbols as well, which can be written both inline, as well as within an environment Equations and Operators Sigma/Summation ( n i=0 ): \sum_{i=0}^{n} Integration ( x2 dx): \int_{-\infty}^{\infty} x^{2} dx Fractions ( x y ): \frac{x}{y} Modulus (a mod b): a \bmod b Equivalence (a b): a \equiv b Square Root ( 4): \sqrt{4} Greater than (3 > 2): 3 > 2 Less than (3 < 4): 3 < 4 Greater than or Equal to (x 2): x \geq 2 Less than or Equal to (x 4): x \leq 4 Logarithms (7 log n): 7 \log n Limits (lim n ): \lim_{n\rightarrow \infty} And (x n): x \land n Or (x n): x \lor n Not ( x): \neg x Implication (x n): x \rightarrow n If and only if (x n): x \leftrightarrow n Logical Implication (x n): x \Rightarrow n 7

9 LaTeX Basics CHAPTER 4. WRITING YOUR L A TEX DOCUMENT Logical Equivalence (x n): x \Leftrightarrow n In (x N): x \in \mathbb N Not in (x N): x \not \in \mathbb N Subset (x N): x \subseteq \mathbb N For All ( x N): \forall x \in \mathbb N There exists ( x N): \exists x \in \mathbb N Union (x n): x \cup n Intersection (x n): x \cap n Symbols π: \pi : \emptyset N: \mathbb N R: \mathbb R Q: \mathbb Q Z: \mathbb Z Θ: \Theta : \Delta δ: \delta When writing a piecewise function, by typing \begin{equation*} f(n) = \left\{\begin{array}{cl} 0 & \textrm{if } n = 0\\ 1 & \textrm{if } n = 1\\ f(n-1) + f(n-2) &\textrm{if } n\geq 2 \end{array} \right. \end{equation*} you can get 0 if n = 0 f(n) = 1 if n = 1 f(n 1) + f(n 2) if n 2 8

10 LaTeX Basics CHAPTER 4. WRITING YOUR L A TEX DOCUMENT Writing proofs When writing proofs, there are certain elements to consider. For instance, if you want to write out a Theorem, including \textsc{theorem} will create a Theorem tag. Do note that for proofs, a proof environment exists. Here s a simple example proof, along with the L A TEX code that makes it: PROVE: For all integers n, if n 2 is odd, then n is odd. Proof. Suppose the contrapositive: For all integers n, if n is even, then n 2 is even. Assume n is even. There exists j in the integers such that n = 2j. Consider n 2 = (2j) 2 = 4j 2. Given that 4 is a multiple of 2, n 2 is even, as wanted. The code behind this proof: \begin{proof} Suppose the contrapositive: \begin{center} For all integers $n$, if $n$ is even, then $n^{2}$ is even. \end{center} Assume $n$ is even. There exists $j$ in the integers such that $n = 2j$.\\ Consider $n^{2} = (2j)^{2} = 4j^{2}$. Given that 4 is a multiple of 2, $n^{2}$ is even, as wanted. \end{proof} 4.3 Other useful L A TEX features Making Lists Creating an unordered list: \begin{itemize} \item this is an item in the list \end{itemize} this is an item in the list Creating an ordered list: \begin{enumerate} \item this is an item in the list \end{enumerate} 1. this is an item in the list 9

11 LaTeX Basics CHAPTER 4. WRITING YOUR L A TEX DOCUMENT Nesting lists: \begin{itemize} \item this is an item in the list \begin{enumerate} \item this is an item in the nested list \end{enumerate} \end{itemize} this is an item in the list 1. this is an item in the nested list Styling Bold: \textbf{bold} Italic: \textit{italic} Underline: \underline{underline} Small Caps: \textsc{small Caps} Typewriter: \texttt{typewriter} Captioning: \caption{this is a caption} Note: This is to be used after environments and figures Omitting indents: \noindent Creating new paragraphs: \par Adding horizontal space: \space The L A TEX logo: \LaTeX Footers: \footnote{this is footer text} Justification Left Justification: \begin{flushleft} This item is to the left of the page \end{flushleft} 10

12 LaTeX Basics CHAPTER 4. WRITING YOUR L A TEX DOCUMENT This item is to the left of the page Right Justification: \begin{flushright} This item is to the right of the page \end{flushright} This item is to the right of the page Centering: \begin{center} This item is in the center of the page \end{center} Making Tables Tables are made in environments, like so: This item is in the center of the page \begin{tabular}{ l l c } \hline Column 1 & Column 2 & Column 3\\ \hline 1 & 1 & 1\\ \hline \end{tabular} This creates the following table: Column 1 Column 2 Column The second set of brackets determines the amount of columns, as well as their justification. By including, you can set vertical lines between the columns of the table. For instance, {lr c} will give you three columns, the first being left-justified, the second being right-justified, and the last being centered, with there being a vertical line between the second and third line. Note that without on the outside of your set of columns, your table will not have vertical borders. The tag \hline creates a horizontal line. You will need two \hline at the beginning and end of your table environment if you want your table to have horizontal borders. 11

13 Chapter 5 Helpful Resources + Afterword Unfortunately, this small guide is not able to cover the multitude of features and capabilities that L A TEX has in store. If you want to know more about L A TEX s features, consider the following resources that may be able to help you: ShareL A TEX s official documentation A L A TEX tutorial module Tobias Oetiker s The Not So Short Introduction to L A TEX 2 If there are any errors in this document, or you have any suggestions, please feel free to contact me at kohilan.mohanarajan@mail.utoronto.ca. Editing this document will only make it more helpful in the future, so any help is much appreciated. 12

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

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

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

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

Useful L A TEX Commands

Useful L A TEX Commands Useful L A TEX Commands David Woods dwoods@scss.tcd.ie Document Classes These will come at the beginning of the document, generally the very first line. Use \begin{document} to start adding content, and

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

Math 235: Introduction to LaTeX

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

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX 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

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

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

CSE 150: Notation Examples

CSE 150: Notation Examples CSE 150: Notation s Leif Walsh December 12, 2007 For most of the following, you will need to include amsmath, amsfonts, amsthm, and sometimes amssymb in your source, by putting the \usepackage{amsmath}

More information

Basics. Options. Commands

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

More information

Learning LaTeX: The Basics

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

More information

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

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

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

Typesetting Text. Spring 2013 TEX-Bit #1 Math 406

Typesetting Text. Spring 2013 TEX-Bit #1 Math 406 Spring 2013 TEX-Bit #1 Math 406 Typesetting Text Whitespace characters, such as blank or tab, are treated uniformly as space by L A TEX. Several consecutive whitespace characters are treated as one space.

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

L A TEXInstallation and Introduction

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

More information

LAT E X week 2: Basics for Writing a Document

LAT E X week 2: Basics for Writing a Document L A T E X week 2: Basics for Writing a Document University of California Berkeley September 13, 2007 Example Latex Document \documentclass{class here} \usepackage{package 1,package 2} \setlength{\oddsidemargin}{0in}

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

Paul Gartside. March 2, 2013

Paul Gartside. March 2, 2013 SIAM L A TEX Workshop: First Steps Paul Gartside March 2, 2013 1 Introduction Today you are going to take the first steps in learning how to create beautiful mathematical documents using L A TEX (or 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

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

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

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

More information

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

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

A Short Introduction to L A TEX

A Short Introduction to L A TEX A Short Introduction to L A TEX David J. Eck October 22, 2003 Abstract This paper is a very short introduction to the essentials of L A TEX, a document-preparation system that is an alternative to typical

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

A Grasshopper s Approach to L A TEX

A Grasshopper s Approach to L A TEX A Grasshopper s Approach to L A TEX JHB Deane and S Reich Updated by PJ Aston February 1, 2011 Contents 1 Introduction 2 2 Winshell 2 2.1 Editor Commands..................................... 2 2.2 Processing

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

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

Course A, Part 1 Basic Formatting in L A TEX

Course A, Part 1 Basic Formatting in L A TEX Course A, Part 1 Basic Formatting in L A TEX As you become acquainted with L A TEX, you must remember that this is not a piece of word processing software. Neither is it a programming language. Specifically,

More information

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

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

More information

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

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

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

simpletex Documentation

simpletex Documentation simpletex Documentation Release v0.2.1 Samuel Li Aug 06, 2018 Contents 1 Getting Started 3 2 API Documentation 11 Python Module Index 17 i ii simpletex is a Python library for automatically generating

More information

A Brief Introduction to LaTeX

A Brief Introduction to LaTeX A Brief Introduction to LaTeX Paul Gustafson (shamelessly stolen from Robert Williams) Texas A&M University June 2, 2017 Paul Gustafson (shamelessly stolen from Robert Williams) A Brief (Texas Introduction

More information

Mikkel Madsen

Mikkel Madsen Mikkel Madsen latex@mikkl.dk Today Recap from lecture 1 Sections, figures, tables, equations, multiple files TechnicCenter demonstration Navigating a large report Compiling New material Bold, italic, fontsize

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

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

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

MATLAB for the Sciences

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

More information

L A TEX Workshop. Don Brower

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

More information

Introduction to L A TEX

Introduction to L A TEX A very short Introduction to L A TEX Florence Débarre UBC Delta Tea April 2012 Outline 1 General philosophy 2 The source document Preamble Structure Paragraphes Images Tables Equations Languages Customization

More information

A Beginner s Guide to LATEX. Last Revised: August 21, 2013

A Beginner s Guide to LATEX. Last Revised: August 21, 2013 A Beginner s Guide to LATEX Last Revised: August 21, 2013 Thanks In the (ongoing) creation of this document, I ask a lot of people for feedback and input. Some of them are classmates (past or present)

More information

Introduction to LaTeX. Christoph Pickl

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

More information

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

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

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

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

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

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

More information

A quick guide to L A TEX

A quick guide to L A TEX A quick guide to L A TEX L A TEX is more of a programming language. The text you produce in your input file will look almost completely different from the final result in print. This requires knowledge

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

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

Getting Funky: Headers, Tables, Abstracts etc.

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

More information

An 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

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

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

More information

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

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

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

LaTeX in SLATE. Common Symbols. 1. Subscripts & Superscripts Fractions & Roots. 4. Brackets.. 5. Multiline Formulas.. 6. Matrices..

LaTeX in SLATE. Common Symbols. 1. Subscripts & Superscripts Fractions & Roots. 4. Brackets.. 5. Multiline Formulas.. 6. Matrices.. LaTeX in SLATE Common Symbols. 1 Subscripts & Superscripts... 3 Fractions & Roots. 4 Brackets.. 5 Multiline Formulas.. 6 Matrices.. 7 Limits & Integrals. 8 l LaTeX Common Symbols Operations \times \div

More information

Introduction to L A TEX

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

More information

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

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

Part - I : Short Course Typing Text

Part - I : Short Course Typing Text Part - I : Short Course Sanjay Mishra Department of Mathematics Lovely Professional University Punjab, India June 14, 2012 Outline 1 Introduction The Keyboard Your First Note Lines too Wide More Text Features

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

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

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

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

Writing Mathematics in L A TEX by Example

Writing Mathematics in L A TEX by Example Writing Mathematics in L A TEX by Example Jason B. Hill University of Colorado Boulder Wednesday, October 31, 2008 Currently available in PDF, DVI and TEX formats at http://euclid.colorado.edu/ hilljb/latex/

More information

Getting Started with L A TEX

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

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Javier Larrosa UPC Barcelona Tech November 2, 2016 Observation: I have never studied L A TEX. I have learned just what I have needed and forgotten quickly Javier Larrosa (UPC Barcelona

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

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

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

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

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

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

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

More information

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

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

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

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

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

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

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Evan Parker-Stephen September 21, 2006 1 Download and Installation http://www.miktex.org (L A TEX for Windows) http://www.winedt.com (Text Editor) http://www.tug.org (TEX User Group)

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

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

Guide to L A TEX. Daniel M. Kane

Guide to L A TEX. Daniel M. Kane Guide to L A TEX Daniel M. Kane 1 Overview TEXis a typesetting program developed by Donald Knuth. L A TEXwas an extension of TEXcreated by Leslie Lamport, making a number of operations considerably easier.

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

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

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

The Joys of L A T E X

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

More information

L A TEX Introduction. 1 Basic Resources: Melissa Desjarlais (amended by Dr. Dena Morton)

L A TEX Introduction. 1 Basic Resources: Melissa Desjarlais (amended by Dr. Dena Morton) L A TEX Introduction Melissa Desjarlais (amended by Dr. Dena Morton) Abstract We showcase some L A TEX typesetting. Additionally, we give resources for further exploration of typesetting mathematics and

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

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

Just Enough L A TEX, Week 4

Just Enough L A TEX, Week 4 Just Enough L A TEX, Week 4 1 1 Department of Mathematics Michigan State University East Lansing, MI USA weil@math.msu.edu October 24, 2008 Typesetting Fractions The basic command to produce a fraction

More information