Outline Getting started Editing. LA TE X introduction. Kyle Rawlins. February 26, 2009

Size: px
Start display at page:

Download "Outline Getting started Editing. LA TE X introduction. Kyle Rawlins. February 26, 2009"

Transcription

1 L A TEX introduction February 26, 2009

2 Installing LATEX Resources

3 Installing LA TE X Resources OS X I I use MacTeX:

4 Installing LA TE X Resources OS X I I use MacTeX: I Comes with TeXShop, probably the easiest way to get started editing LATEX les on the mac:

5 Installing LA TE X Resources OS X I I use MacTeX: I Comes with TeXShop, probably the easiest way to get started editing LATEX les on the mac: I Also comes with BibDesk, a really great program:

6 Installing LA TE X Resources OS X I I use MacTeX: I Comes with TeXShop, probably the easiest way to get started editing LATEX les on the mac: I Also comes with BibDesk, a really great program: I I uses aquamacs (an OS X version of GNU emacs), takes some more work to customize:

7 Installing LA TE X Resources Windows I I don't really know much, sorry.

8 Installing LA TE X Resources Windows I I don't really know much, sorry. I But I think MiKTeX is what people use:

9 Installing LA TE X Resources Windows I I don't really know much, sorry. I But I think MiKTeX is what people use: I I've also heard good things about WinEdt as an editor: (not free). Also:

10 Installing LA TE X Resources Windows I I don't really know much, sorry. I But I think MiKTeX is what people use: I I've also heard good things about WinEdt as an editor: (not free). Also: I Emacs is also an option.

11 Installing LA TE X Resources Linux I If you're using linux, you probably don't need my help.

12 Installing LA TE X Resources Resources I I put up some basic templates, plus the source to this le, on the web. The source to this le in particular contains all sorts of little recipes you might nd useful.

13 Installing LA TE X Resources Resources I I put up some basic templates, plus the source to this le, on the web. The source to this le in particular contains all sorts of little recipes you might nd useful. I Some resources for linguists: I LAT E X for linguists I UCSC edition I LingTeX mailing list

14 Installing LA TE X Resources Resources I I put up some basic templates, plus the source to this le, on the web. The source to this le in particular contains all sorts of little recipes you might nd useful. I Some resources for linguists: I LAT E X for linguists I UCSC edition I LingTeX mailing list I A good general purpose reference (esp. for formulae):

15 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX.

16 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX. I Interface for formatting is distinct from the formatting itself.

17 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX. I Interface for formatting is distinct from the formatting itself. I Generate formatted PDF/Postscript le by compiling document.

18 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX. I Interface for formatting is distinct from the formatting itself. I Generate formatted PDF/Postscript le by compiling document. I Most text is just text.

19 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX. I Interface for formatting is distinct from the formatting itself. I Generate formatted PDF/Postscript le by compiling document. I Most text is just text. I Macros: nmacroname[options]{argument} I e.g. ntextbf{hi} produces hi.

20 I TEX is a macro language; LATEX a comprehensive set of macros and conventions built in TEX. I Interface for formatting is distinct from the formatting itself. I Generate formatted PDF/Postscript le by compiling document. I Most text is just text. I Macros: nmacroname[options]{argument} I e.g. ntextbf{hi} produces hi. I Environments are bracketed with a begin and end command: nbegin{itemize} nitem Most text is just text. nend{itemize}

21 Preamble I Setup stu goes here. ndocumentclass[article,11pt]{memoir} nusepackage{mathptmx} nusepackage{natbib} nbibpunct{(}{)}{;}{a}{}{,} % etc.

22 Preamble I Setup stu goes here. I Document class: basic document template ndocumentclass[article,11pt]{memoir} nusepackage{mathptmx} nusepackage{natbib} nbibpunct{(}{)}{;}{a}{}{,} % etc.

