Introduction to L A TEX

Size: px
Start display at page:

Download "Introduction to L A TEX"

Transcription

1 Introduction to L A TEX John McCleary Vassar College 17 September 2013

2 When the first volume of Donald Knuth s The Art of Computer Programming was published in 1969, it was typeset using hot metal type set by a Monotype Corporation typecaster with a hot metal typesetting machine from the 19th century which produced a good classic style appreciated by Knuth. When the second edition of the second volume was published, in 1976, the whole book had to be typeset again because the Monotype technology had been largely replaced by photographic techniques, and the original fonts were no longer available. When Knuth received the galley proofs of the new book on 30 March 1977, he found them awful. Around that time, Knuth saw for the first time the output of a high-quality digital typesetting system, and became interested in digital typography. The disappointing galley proofs gave him the final motivation to solve the problem at hand once and for all by designing his own typesetting system. On 13 May 1977, he wrote a memo to himself describing the basic features of TeX. from Wikipedia, 17.IX.2013

3 30 1 Vectors and Functions the value of f at any point on the 2-interval I (0,0),(1, 1 2 ) =[0, 1] [0, 1 2 ]. Indeed, the image of this 2-interval is [0, 1 2 ] [1, 3 2 ], which is not an interval in R. As indicated by the example in Remark 1.24, a simple modification of the result in Proposition 1.23 yields a characterization of the IVP. Proposition Let D R 2 and let f : D R be a function. Then for any 2-interval I J D, f has the IVP on I J f(e) is an interval in R for every 2-interval E I J. Proof. The implication = follows from Proposition To prove the converse, let (x1,y1), (x2,y2) I J and let r be a real number that lies between f(x1,y1) andf(x2,y2). Let E denote the 2-interval I (x1,y1),(x2,y2). Since f(e) isanintervalinr, it follows that r = f(x0,y0) forsome(x0,y0) E. SinceE I J, it follows that f has the IVP on I J. 1.3 Cylindrical and Spherical Coordinates For points in R 2, one has the familiar notion of polar coordinates. These provide an alternative and useful way to represent points in the plane other than the origin. Recall that the polar coordinates of (x, y) R 2 \{(0, 0)} are given by (r, θ), where r and θ are real numbers determined by the equations x = r cos θ and y = r sin θ and the conditions r>0andθ ( π, π]. The precise relationship is stated below. For a proof of this, one may refer to Proposition 7.20 of ACICARA. Fact If x, y R are such that (x, y) (0, 0), thenr and θ defined by ( x ) r := cos 1 if y 0, r x 2 + y 2 and θ := ( x ) cos 1 if y<0, r satisfy the following properties: r, θ R, r > 0, θ ( π, π], x = r cos θ, and y = r sin θ. Conversely, if r, θ R are such that r>0 and θ ( π, π], thenx := r cos θ and y := r sin θ are real numbers such that (x, y) (0, 0), r = x 2 + y 2,and θ equals cos 1 (x/r) or cos 1 (x/r) according as y 0 or y<0.

4 TEX is a programming language.

5 TEX is a programming language. A TEXfile is a program, that is, it is a series of commands that is compiled by the TEX engine which delivers output.

6 TEX is a programming language. A TEXfile is a program, that is, it is a series of commands that is compiled by the TEX engine which delivers output. LATEX requires a preface declaring certain styles and initiating packages of commands that have been designed by others.

7 A typical setup \documentclass{article} \usepackage{amsmath} \usepackage{amssym} \usepackage{amsfonts} You can put many useful things here. \begin{document} Your text here. \end{document}

8 A scrap of TEX code A {\it binomial} is an algebraic expression of the form $a + b$, on which we can carry out some operation. Most often the expressions are monomials and a binomial is a kind of polynomial. If we raise the monomial $a + b$ to a power, we obtain new terms: Of course, $(a + b)ˆ1 = a + b$, and most of us know that $$(a+b)ˆ2 = aˆ2 + 2ab + bˆ2.$$ If one is willing, we can extend this further: \begin{align*} (a+b)ˆ3 &= aˆ3 + 3aˆ2 b + 3a bˆ2 + bˆ3 \\ (a+b)ˆ4 &= aˆ4 + 4aˆ3 b + 6 aˆ2 bˆ2 + 4 a bˆ3 + bˆ4, \end{align*} and so on. The coefficients appearing in these expressions are called {\it binomial coefficients} and they are defined in general by the notation: $$(a + b)ˆn = aˆn + \binom{n}{1} aˆ{n-1} b + \binom{n}{2} aˆ{n-2} bˆ2 + \cdots + \binom{n}{k} aˆ{n-k} bˆk + \cdots + \binom{n}{n-1} a bˆ{n-1} + bˆn.$$ Thus, $\displaystyle\binom{4}{2} = 6$.

9 Output from that code A binomial is an algebraic expression of the form a + b, on which we can carry out some operation. Most often the expressions are monomials and a binomial is a kind of polynomial. If we raise the monomial a + b to a power, we obtain new terms: Of course, (a + b) 1 = a + b, and most of us know that (a + b) 2 = a 2 + 2ab + b 2. If one is willing, we can extend this further: (a + b) 3 = a 3 + 3a 2 b + 3ab 2 + b 3 (a + b) 4 = a 4 + 4a 3 b + 6a 2 b 2 + 4ab 3 + b 4, and so on. The coefficients appearing in these expressions are called binomial coefficients and they are defined in general by the notation: ( n ( n ( n ( n ) (a + b) n = a n + a 1) n 1 b + a 2) n 2 b a k) n k b k + + ab n 1 + b n. n 1 ( 4 Thus, = 6. 2)

10 Fonts \textit{italic} gives italic. \textbf{bold} gives bold. \textsl{slanted} gives slanted. \textsc{small caps} gives SMALL CAPS. \texttt{typewriter} gives typewriter.

11 Choices align versus align* (a + b) 3 = a 3 + 3a 2 b + 3ab 2 + b 3 (1) (a + b) 4 = a 4 + 4a 3 b + 6a 2 b 2 + 4ab 3 + b 4, (2) text style versus \displaystyle ( ) ( n ) n 5 versus 5

12 A matrix $$\begin{pmatrix} 7 & 8 & -1 & 0\\ 4 & -2 & 0 & 9 \\ -1 & 0 & 6 & 12 \\ 0 & 3 & -7 & 1 \end{pmatrix}$$

13 Cases $$\int 1ˆx tˆp\,dt = \begin{cases} \displaystyle \frac{xˆ{p+1}}{p+1} - \frac1{p+1} &\mbox{if }p\neq -1,\\ \ln (x) &\mbox{if }p = -1.\end{cases}$$ x 1 x p+1 t p dt = p if p 1, p + 1 ln(x) if p = 1.

14 A commutative diagram 0 C n+1 α Cn+1 β C n C n 0 C n 1 α Cn β C 0 α Cn 1 n β C 0 n 1

15 α \alpha θ \theta o o τ \tau β \beta ϑ \vartheta π \pi υ \upsilon γ \gamma γ \gamma ϖ \varpi φ \phi δ \delta κ \kappa ρ \rho ϕ \varphi ɛ \epsilon λ \lambda ϱ \varrho χ \chi ε \varepsilon µ \mu σ \sigma ψ \psi ζ \zeta ν \nu ς \varsigma ω \omega η \eta ξ \xi Γ \Gamma Λ \Lambda Σ \Sigma Ψ \Psi \Delta Ξ \Xi Υ \Upsilon Ω \Omega Θ \Theta Π \Pi Φ \Phi Greek Letters

16 ± \pm \cap \diamond \oplus \mp \cup \bigtriangleup \ominus \times \uplus \bigtriangledown \otimes \div \sqcap \triangleleft \oslash \ast \sqcup \triangleright \odot \star \vee \lhd b \bigcirc \circ \wedge \rhd b \dagger \bullet \ \setminus \unlhd b \ddagger \cdot \wr \unrhd b \amalg b Not predefined in a format based on basefont.tex. Use one of the style options oldlfont, newlfont, amsfonts or amssymb. Binary Operation Symbols

17 \leq \geq \equiv = \models \prec \succ \sim \perp \preceq \succeq \simeq \mid \ll \gg \asymp \parallel \subset \supset \approx \bowtie \subseteq \supseteq = \cong \Join b \sqsubset b \sqsupset b \neq \smile. \sqsubseteq \sqsupseteq = \doteq \frown \in \ni \propto = = \vdash \dashv < < > > b Not predefined in a format based on basefont.tex. Use one of the style options oldlfont, newlfont, amsfonts or amssymb. Relation Symbols

18 \leftarrow \longleftarrow \uparrow \Leftarrow = \Longleftarrow \Uparrow \rightarrow \longrightarrow \downarrow \Rightarrow = \Longrightarrow \Downarrow \leftrightarrow \longleftrightarrow \updownarrow \Leftrightarrow \Longleftrightarrow \Updownarrow \mapsto \longmapsto \nearrow \hookleftarrow \hookrightarrow \searrow \leftharpoonup \rightharpoonup \swarrow \leftharpoondown \rightharpoondown \nwarrow \rightleftharpoons \leadsto b b Not predefined in a format based on basefont.tex. Use one of the style options oldlfont, newlfont, amsfonts or amssymb. Arrow Symbols