23 Preamble I Setup stu goes here. I Document class: basic document template I Load support packages, e.g. mathptmx sets up Times New Roman. ndocumentclass[article,11pt]{memoir} nusepackage{mathptmx} nusepackage{natbib} nbibpunct{(}{)}{;}{a}{}{,} % etc.

24 Preamble I Setup stu goes here. I Document class: basic document template I Load support packages, e.g. mathptmx sets up Times New Roman. I Other setup, document formatting etc. This one sets up some citation styles. ndocumentclass[article,11pt]{memoir} nusepackage{mathptmx} nusepackage{natbib} nbibpunct{(}{)}{;}{a}{}{,} % etc.

25 Body I Content of document goes here. nbegin{document} Hello world nend{document}

26 Body I Content of document goes here. I One big environment. nbegin{document} Hello world nend{document}

27 Paragraphs Regular paragraphs are just blocks of text with blank lines before and after them. It doesn't matter where you put the line breaks.

28 Paragraphs Regular paragraphs are just blocks of text with blank lines before and after them. It doesn't matter where you put the line breaks. Regular paragraphs are just blocks of text with blank lines before and after them. It doesn't matter where you put the line breaks.

29 Text styles I These are LaTeX2e font selection commands; don't use e.g. nit any more.

30 Text styles I These are LaTeX2e font selection commands; don't use e.g. nit any more. I italic: ntextit{italic}

31 Text styles I These are LaTeX2e font selection commands; don't use e.g. nit any more. I italic: ntextit{italic} I bold: ntextit{bold}

32 Text styles I These are LaTeX2e font selection commands; don't use e.g. nit any more. I italic: ntextit{italic} I bold: ntextit{bold} I small caps: ntextsc{small caps}

33 Text styles I These are LaTeX2e font selection commands; don't use e.g. nit any more. I italic: ntextit{italic} I bold: ntextit{bold} I small caps: ntextsc{small caps} I With ulem.sty: I underlined: nuline{underlined} I struck out: nsout{struck out}

34 Bulleted text I Bullets are done with the itemize environment. I Each item is prefaced with an nitem command.

35 Bulleted text I Bullets are done with the itemize environment. I Each item is prefaced with an nitem command. nbegin{itemize} nitem Bullets are done with the itemize environment. nitem Each item is prefaced with an $nbackslash$item command. nend{itemize}

36 Document divisions I Automatic section numbering and cross-referencing. I Commands: nchapter (memoir), nsection, nsubsection, etc. I Labeling command: nlabel{name} I Reference with nref{name}, or npageref{name} for the page number. nchapter{my rst chapter} nsection{the.1 section of this chapter} nsubsection{the.1.1 section} nlabel{mylabel}... ns nref{mylabel} is on p. npageref{mylabel} I This last line will produce something like Ÿ1.1.1 is on p. 1. (except, automatically determined.) I Need to run LAT X multiple times LA TE Xtointroduction get right cross-references.

37 BibTeX I Makes it very easy to manage bibliography entries. I Three parts:

38 BibTeX I Makes it very easy to manage bibliography entries. I Three parts: I A.bib le stores reference Author = {Noam Chomsky}, Journal = {Information and Control}, Pages = {137167}, Title = {On certain formal properties of grammars}, Volume = {2}, Year = {1959}}

39 BibTeX I Makes it very easy to manage bibliography entries. I Three parts: I A.bib le stores reference Author = {Noam Chomsky}, Journal = {Information and Control}, Pages = {137167}, Title = {On certain formal properties of grammars}, Volume = {2}, Year = {1959}} I Cite commands and bibliography commands in your.tex le. ncitep{chomsky59}

40 BibTeX I Makes it very easy to manage bibliography entries. I Three parts: I A.bib le stores reference Author = {Noam Chomsky}, Journal = {Information and Control}, Pages = {137167}, Title = {On certain formal properties of grammars}, Volume = {2}, Year = {1959}} I Cite commands and bibliography commands in your.tex le. ncitep{chomsky59} I BibTeX a program called after LAT E X that gures out citations from an.aux le (produced as a side-eect of compilation).

41 Formulas I Formulas are entered in math mode. The main way to switch to math mode is using $ symbols. JmustK = p hsti : w s : 8w 0 : wrw 0! p(w 0 ) $nleftnllbracket ntext{ntextbf{must}} nrightnrrbracket = nlambda p_{nleftnlangle st nrightnrangle} n:.n: nlambda w_s n:.n: nforall w' : wrw' nrightarrow p(w')$

42 More complicated formulas (Chosen at random from The Harmonic Mind) [I M] (d 0 ) (d ) = ( 1 k M (d 0 ) (d ) 0 otherwise if 9k s.t. m + k = d and m 0 + k = d 0 $nleft[nmathbb{i} nvarotimes nmathbb{m}nright]^{(d')}_{(d)} = nleftn{nbegin{array}{ll} nleft[nmathbf{1}^{nvarotimes k} nvarotimes nmathbb{m}nright]^{(d')}_{(d)} & ntext{if }nexists kntext{ s.t. }m+k=d ntext{ and }m'+k=d'nn nmathbf{0} & ntext{otherwise} nend{array}nright.$

43 Example numbering I Various packages I use gb4e. I Copy on website adapted to not conict with memoir. I Another popular one is linguex. I Easy to do automatic cross-references: (2) (1) Alfonso is a lawyer. (2) * Alfonso seems a lawyer. (3) a. Who is Alfonso talking to? b. Who on earth is Alfonso talking to?

44 Including gures I I usually use the graphicx package.

45 Including gures I I usually use the graphicx package. nincludegraphics[scale=0.3]{cat_proximity}

46 Including gures I I usually use the graphicx package. nincludegraphics[scale=0.3]{cat_proximity}

47 Tree diagrams I Many popular packages: I pst-jtree. reportedly the best modern one, but requires pstricks, and consequently, does not work with pdatex. I qtree. Pretty easy to use, no dependencies. I parsetree. Actually designed for programming language theory, but works well for linguistics. I TikZ. General purpose drawing package, really really nice. But does less tree formatting automatically. I Examples: (download source to see details)

48 qtree I Note: I pulled this out of a homework from about 7 years ago, so I have no idea why you'd use this constituent structure. (4) DP D a NP N 0 AP? A temporal hhetihshetiii former hhshetiihetii N teacher heti

49 parsetree (5) DP D a NP N 0 AP? A former hhshetiihetii temporal hhetihshetiii N teacher heti

50 Trees in TikZ (6) DP D a NP N 0 AP? A? N former hhshetiihetii temporal hhetihshetiii teacher heti

51 More trees in TikZ (7) Negative question, negative answer Is Alfonso not coming to the party? P AdvP P Adv TP no [uneg] [uneg,e] DP he Neg NegP VP concord [ineg] is coming to the party

52 Tableaux I Can do many tableaux with simple tabular environments. I This example is also using the tipa package for IPA fonts, and the arydshln package for the dashed line. I Actually, this uses my own custom tableau environment based on tabular, there is probably something better around. (Colin?) I Major drawback: it is a pain to add columns, especially in large tableau. It is a huge pain to re-order columns. /k-haratat-s/ FtBin FtHdR Dep a. [kha.(rá:).tats] * b. [kha.(rá).tats] *! c. [(khá.ra).tats] *! Tableau 1: Lengthening of stressed vowels

53 Presentations I This presentation is made with the beamer package. Seems like the best option by far. I Pretty easy to use, well-documented. (Same author as PGF/TikZ.) I Source for this le available. I I've also put up a beamer template (which is really just the example from the beamer site). I To see what can be done, I will now switch to a dierent le.

54 Posters I I use the a0poster class along with textpos. I Produces A0-sized PDF les. (European size.) I Pretty easy to get to work with the poster printer upstairs.

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

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

Introduction to typesetting with L A TEX

Introduction to typesetting with L A TEX Introduction to typesetting with L A TEX Tips and Tools for Writing a Bachelor/Master Thesis Hein Meling hein.meling@uis.no November 4th 2015 Hein Meling (Univ. of Stavanger) LATEX introduction Nov. 2015

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

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

An Introduction to L A T E X

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

More information

L A TEX and Linguistics

L A TEX and Linguistics L A TEX and Linguistics How to make your research pretty Zac Smith & Todd Snider zcs5@cornell.edu & tns35@cornell.edu Cornell Linguistics Circle http://conf.ling.cornell.edu/clc/ Presented: September 12,

More information

Excellent support for mathematical formatting. Automatically downloads/installs missing components as needed Updates somewhat frequently

Excellent support for mathematical formatting. Automatically downloads/installs missing components as needed Updates somewhat frequently Overview Why Use L A TEX? L A TEX lets you focus on the content and not how a document looks Excellent support for mathematical formatting Good bibliography management Acquiring L A TEX Windows Linux MiKTeX

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

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

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

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

An Introduction to L A T E X

An Introduction to L A T E X An Introduction to L A T E X 1 Outline 1 Introduction 2 How to Get L A T E X 3 Text Mode 4 Math Modes 5 Document Structure 6 Extra Stuff Introduction 3 4 Introduction Today is November 11, 2009 Introduction

More information

L A TEX and Linguistics

L A TEX and Linguistics L A TEX and Linguistics How to make your research pretty Zac Smith & Todd Snider & Mia Wiegand zcs5@cornell.edu & tns35@cornell.edu & jrw369@cornell.edu Cornell Linguistics Circle http://conf.ling.cornell.edu/clc/

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

Getting ready for L A TEX. Alexis Dimitriadis. Version: March 28, 2013

Getting ready for L A TEX. Alexis Dimitriadis. Version: March 28, 2013 Getting ready for L A TEX Alexis Dimitriadis Version: March 28, 2013 LaTeX is a great system, but it takes some work to learn. Unfortunately, it also takes some work to set up the necessary software. This

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

LYX with Beamer and Sweave

LYX with Beamer and Sweave LYX with Beamer and Sweave Ziqian Zhou Department of Statistics University of Iowa February 21, 2012 Outline 1 Introduction to L A TEX and LYX 2 Basic LYX Walkthrough 3 Advanced Topics 4 LYX and Sweave

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

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

NCSU Linguistics Eric Wilbanks & Jeff Mielke. November 21, An open-source typesetting language used for document mark-up

NCSU Linguistics Eric Wilbanks & Jeff Mielke. November 21, An open-source typesetting language used for document mark-up L A TEX Workshop NCSU Linguistics Eric Wilbanks & Jeff Mielke November 21, 2014 1 What is L A TEX? An open-source typesetting language used for document mark-up Used in conjunction with various TEXEditors

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

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

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

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

THE UNIVERSITY OF CHICAGO MY DISSERTATION TITLE

THE UNIVERSITY OF CHICAGO MY DISSERTATION TITLE THE UNIVERSITY OF CHICAGO MY DISSERTATION TITLE A DISSERTATION SUBMITTED TO THE FACULTY OF THE DIVISION OF THE HUMANITIES IN CANDIDACY FOR THE DEGREE OF DOCTOR OF PHILOSOPHY DEPARTMENT OF LINGUISTICS BY

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

Intro History Version 2 Problems Software Future. Dr. StrangeBook. or: How I Learned to Stop Worrying and Love XML. Nigel Stanger

Intro History Version 2 Problems Software Future. Dr. StrangeBook. or: How I Learned to Stop Worrying and Love XML. Nigel Stanger Dr. StrangeBook or: How I Learned to Stop Worrying and Love XML Nigel Stanger Department of Information Science May 7, 2004 Dr. StrangeBook CIS Seminar 2004 1 What am I going to talk about? Document publication

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

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

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

Writing. October 3, 2006

Writing. October 3, 2006 Writing October 3, 2006 Outline Style Outline Outline Style LaTeX Outline Style LaTeX Publishing Style The hard part......is to write in such a way that the reader feels that, behind the text, there is

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

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, BibTEX, and Friends. Robert Buels. Outline. What is LATEX. Using BibTEX LYX the graphical LATEX Managing your BibTEX references Further reading

LATEX, BibTEX, and Friends. Robert Buels. Outline. What is LATEX. Using BibTEX LYX the graphical LATEX Managing your BibTEX references Further reading LATEX, BibTEX, and Friends Outline Robert Buels What is LATEX Using LATEX Using BibTEX LYX the graphical LATEX Managing your BibTEX references Further reading Pronunciation TEX : tech Properly: like loch

More information

Authoring OpenStax Documents in Apache OpenOffice Writer *

Authoring OpenStax Documents in Apache OpenOffice Writer * OpenStax-CNX module: m60462 1 Authoring OpenStax Documents in Apache OpenOffice Writer * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

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

Student Learning Service: Introduction to Latex

Student Learning Service: Introduction to Latex Student Learning Service: Introduction to Latex Dr Morgiane Richard, Oana Matei and Florin Nedelea m.richard@abdn.ac.uk Student Learning Service Updated June 2018 Richard, Matei, Nedelea (U.of Aberdeen)

More information

Using LaTex and BibTex to Write Academic Documents. Ligang He Department of Computer Science University of Warwick

Using LaTex and BibTex to Write Academic Documents. Ligang He Department of Computer Science University of Warwick Using LaTex and BibTex to Write Academic Documents Ligang He Department of Computer Science University of Warwick Introduction In LaTex, a markup language is used to describe document structure and format,

More information

Getting started with Latex

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

More information

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

Travels in TEX Land: Using memoir for a book

Travels in TEX Land: Using memoir for a book The PracTEX Journal, 2008, No. 4 Article revision 2008/12/10 Travels in TEX Land: Using memoir for a book David Walden Abstract In this column in each issue I muse on my wanderings around the TEX world.

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

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

Math 395 Homework #1 Due Wednesday, April 12

Math 395 Homework #1 Due Wednesday, April 12 Math 395 Homework #1 Due Wednesday, April 12 LaTex is a typesetting system that is widely used by mathematicians. It has the ability to typeset just about any mathematical notation, as well as complex

More information

My LaTeX Document. July 7, Introduction 2

My LaTeX Document. July 7, Introduction 2 My LaTeX Document Me July 7, 2017 Contents 1 Introduction 2 2 Exercises 2 2.1 Piecewise defined function...................... 2 2.2 Greek letters............................. 2 2.3 Limits.................................

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

Table of Contents Headings:... 2 Changing text to a heading... 2 Modifying Style settings for current and future documents... 2

Table of Contents Headings:... 2 Changing text to a heading... 2 Modifying Style settings for current and future documents... 2 Table of Contents Headings:... 2 Changing text to a heading... 2 Modifying Style settings for current and future documents... 2 Navigation Pane... 4 Finding Navigation Pane... 4 Using Navigation Pane...

More information

Getting Started with LATEX

Getting Started with LATEX Getting Started with L A TEX Or, why you might be interested in this L A TEX thing September 22nd, 2015 Introduction What this workshop is: Introduction to L A TEX Why you might care to use L A TEX A quick

More information

Overview. Dynamic documents with R and L A TEX (while citing properly) Outline. Software for your Statistical Analysis (1) knitr.

Overview. Dynamic documents with R and L A TEX (while citing properly) Outline. Software for your Statistical Analysis (1) knitr. Overview Dynamic documents with R and L A TEX (while citing properly) Michael Höhle 1 1 Department of Mathematics Stockholm University, Sweden Kandidatarbete i matematisk statistik VT-14 Seminarium, 25

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

DOWNLOAD PDF ABSOLUTE BEGINNERS GUIDE TO MICROSOFT OFFICE ONENOTE 2003 (ABSOLUTE BEGINNERS GUIDE)

DOWNLOAD PDF ABSOLUTE BEGINNERS GUIDE TO MICROSOFT OFFICE ONENOTE 2003 (ABSOLUTE BEGINNERS GUIDE) Chapter 1 : Absolute Beginner's Guide to Microsoft Office OneNoteâ [Book] Absolute Beginner's Guide to Microsoft Office OneNote is a from-scratch reference that helps you get up to speed quickly on this

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

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

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

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

Homework # You ll want to use some LaTeX editor to edit and compile your.tex files

Homework # You ll want to use some LaTeX editor to edit and compile your.tex files Homework # 1 What is LaTeX? LaTeX is a document markup language You prepare a (.tex) document, and compile it into a PDF LaTeX helps make your homework pretty (just like this document!) and makes us happy

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

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

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

GENERAL INFORMATION INSTRUCTIONS FOR MANUSCRIPT SUBMISSION

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

More information

Paul Gartside. March 2, 2013

Paul Gartside. March 2, 2013 SIAM L A TEX Workshop: Next Steps Paul Gartside March 2, 2013 1 Introduction Now you take your second steps learning how to create beautiful mathematical documents using L A TEX. All going well, you will

More information

Why learning L A TEX is worth the effort

Why learning L A TEX is worth the effort Why learning L A TEX is worth the effort David J. Gerberry Xavier University, Cincinnati, Ohio, USA MATH 295: Introduction to L A TEX Day 1 1 / 6 What is LATEX? Basic Idea of LATEX First LATEXarticle What

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

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

How to prepare slides using latex. How to prepare slides using latex.zip

How to prepare slides using latex. How to prepare slides using latex.zip How to prepare slides using latex How to prepare slides using latex.zip Make a PowerPoint presentation using Python? if you know how to LaTeX, Why would using higher ISO and faster shutter speed yield

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

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

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

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

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

INSTALLING AND USING L A TEX

INSTALLING AND USING L A TEX INSTALLING AND USING L A TEX DAVID MEREDITH Contents 1. Installing and Running L A TEX with Microsoft Windows 2 1.1. Installing the compiler MikTeX 2 1.2. Installing the editor TeXtudio 2 1.3. Running

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

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

Homework # (Latex Handout) by Laura Parkinson

Homework # (Latex Handout) by Laura Parkinson 1 Latex Homework # (Latex Handout) by Laura Parkinson Latex helps you make your homework pretty. It makes us happy when you use it. The best way to learn is by example, so here are some examples of pretty

More information

APPLIED COMPUTING 1P01 Fluency with Technology

APPLIED COMPUTING 1P01 Fluency with Technology APPLIED COMPUTING 1P01 Fluency with Technology Word Processing APCO/IASC 1P01 Brock University Brock University (APCO/IASC 1P01) Word Processing 1 / 30 Word Processors Word processors, at their core, are

More information

A brief introduction to L A TEX

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

More information

Electronic Production Guidelines

Electronic Production Guidelines Electronic Production Guidelines Illustrations It is a good idea to check out the draw programs you have available to you before you start drawing the figures for your article. Make sure that you can create

More information

sbthesis Documentation

sbthesis Documentation sbthesis Documentation K.E. Schubert Associate Professor August 26, 2009 1 Introduction I started this back in 2005, to simplify my student s work in preparing thesis. L A TEX does a much nicer job than

More information

1. The Joy of TEX. Check out this example!

1. The Joy of TEX. Check out this example! 1. The Joy of TEX 1. TEX is typesetting language for scientific documents. It is incredibly customizable and allows you define your own styles, shortcuts, etc, so that it rapidly becomes a time-saver.

More information

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013 Copyright This ebook is Copyright 2013 Teresa Miller (the Author ). All Rights Reserved. Published in the United States of America. The legal notices, disclosures, and disclaimers in the front and back

More information

Preparing your scribe

Preparing your scribe Ron Shamir January 11, 2018 Preparing your scribe 1 General Instructions Thank you for volunteering to write up notes on today s lecture. If you scribe on a Tuesday we ask that you please bring your notes

More information

Introduction to L A TEX

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

More information

PRISM Introduction to L A TEX

PRISM Introduction to L A TEX PRISM to L A TEX Matt Hitt & Ben Jones PRISM Department of Political Science hitt.23@osu.edu jones.2781@osu.edu January 20, 2011 LaTeX: What is it and why should you use it? LaTeX (pronounced lah-tech

More information

Chapter 11 Formatting a Long Document

Chapter 11 Formatting a Long Document Chapter 11 Formatting a Long Document Learning Objectives LO11.1: Work with styles LO11.2: Work with themes LO11.3: Change the style set LO11.4: Work with the document outline LO11.5: Change the margins

More information

Style template and guidelines for SPIE Proceedings

Style template and guidelines for SPIE Proceedings Style template and guidelines for SPIE Proceedings Anna A. Author1 a and Barry B. Author2 b a Affiliation1, Address, City, Country; b Affiliation2, Address, City, Country ABSTRACT This document shows the

More information

Math 3820 Project. 1 Typeset or handwritten? Guidelines

Math 3820 Project. 1 Typeset or handwritten? Guidelines Math 3820 Project Guidelines Abstract These are some recommendations concerning the projects in Math 3820. 1 Typeset or handwritten? Although handwritten reports will be accepted, I strongly recommended

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

The mat2doc documentation system

The mat2doc documentation system The mat2doc documentation system Peter L. Søndergaard July 17, 2014 1 About mat2doc mat2doc is a system made for extracting documenation from the Matlab function headers. You write the documentation in

More information

LATEX. Leslie Lamport. Digital Equipment Corporation. Illustrations by Duane Bibby. v ADDISON-WESLEY

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

More information

Strands & Standards WORD PROCESSING

Strands & Standards WORD PROCESSING Strands & Standards WORD PROCESSING COURSE DESCRIPTION This course reviews and builds upon skills acquired in Basics. As students create a variety of documents, increased efficiency, productivity, quality,

More information

New Perspectives on Word 2016 Instructor s Manual 1 of 10

New Perspectives on Word 2016 Instructor s Manual 1 of 10 New Perspectives on Word 2016 Instructor s Manual 1 of 10 New Perspectives Microsoft Office 365 And Word 2016 Introductory 1st Edition Shaffer SOLUTIONS MANUAL Full download at: https://testbankreal.com/download/new-perspectives-microsoft-office-365-

More information

Interdisciplinary Journal of Best Practices in Global Development Final Manuscript Preparation Guidelines

Interdisciplinary Journal of Best Practices in Global Development Final Manuscript Preparation Guidelines Interdisciplinary Journal of Best Practices in Global Development Final Manuscript Preparation Guidelines This document provides details on typesetting and layout requirements pertaining to final manuscript

More information

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX.

An Interactive Introduction to L A TEX. Part 2: Structured Documents & More. Dr John D. Lees-Miller. writel A TEX. An Interactive Introduction to L A TEX Part 2: Structured Documents & More Dr John D. Lees-Miller writel A TEX February 27, 2013 Outline Structured Documents Title and Abstract Sections Labels and Cross-References

More information

Introduction to MCS 220 and L A TEX

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

More information

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

Introduction to L A TEX beamer

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

More information

Functions and text files

Functions and text files Functions and text files Francesco Vespignani DiSCoF Università degli Studi di Trento. francesco.vespignani@gmail.com December 3, 2009 Today Functions and Scripts Latex Strings Text Files Practice Function

More information

L A TEX- Advanced Topics

L A TEX- Advanced Topics L A TEX- Advanced Topics Morag Agmon June 30, 2009 Outline 1 Modular documents 2 Figures 3 Shortcuts and tricks 4 Slides and posters 5 MiKTeX and Technical Issues Outline 1 Modular documents 2 Figures

More information