19 ... \ldots \cdots. \vdots... \ddots ℵ \aleph \prime \forall \infty \hbar \emptyset \exists \Box b ı \imath \nabla \neg \Diamond b j \jmath \surd \flat \triangle l \ell \top \natural \clubsuit \wp \bot \sharp \diamondsuit R \Re \ \ \backslash \heartsuit I \Im \angle \partial \spadesuit \mho b b Not predefined in a format based on basefont.tex. Use one of the style options oldlfont, newlfont, amsfonts or amssymb. Miscellaneous Symbols

20 \sum \bigcap \bigodot \prod \bigcup \bigotimes \coprod \bigsqcup \bigoplus \int \bigvee \biguplus \oint \bigwedge Variable-sized Symbols \arccos \cos \csc \exp \ker \limsup \min \sinh \arcsin \cosh \deg \gcd \lg \ln \Pr \sup \arctan \cot \det \hom \lim \log \sec \tan \arg \coth \dim \inf \liminf \max \sin \tanh Log-like Symbols

21 1. TEX has the best output. Top ten reasons to learn TEX

22 1. TEX has the best output. 2. TEX knows typsetting. Top ten reasons to learn TEX

23 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. Top ten reasons to learn TEX

24 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. Top ten reasons to learn TEX

25 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. Top ten reasons to learn TEX

26 Top ten reasons to learn TEX 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. 6. TEX input is plain text. (Therefore, small!)

27 Top ten reasons to learn TEX 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. 6. TEX input is plain text. (Therefore, small!) 7. TEX output can be anything.

28 Top ten reasons to learn TEX 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. 6. TEX input is plain text. (Therefore, small!) 7. TEX output can be anything. 8. TEX is free.

29 Top ten reasons to learn TEX 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. 6. TEX input is plain text. (Therefore, small!) 7. TEX output can be anything. 8. TEX is free. 9. TEX runs anywhere.

30 Top ten reasons to learn TEX 1. TEX has the best output. 2. TEX knows typsetting. 3. TEX is fast. 4. TEX is stable. 5. TEX is stable, but not rigid. 6. TEX input is plain text. (Therefore, small!) 7. TEX output can be anything. 8. TEX is free. 9. TEX runs anywhere. 10. TEX is the standard.

Getting started with L A TEX on XP

Getting started with L A TEX on XP Getting started with L A TEX on XP A very brief beginners guide Version 1.4: The current version is linked to from www.maths.leeds.ac.uk/school/students 1 Introduction This is a very simple document to

More information

Summary of Commonly-Used Features of LaT E X

Summary of Commonly-Used Features of LaT E X Summary of Commonly-Used Features of LaT E X D. R. Wilkins November 19, 1993 Contents 1 Rules for Ordinary Text (without mathematics) 2 1.1 Special Characters... 2 1.2 Paragraphs... 2 1.3 Quotation marks...

More information

CS 189 L A TEX and Linux: Mathematical Formulas

CS 189 L A TEX and Linux: Mathematical Formulas CS 189 L A TEX and Linux: (1) Robert S. Laramee Computer Science Department School of Physical Sciences Swansea University May 7, 2008 (1) Robert S. Laramee CS 189 LATEX and Linux: Overview of Lecture

More information

Using the mathematical features of Word 2007

Using the mathematical features of Word 2007 Using the mathematical features of Word 2007 Important information for Open University students It is important to note that mathematical notation created in Word 2007 will not be preserved if the document

More information

Summary of TLA + Module-Level Constructs. The Constant Operators. Miscellaneous Constructs. Action Operators. Temporal Operators

Summary of TLA + Module-Level Constructs. The Constant Operators. Miscellaneous Constructs. Action Operators. Temporal Operators Summary of TLA + Module-Level Constructs The Constant Operators Miscellaneous Constructs Action Operators Temporal Operators User-Definable Operator Symbols Precedence Ranges of Operators Operators Defined

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

News from the Wrapper

News from the Wrapper News from the Wrapper Gesellschaft für Schwerionenforschung mbh Darmstadt, Germany JACoW Team Meeting 2004 Knoxville, Tennessee November 7, 2004 What is still the same? What is still the same? What has

More information

Tabella dei caratteri ASCII e UNICODE

Tabella dei caratteri ASCII e UNICODE Appendice 1: ausiliaria Tabella dei caratteri ASCII e UNICODE formato di stampa: A4 APP_1A_IT_R3.0.docx 1 di 9 Indice 1 TABELLE DEI CARATTERI... 3 Caratteri ASCII... 3 Lettere greche... -4 APP_1A_IT_R3.0.docx

More information

MoM's ridiculously complex math-typing tutorial Keyboard typing lessons for Math-o-mir v2.0

MoM's ridiculously complex math-typing tutorial Keyboard typing lessons for Math-o-mir v2.0 MoM's ridiculously complex math-typing tutial Keyboard typing lessons f Math-o-mir v.0 Lesson 1 Starting and ending the Typing mode left-mouse-click mouse-click anywhere at empty area......the blue blinking

More information

2. Unlock the Customization Features: The Edit Button Click the "Edit" button on the Dashboard Home Page to unlock the customization features.

2. Unlock the Customization Features: The Edit Button Click the Edit button on the Dashboard Home Page to unlock the customization features. 1. Introduction: Customize Content for Your Students The Garland Science Learning System (GSLS) is completely customizable. You can edit, delete, or add content to create a unique learning experience for

More information

Markus Kuhn. Computer Laboratory, University of Cambridge. Michaelmas 2015 Part II

Markus Kuhn. Computer Laboratory, University of Cambridge.   Michaelmas 2015 Part II LATEX Markus Kuhn CTAN lion drawing by Duane Bibby Computer Laboratory, University of Cambridge https://www.cl.cam.ac.uk/teaching/1516/tex+matlab/ Michaelmas 2015 Part II 1 LATEX a document formatter LATEX:

More information

VerTeX User s Manual

VerTeX User s Manual VerTeX User s Manual Steve Kieffer Updated: 18 January 2013 Contents 1 Introduction 1 2 Slash the Backslashes 3 2.1 bsmes................................. 3 2.2 built-ins................................

More information

Character Entity References in HTML 4 and XHTML 1.0

Character Entity References in HTML 4 and XHTML 1.0 1 of 12 2/2/2009 2:55 PM Character References in HTML 4 and XHTML 1.0 Here is a set of tables containing the 252 allowed entities in HTML 4 and XHTML 1.0, as described in section 24 of the official HTML

More information

Appendix B: Latex survival guide

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

More information

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

Math typesetting guide

Math typesetting guide Math typesetting guide Carleton College L A TEX worshop One of L A TEX s most important and widely-nown features is its exceptional math typesetting. Once you have the hang of it, you can easily typeset

More information

Introduction to L A TEX

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

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Renata Retkute Department of Mathematics November 2008 Contents 1 Getting started 2 2 Basic L A TEX 2 2.1 A Typical LaTeX Input File................................. 2 2.2 Text

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

Markus Kuhn. Computer Laboratory, University of Cambridge.

Markus Kuhn. Computer Laboratory, University of Cambridge. LATEX Markus Kuhn CTAN lion drawing by Duane Bibby Computer Laboratory, University of Cambridge https://www.cl.cam.ac.uk/teaching/1718/tex+matlab/ latex-slides-2up.pdf 2017-10-27 12:16 ddba2df 1 LATEX

More information

Markus Kuhn. Computer Laboratory, University of Cambridge. Michaelmas 2016 Part II

Markus Kuhn. Computer Laboratory, University of Cambridge.   Michaelmas 2016 Part II LATEX Markus Kuhn CTAN lion drawing by Duane Bibby Computer Laboratory, University of Cambridge https://www.cl.cam.ac.uk/teaching/1617/tex+matlab/ Michaelmas 2016 Part II latex-slides.pdf 2016-10-27 15:23

More information

Short introduction to LaTeX symbols and commands

Short introduction to LaTeX symbols and commands Page 1 of 8 INTRODUCTION TO LATEX SYMBOLS AND COMMANDS Common expressions What follows in this and next sections is but a very concise collection of most common and useful symbols available in LaTeX (and

More information

A LaTEX Tutorial. A Collection of Handouts And Exercises for The Technically Uninitiated

A LaTEX Tutorial. A Collection of Handouts And Exercises for The Technically Uninitiated A LaTEX Tutorial A Collection of Handouts And Exercises for The Technically Uninitiated by Linda Bethel Graduate School of Business September 9, 2005 CONTENTS 2 Contents 1 Getting Started: An Overview

More information

Semantics. Doug Arnold (L A TEX for Linguists) September 25, 2007

Semantics. Doug Arnold (L A TEX for Linguists) September 25, 2007 Semantics Doug Arnold (L A TEX for Linguists) September 25, 2007 1 Introduction TEX and L A TEX are very good at typesetting logic so typesetting most bits of semantics is very easy, just using the things

More information

The package paresse. Le TEXnicien de surface February 16, 2013

The package paresse. Le TEXnicien de surface February 16, 2013 The package paresse Le TXnicien de surface le.texnicien.de.surface@wanadoo.fr February 16, 2013 Abstract This package implements an example from T. Lachand-Robert in [1]. It provides a means of typing

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

Markus Kuhn. Computer Laboratory, University of Cambridge.

Markus Kuhn. Computer Laboratory, University of Cambridge. LATEX Markus Kuhn CTAN lion drawing by Duane Bibby Computer Laboratory, University of Cambridge https://www.cl.cam.ac.uk/teaching/1718/tex+matlab/ latex-slides.pdf 2017-10-27 12:16 ddba2df 1 / 34 L A TEX

More information

L A TEX and Basic Text Editing

L A TEX and Basic Text Editing L A TEX and Basic Text Editing 1 Basics L A TEXis a mathematical typesetting word processing tool. You need a compiler to display L A TEX, and you can dowload the open-source freeware at MikTex.org. We

More information

Essential L A TEX ++ Contents. Jon Warbrick with additions by David Carlisle, Michel Goossens, Sebastian Rahtz, Adrian Clark.

Essential L A TEX ++ Contents. Jon Warbrick with additions by David Carlisle, Michel Goossens, Sebastian Rahtz, Adrian Clark. Essential L A TEX ++ Jon Warbrick with additions by David Carlisle, Michel Goossens, Sebastian Rahtz, Adrian Clark January 1994 Contents 1 Introduction...................................... 2 2 How Does

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

Nutthapat Kaewrattanapat. Lecture in Principle of Web Design

Nutthapat Kaewrattanapat. Lecture in Principle of Web Design ASCII CODE (ASCII CHARACTERS) ls should display in files using charsets ISO 8859-1 or UTF-8. [ " ] quotation mark [name: "] [number: "] [ & ] ampersand [name: &] [number: &] [ < ] less than [name:

More information

LAT E X Math Mode. RSI 2007 Staff

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

More information

L A TEX: what the Introductory Guides don t tell you

L A TEX: what the Introductory Guides don t tell you L A TEX: what the Introductory Guides don t tell you MJ Rutter mjr19@cam Lent 2005 Bibliography LATEX User s Guide and Reference Manual, 2nd ed., Lamport, Addison-Wesley, 272pp, $40. The LATEX Companion,

More information

The Mathematics of Banking and Finance By Dennis Cox and Michael Cox Copyright 2006 John Wiley & Sons Ltd

The Mathematics of Banking and Finance By Dennis Cox and Michael Cox Copyright 2006 John Wiley & Sons Ltd The Mathematics of Banking and Finance By Dennis Cox and Michael Cox Copyright 2006 John Wiley & Sons Ltd Less than ( ), less than or equal to ( ) Appendix 281 A symbol meaning smaller or less than, for

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

A Quick Guide to L A TEX

A Quick Guide to L A TEX A Quick Guide to L A TEX David Lane January 26, 2006 Contents 1 Basics 1 2 Typesetting Text 2 3 Typesetting Mathematics 6 4 What s Missing 11 1 Basics A L A TEX document consists of a preamble and a main

More information

The Word 2007/2010 Equation Editor

The Word 2007/2010 Equation Editor The Word 2007/2010 Equation Editor Contents The Word 2007/2010 Equation Editor... 1 When the Equation Editor Should Be Used... 1 Why the Equation Editor Should Be Used... 1 How to Enter the Equation Editor

More information

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

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

More information

Quick Start Instructions on using MyOMLab with the JAWS Screen Reader*

Quick Start Instructions on using MyOMLab with the JAWS Screen Reader* Quick Start Instructions on using MyOMLab with the JAWS Screen Reader* To work on assignments in MyOMLab with JAWS, follow these steps to turn on the Automatically Detect for Accessibility Setting: 1.

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

Contents. Introduction 1. Vertices 2. Lines 3. Blobs 5. Text 6. Manipulations with xy 8. Coordinate Systems 10. Adjusting Parameters 11.

Contents. Introduction 1. Vertices 2. Lines 3. Blobs 5. Text 6. Manipulations with xy 8. Coordinate Systems 10. Adjusting Parameters 11. l ν l π W q s u, c, t d u v v v B D D d g u d FeynDiagram Version 2.6 Tutorial by Bill Dimm bdimm@feyndiagram.com + k k p p ν p-k p-k µ This software may be obtained from http://feyndiagram.com This software

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

Topic Training Engineering Report

Topic Training Engineering Report Topic Training Engineering Report Topic Training Engineering Report All information in this document is subject to modification without prior notice. No part of this manual may be reproduced, stored in

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

5-2 Verifying Trigonometric Identities

5-2 Verifying Trigonometric Identities 5- Verifying Trigonometric Identities Verify each identity. 1. (sec 1) cos = sin 3. sin sin 3 = sin cos 4 5. = cot 7. = cot 9. + tan = sec Page 1 5- Verifying Trigonometric Identities 7. = cot 9. + tan

More information

Kristoffer H. Rose. Version /01/07

Kristoffer H. Rose. Version /01/07 Summary of qsymbols Kristoffer H. Rose Version 1.12 1997/01/07 Abstract qsymbols is a L A TEX [1] package defining systematic mnemonic abbreviations, starting with a single open quote for symbols, and

More information

Here are some suggestions for writing this assignment and future assignments:

Here are some suggestions for writing this assignment and future assignments: MAD 3105 - Distance Learning Introductory Assignment This assignment is to help you learn to write some of the symbols and draw some graphs, save the material as a pdf file, and submit them electronically

More information

The LibertinusT1 Math Package

The LibertinusT1 Math Package The LibertinusT1 Math Package Michael Sharpe September 20, 2018 This package is a LATEX math package to accompany the LATEX Libertine text package, serving as an alternative to newtxmath with the libertine

More information

BibTeX2HTML A translator of BibTeX bibliographies into HTML

BibTeX2HTML A translator of BibTeX bibliographies into HTML BibTeX2HTML A translator of BibTeX bibliographies into HTML Version 1.99 March 23, 2018 Jean-Christophe Filliâtre and Claude Marché http://www.lri.fr/~filliatr/bibtex2html Contents 1 Introduction 1 2 The

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 dropbox has two buttons: add and send. You must send the file to turn it in to the instructor.

The dropbox has two buttons: add and send. You must send the file to turn it in to the instructor. MAD 2104 Residential - DropBox Policies Students may turn in assignments on paper or electronically via the BlackBoard dropbox. The following are the policies regarding the use of the dropbox: Turning

More information

Basic Trigonometry. Stephen Perencevich Department of Mathematics Montgomery College 3Π 4 Π 7Π 7Π 6 Π 2 0, 1 1,0 1,0 Π 3 5Π 3 Π 2

Basic Trigonometry. Stephen Perencevich Department of Mathematics Montgomery College 3Π 4 Π 7Π 7Π 6 Π 2 0, 1 1,0 1,0 Π 3 5Π 3 Π 2 Basic Trigonometry Stephen Perencevich Department of Mathematics Montgomery College 4 0,,0,0 0 4 7 6 5 7 6 0, 5 i All firgures generated by Mathematica. R Revised July, 06 Typeset by L A TEX. Perencevich,

More information

Inessential L A TEX. The Student Information Processing Board. July 7, (Revision: 4.4)

Inessential L A TEX. The Student Information Processing Board. July 7, (Revision: 4.4) (Revision: 4.4) The Student Information Processing Board July 7, 2004 Copyright c 1987 2004 Student Information Processing Board of the Massachusetts Institute of Technology Contents 1 Introduction.........................................

More information

Introduction to L A TEX

Introduction to L A TEX p. 1/40 Introduction to L A TEX Xiaoxu Guan High Performance Computing, LSU June 21, 2017 Overview p. 2/40 What are TEX and L A TEX? What can L A TEX do for us? Document structure Text formatting Compile

More information

The old-arrows package

The old-arrows package The old-arrows package Riccardo Dossena Version 2.0, released on January 5, 2017 Abstract This package provides Computer Modern old-style arrows ( ) with smaller arrowheads, associated with ordinary L

More information

Teckel. Dick Grune October 23, 2014; DRAFT

Teckel. Dick Grune October 23, 2014; DRAFT Teckel Dick Grune dick@dickgrune.com October 23, 2014; DRAFT mene teckel upharsin counted, weighed, and split Daniel 5:25 1 Introduction Teckel is an interpreter for non-deterministic and deterministic

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

Excellence in Community Service & Philanthropy

Excellence in Community Service & Philanthropy Excellence in Community Service & Philanthropy 2013-2014 Excellence in Community Service & Philanthropy The chapter provides members with opportunities to learn about the importance of civic engagement

More information

Advanced L A TEX. Tim Love. August 30, 2006

Advanced L A TEX. Tim Love. August 30, 2006 Advanced L A TEX Tim Love August 30, 2006 This document follows on from the Word processing using L A TEX 1 document. It describes the features of L A TEX that people at CUED are most likely to use. Further

More information

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps:

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps: Simple Math Adam Dishaw 2011 September 21 Suppose you want to include some math in your documents. Just follow these basics steps: 1. Create a new TEX document with the basic requirements (the documentclass

More information

Extrapolating TEX4ht. TEX4ht Project

Extrapolating TEX4ht.   TEX4ht Project Extrapolating TEX4ht http://tug.org/tex4ht TEX4ht Project This manual is for TEX4ht. Copyright 2009, 2010 TEX Users Group. This work may be distributed and/or modified under the conditions of the L A TEX

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

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

The Legacy Continues GREEK LETTERS AND EMBLEMS

The Legacy Continues GREEK LETTERS AND EMBLEMS The Legacy Continues GREEK LETTERS AND EMBLEMS HOW TO BUY AN EMBLEM OR GREEK LETTER The BRICK legacy INSCRIPTION continues These instructions are specific for ordering a brick inscription where the donor

More information

Advanced L A TEX. Tim Love. August 5, 1999

Advanced L A TEX. Tim Love. August 5, 1999 Advanced L A TEX Tim Love August 5, 1999 This document follows on from the Word processing using L A TEX 1 document. It describes the features of L A TEX that people at CUED are most likely to use. Further

More information

Quick Start with CASSY Lab. Bi-05-05

Quick Start with CASSY Lab. Bi-05-05 Quick Start with CASSY Lab Bi-05-05 About this manual This manual helps you getting started with the CASSY system. The manual does provide you the information you need to start quickly a simple CASSY experiment

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

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

A proposal to add special mathematical functions according to the ISO/IEC :2009 standard

A proposal to add special mathematical functions according to the ISO/IEC :2009 standard A proposal to add special mathematical functions according to the ISO/IEC 8-2:29 standard Document number: N3494 Version: 1. Date: 212-12-19 Vincent Reverdy (vince.rev@gmail.com) Laboratory Universe and

More information

Getting started General Tables Figures Math Wrap up. UCLA Department of Statistics Statistical Consulting Center. LaTeX Bootcamp

Getting started General Tables Figures Math Wrap up. UCLA Department of Statistics Statistical Consulting Center. LaTeX Bootcamp UCLA Department of Statistics Statistical Consulting Center Mine Çetinkaya mine@stat.ucla.edu September 20, 2010 Outline 1 Getting started 2 General 3 Tables 4 Figures 5 Math 6 Wrap up 1 Getting started

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

Palatino. Palatino. Linotype. Palatino. Linotype. Linotype. Palatino. Linotype. Palatino. Linotype. Palatino. Linotype

Palatino. Palatino. Linotype. Palatino. Linotype. Linotype. Palatino. Linotype. Palatino. Linotype. Palatino. Linotype Copyright 2013 Johanna Corsini Arts 79 Typography 1 Sources: http://en.wikipedia.org/wiki/ http://en.wikipedia.org/wiki/typography By Johanna Corsini P a a P o l t a a n L P i l t n a i o a o y l t n n

More information

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise.

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise. PHYS 87 Exercises (October 30, 207):. Exercise: try typesetting this It doe snot work with beamer > The first entry here > Then the second > etc The first entry here Then the second etc Hint: Use \textgreater

More information

Introduction to Math in LaTeX

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

More information

An Introduction to L A TEX

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

More information

and stay in view until you release the mouse button, at which point the image grid will reappear. You can keep switching back and forth between the

and stay in view until you release the mouse button, at which point the image grid will reappear. You can keep switching back and forth between the Conformal Maps The purpose of this category is to help visualize the mapping properties of a complex analytic function. The basic method for using this category is to first, as usual, choose a canned object

More information

A L A T E X quick start

A L A T E X quick start 1 A L A T E X quick start 1.1 A first example When you meet a new computer language (and TEX is a language, although not a very general purpose one) the first thing to do is to write a program that outputs

More information

5-2 Verifying Trigonometric Identities

5-2 Verifying Trigonometric Identities Verify each identity 1 (sec 1) cos = sin sec (1 cos ) = tan 3 sin sin cos 3 = sin 4 csc cos cot = sin 4 5 = cot Page 1 4 5 = cot 6 tan θ csc tan = cot 7 = cot 8 + = csc Page 8 = csc + 9 + tan = sec 10

More information

Fraternity and Sorority Leadership Change Form

Fraternity and Sorority Leadership Change Form Fraternity and Sorority Leadership Change Form Fraternity and sorority outgoing presidents: Please complete this form within 48 hours of chapter elections or if your organization has any officer changes.

More information

DOING PHYSICS WITH MATLAB GETTING STARTED WITH MATLAB ADVANCED XY PLOTTING TECHNIQUES

DOING PHYSICS WITH MATLAB GETTING STARTED WITH MATLAB ADVANCED XY PLOTTING TECHNIQUES DOING PHYSICS WITH MATLAB GETTING STARTED WITH MATLAB ADVANCED XY PLOTTING TECHNIQUES Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au DOWNLOAD MATLAB SCRIPTS Advanced XY Plotting

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

Intro to L A TEX. Kelly Choo. Sept. 21, Mathematics and Statistics, UVic

Intro to L A TEX. Kelly Choo. Sept. 21, Mathematics and Statistics, UVic Intro to L A TEX Kelly Choo Mathematics and Statistics, UVic Sept. 21, 2017 Software Windows: ProTeXt to install MikTeX and TeXStudio Kelly Choo (Mathematics and Statistics, UVic) Intro to LATEX 2 / 35

More information

MATH 104 Sample problems for first exam - Fall MATH 104 First Midterm Exam - Fall (d) 256 3

MATH 104 Sample problems for first exam - Fall MATH 104 First Midterm Exam - Fall (d) 256 3 MATH 14 Sample problems for first exam - Fall 1 MATH 14 First Midterm Exam - Fall 1. Find the area between the graphs of y = 9 x and y = x + 1. (a) 4 (b) (c) (d) 5 (e) 4 (f) 81. A solid has as its base

More information

ShortCourseOfL A T E X Lecture I

ShortCourseOfL A T E X Lecture I ShortCourseOfL A T E X Lecture I LukaG.Poniatowski ½ ¾ ½ DepartmentofPhysics,FacultyofExactandNaturalSciences, Tbilisi State University ¾ AbastumaniAstrophysicalObservatory, Ilia State University August

More information

All Greek Women: All UGA: All Panhellenic: All NPHC: All Greek Men: 3.01

All Greek Women: All UGA: All Panhellenic: All NPHC: All Greek Men: 3.01 Sprg Grade Reportt Fraternities & Sororities at Washgton State Universityy All Greek: Chapter Acacia Alpha Chi Omega All Greek Women:. Rank All Greek Men:... Alpha Pi Alpha Gamma Alpha Gamma Rho Alpha

More information

Chapter 16 Math Objects

Chapter 16 Math Objects Writer Guide Chapter 16 Math Objects The OpenOffice.org Equation Editor OpenOffice.org Copyright This document is Copyright 2005 by its contributors as listed in the section titled Authors. You can distribute

More information

Typesetting with TEX

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

More information

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

L A TEX: Online module 9

L A TEX: Online module 9 L A TEX: Online module 9 Venkata Manem Univ. of Waterloo August 19, 2011 Venkata Manem (Univ. of Waterloo) LATEX: Online module 9 August 19, 2011 1 / 32 Topics to be covered Typeset lengthy equations Matrices

More information

Typing Math: Symbols and Graphing

Typing Math: Symbols and Graphing Typing Math: Symbols and Graphing The purpose of this assignment is to learn how to produce word-processed documents containing mathematical expressions and graphs that look like they could have come from

More information

/* Operator definitions */ operator_definition: /* \Tdefine{a \xi b, a \in N}{...} */ \Tdefine { definee } { expression } optional_tsc ;

/* Operator definitions */ operator_definition: /* \Tdefine{a \xi b, a \in N}{...} */ \Tdefine { definee } { expression } optional_tsc ; /* PROGRAM */ program: unit_sequence unit: operator_definition /* \Tfunction{F_n}{a, b}{...} */ \Tfunction function_definition_formal_part { statement_sequence } assignment \Toutput output_limit_option

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

MTH 120 Fall 2007 Essex County College Division of Mathematics Handout Version 6 1 October 3, 2007

MTH 120 Fall 2007 Essex County College Division of Mathematics Handout Version 6 1 October 3, 2007 MTH 10 Fall 007 Essex County College Division of Mathematics Handout Version 6 1 October, 007 1 Inverse Functions This section is a simple review of inverses as presented in MTH-119. Definition: A function

More information

Using L A TEX Tom Edgar

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

More information

(a) Find cylindrical coordinates for the point whose rectangular coordinates are (x, y, z) = ( 4, 8, 2). Solution: r = p x 2 + y 2 =

(a) Find cylindrical coordinates for the point whose rectangular coordinates are (x, y, z) = ( 4, 8, 2). Solution: r = p x 2 + y 2 = MATH 03 Exam Solutions February 16, 004 S. F. Ellermeyer Name Instructions. This exam contains seven problems, but only six of them will be graded. You maychooseanysixtodo. PleasewriteDON TGRADEontheonethatyoudon

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

Social Fraternity/Sorority Foundation Account(s) - Request for Payment/Reimbursement Form

Social Fraternity/Sorority Foundation Account(s) - Request for Payment/Reimbursement Form Social Fraternity/Sorority Foundation Account(s) - Request for Payment/Reimbursement Form This form is used by social fraternities and sororities that have a Program and/or House Fund at the Bowling Green

More information

Epyt Theme for Beamer

Epyt Theme for Beamer Epyt Theme for Beamer A simple and clean theme Your Name Here Center for Presentation Design May 25, 2016 1 Black in White Introduction Epyt is a simple but nice theme for Beamer, with the following features:

More information

ISO 31 conforming typesetting in L A TEX

ISO 31 conforming typesetting in L A TEX ISO 31 conforming typesetting in L A TEX Moritz Nadler December 16th, 2009 recompiled August 30, 2012 with TeX Live 2012 Moritz Nadler ISO 31 conforming typesetting in LATEX December 16th, 2009 1 / 17

More information

Environments, Equations, and Tables

Environments, Equations, and Tables Environments, Equations, and Tables David Freund October 13, 2016 1 Environments In L A TEX, environments are sections of code delineated by \begin{stuff} and \end{stuff}. Most text formatting is done

More information