First UTA L A TEX Workshop part 1

Size: px
Start display at page:

Download "First UTA L A TEX Workshop part 1"

Transcription

1 First UTA L A TEX Workshop part 1 Andrew McKenzie (feat. Josh Jensen) February 6, 2011

2 1 Basics 2 Writing 3 Features 4 Linguistics 5 Closing

3 What s in this section Concepts and jargon Commands Simple text

4 What s in this section Concepts and jargon Commands Simple text

5 What s in this section Concepts and jargon Commands Simple text

6 Concepts TEX is a typesetting engine (Donald Knuth) L A TEX is a program consisting of macros that make TEX easy to use. (Leslie Lamport) workflow source file typeset output file.tex.pdf,.ps,.dvi The document consists of text, comments, and commands.

7 Text and comments Text is, well, text. Use % to mark a comment. All text for the rest of the paragraph will be ignored by TEX.

8 Commands Instructions to L A TEX are given with commands Sometimes, commands have arguments, which are delimited by curly braces ({... }) Commands can have options, too these are marked by brackets ([... ]) before any arguments. declaration \ldots... (cf....) command \textbf{chicken} chicken \begin[t]{picture}

9 Commands Instructions to L A TEX are given with commands Sometimes, commands have arguments, which are delimited by curly braces ({... }) Commands can have options, too these are marked by brackets ([... ]) before any arguments. declaration \ldots... (cf....) command \textbf{chicken} chicken \begin[t]{picture}

10 Commands Instructions to L A TEX are given with commands Sometimes, commands have arguments, which are delimited by curly braces ({... }) Commands can have options, too these are marked by brackets ([... ]) before any arguments. declaration \ldots... (cf....) command \textbf{chicken} chicken \begin[t]{picture}

11 Commands Instructions to L A TEX are given with commands Sometimes, commands have arguments, which are delimited by curly braces ({... }) Commands can have options, too these are marked by brackets ([... ]) before any arguments. declaration \ldots... (cf....) command \textbf{chicken} chicken \begin[t]{picture}

12 Commands Instructions to L A TEX are given with commands Sometimes, commands have arguments, which are delimited by curly braces ({... }) Commands can have options, too these are marked by brackets ([... ]) before any arguments. declaration \ldots... (cf....) command \textbf{chicken} chicken \begin[t]{picture}

13 What s in this section Structuring the document Preamble Sectioning Environments Basic writing Automatic stuff Accents Basic fonts

14 Basic document parts Use commands to instruct L A TEX how to structure your document \documentclass{article} \begin{document} Below is a picture of a polar bear covering its face in a blizzard. \end{document} % type of document % preamble % start of document % content % end of document

15 The preamble The preamble contains: Document class article, book, report, letter, beamer Title information Global options typography (fonts, headers, footers, bibliographies) Packages (sets of macros)

16 Use commands to split your document into sections. The commands have arguments that contain the title of the section. \section{introduction}... \subsection{discussion of the problem}... Basic parts section subsection subsubsection paragraph subparagraph chapter part only in book and report classes only in book and report classes

17 Section numbering L A TEX will automatically number your sections for you, even if you re-arrange them. If you don t want a section to be numbered, use the *-operator after the command name. \section*{introduction}... \subsection*{discussion of the problem}...

18 Environments An environment is a part of the text that is subject to a set of macros. Call for an environment using the \begin and \end commands. \begin{document}... \end{document} Declarations apply for the rest of their environment \begin{document} \bfseries % The text from here will be boldface \end{document}

19 Environments An environment is a part of the text that is subject to a set of macros. Call for an environment using the \begin and \end commands. \begin{document}... \end{document} Declarations apply for the rest of their environment \begin{document} \bfseries % The text from here will be boldface \end{document}

20 Environments An environment is a part of the text that is subject to a set of macros. Call for an environment using the \begin and \end commands. \begin{document}... \end{document} Declarations apply for the rest of their environment \begin{document} \bfseries % The text from here will be boldface \end{document}

21 Common environments document abstract picture figure tabbing quote quotation verbatim verse table tabular itemize enumerate description short blockquotes long blockquotes text including commands for the poetic types table ensconcer actual tables unordered lists ordered lists described lists

22 Delimiting scope There are other ways to delimit portions of your document. curly braces {... } brackets [... ] parentheses (... ) Stray curly braces are a common source of errors in typesetting

23 L A TEX will do it for you line breaks page breaks alignment (justified) hyphenation indentation paragraph breaks line spacing font size and weight word/sentence spacing \\ \pagebreak, \newpage (see later) \-,\hyphenate{wo-rd} \noindent \par \linespread{factor} (see later) (see later)

24 L A TEX will do it for you... or you can force it line breaks page breaks alignment (justified) hyphenation indentation paragraph breaks line spacing font size and weight word/sentence spacing \\ \pagebreak, \newpage (see later) \-,\hyphenate{wo-rd} \noindent \par \linespread{factor} (see later) (see later)

25 Accents Adding accents is pretty easy in L A TEX use a command. Note that to add one to i, you should use the dotless i : \ {\i} Image from zoom.png

26 Text symbols A lot of symbols are restricted to math mode (q.v.), but many are available in text. Many of these replace symbols used in instructions to L A TEX Image from

27 Math mode L A TEX was created for mathematicians and computer scientists, so it s very good at math. ( ) z 1 + ω i+1 + ζ x + 1 Θ + 1 y + 1 = 1 [ X + a â ] i N lim x k δc Equations are done in a special environment called math mode. Equations from

28 Math mode L A TEX was created for mathematicians and computer scientists, so it s very good at math. ( ) z 1 + ω i+1 + ζ x + 1 Θ + 1 y + 1 = 1 [ X + a â ] i N lim x k δc Equations are done in a special environment called math mode. Equations from

29 Math mode L A TEX was created for mathematicians and computer scientists, so it s very good at math. ( ) z 1 + ω i+1 + ζ x + 1 Θ + 1 y + 1 = 1 [ X + a â ] i N lim x k δc Equations are done in a special environment called math mode. Equations from

30 Math mode L A TEX was created for mathematicians and computer scientists, so it s very good at math. ( ) z 1 + ω i+1 + ζ x + 1 Θ + 1 y + 1 = 1 [ X + a â ] i N lim x k δc Equations are done in a special environment called math mode. Equations from

31 Math symbols Sometimes, we wanna use a symbol that is in math mode, but we don t want a whole equation. $... $ \[... \] Inside math mode, many symbols and operators are extremely useful. \to \emptyset \exists α \alpha Σ \Sigma

32 Superscripts and subscripts In math mode... $ t 3 $ t 3 $ tˆ3 $ t 3 Mary$ i$ Mary i

33 Curiosities Left quotes and scare quotes must use the ` key, instead of the apostrophe ( ) key. Right quotes you can use normally. Cogito ergo sum" "Cogito ergo sum" Cogito versus Cogito

34 Table of contents Foot- and endnotes Cross-referencing Lists

35 Some easy things \tableofcontents place where you want, typeset twice! \footnote{read the footnotes first, because that s where the bodies are buried.} \endnote{endnotes will occasionally take up more of a history monograph than the text itself.... } As usual, L A TEX will order all these for you. Watch out! Footnotes don t work in some environments (tables, examples) without a workaround.

36 Some easy things \tableofcontents place where you want, typeset twice! \footnote{read the footnotes first, because that s where the bodies are buried.} \endnote{endnotes will occasionally take up more of a history monograph than the text itself.... } As usual, L A TEX will order all these for you. Watch out! Footnotes don t work in some environments (tables, examples) without a workaround.

37 Some easy things \tableofcontents place where you want, typeset twice! \footnote{read the footnotes first, because that s where the bodies are buried.} \endnote{endnotes will occasionally take up more of a history monograph than the text itself.... } As usual, L A TEX will order all these for you. Watch out! Footnotes don t work in some environments (tables, examples) without a workaround.

38 Some easy things \tableofcontents place where you want, typeset twice! \footnote{read the footnotes first, because that s where the bodies are buried.} \endnote{endnotes will occasionally take up more of a history monograph than the text itself.... } As usual, L A TEX will order all these for you. Watch out! Footnotes don t work in some environments (tables, examples) without a workaround.

39 Some easy things \tableofcontents place where you want, typeset twice! \footnote{read the footnotes first, because that s where the bodies are buried.} \endnote{endnotes will occasionally take up more of a history monograph than the text itself.... } As usual, L A TEX will order all these for you. Watch out! Footnotes don t work in some environments (tables, examples) without a workaround.

40 Making a list Set up a listing environment (we ll see them) Use \item for each item in the list. \begin{itemize} \item First on the list \item Last on the list \end{itemize}

41 Making a list Set up a listing environment (we ll see them) Use \item for each item in the list. \begin{itemize} \item First on the list \item Last on the list \end{itemize}

42 Checking it twice itemize enumerate description Unordered list Ordered list List with descriptions \begin{itemize} \item First on the list \item Last on the list \end{itemize} First on the list Last on the list

43 Checking it twice itemize enumerate description Unordered list Ordered list List with descriptions \begin{enumerate} \item First on the list \item Last on the list \end{enumerate} 1 First on the list 2 Last on the list

44 Checking it twice itemize enumerate description Unordered list Ordered list List with descriptions \begin{description} \item[première]{first on the list} \item[dernière]{last on the list} \end{itemize} première First on the list dernière Last on the list

45 Examples Glosses IPA

46 One-line examples Call the gb4e package in the preamble: \usepackage{gb4e} In the document, call an example using the exe environment. \begin{exe} Each example begins with the \ex declaration \ex Colorless green ideas sleep furiously \ex Quadruplicity drinks procrastination End the examples by closing the environment \end{exe}

47 Judgments Put the judgment marker at the start of the example \ex *Colorless sleep furiously ideas green Use \ex as a command with arguments \ex[judgment]{example} \ex[*]{colorless sleep furiously ideas green} (1) a. * Colorless sleep furiously ideas green b.? Green ideas furiously sleep colorless (2) a. *Colorless sleep furiously ideas green b.?green ideas furiously sleep colorless

48 Judgments Put the judgment marker at the start of the example \ex *Colorless sleep furiously ideas green Use \ex as a command with arguments \ex[judgment]{example} \ex[*]{colorless sleep furiously ideas green} (1) a. * Colorless sleep furiously ideas green b.? Green ideas furiously sleep colorless (2) a. *Colorless sleep furiously ideas green b.?green ideas furiously sleep colorless

49 Judgments Put the judgment marker at the start of the example \ex *Colorless sleep furiously ideas green Use \ex as a command with arguments \ex[judgment]{example} \ex[*]{colorless sleep furiously ideas green} (1) a. * Colorless sleep furiously ideas green b.? Green ideas furiously sleep colorless (2) a. *Colorless sleep furiously ideas green b.?green ideas furiously sleep colorless

50 Judgments Put the judgment marker at the start of the example \ex *Colorless sleep furiously ideas green Use \ex as a command with arguments \ex[judgment]{example} \ex[*]{colorless sleep furiously ideas green} (1) a. * Colorless sleep furiously ideas green b.? Green ideas furiously sleep colorless (2) a. *Colorless sleep furiously ideas green b.?green ideas furiously sleep colorless

51 Subexamples Use the xlist environment to create sub-lists within examples. \begin{exe} \ex The dog ate my homework. \begin{xlist} \ex Le chien a mang\ e ma copie. \ex[ ]{Le chien a mang\ e ma copie.} \ex[??]{le chien mangea ma copie.} \end{xlist} \end{exe} (3) The dog ate my homework a. Le chien a mangé ma copie. b. Le chien a mangé ma copie. c.?? Le chien mangea ma copie.

52 More about examples Cross-reference examples by using \label{label name} on the \ex, and \ref{(label name)} in the text (note the parentheses). Use \exr{label} to use the example itself to have the number of another example. Use \exi{text} to customize the example number. To reset the numbering (after a chapter, for instance), use the command \setcounter{exx}{1}. An xlist environment must be prefaced by an \ex declaration, which may or may not have its own content. An xlist environment must also contain an \ex declaration for any examples inside it.

53 Interlinear Glosses In the exe environment... \ex\gll target language (data) \\ metalanguage (morpheme-by-morpheme) \\ \glt object language (translation) (4) la comida que come-ba-mos the.fem food that eat-impf-1.pl the food we were eating

54 Four-line glosses Use the \glll declaration instead of the \gll one. Be sure to end the first line with a linebreak (\\) (5) la la the.fem nourriture nuöityö food the food we were eating qu on mangeait kõ mãz-e that-one eat-impf-3.sg

55 Writing phonetically Use the tipa package, by putting in the preamble \usepackage{tipa} Three ways to call IPA: the IPA environment \begin{ipa} [ 2nb@liv@b\s{l}] \end{ipa} the \tipaencoding declaration (will work until delimited) { \tipaencoding [ 2nb@liv@b\s{l}] } the \textipa command (best for in-line use) \textipa{[ 2nb@liv@b\s{l}] }

56 One trick To make each word in the first line use IPA: \renewcommand{\eachwordone}{\tipaencoding} \renewcommand{\eachwordone}{\tipaencoding} \ex\label{verlaine} \gll Z\o m suvj\ E de Zu\;R z\ Asj\ E e Z\o pl\oe\;r \\ I myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg \glt I remember the old days, and I cry. (6) Zø I m suvjẽ de Zuö zãsjẽ e Zø plœö myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg I reminisce of the old days, and I cry.

57 One trick To make each word in the first line use IPA: \renewcommand{\eachwordone}{\tipaencoding} \renewcommand{\eachwordone}{\tipaencoding} \ex\label{verlaine} \gll Z\o m suvj\ E de Zu\;R z\ Asj\ E e Z\o pl\oe\;r \\ I myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg \glt I remember the old days, and I cry. (6) Zø I m suvjẽ de Zuö zãsjẽ e Zø plœö myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg I reminisce of the old days, and I cry.

58 One trick To make each word in the first line use IPA: \renewcommand{\eachwordone}{\tipaencoding} \renewcommand{\eachwordone}{\tipaencoding} \ex\label{verlaine} \gll Z\o m suvj\ E de Zu\;R z\ Asj\ E e Z\o pl\oe\;r \\ I myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg \glt I remember the old days, and I cry. (6) Zø I m suvjẽ de Zuö zãsjẽ e Zø plœö myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg I reminisce of the old days, and I cry.

59 One trick, cont. d \ex\label{verlaine} \gll Z\o m suvj\ E de Zu\;R z\ Asj\ E e Z\o pl\oe\;r \\ I myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg \glt I remember the old days, and I cry. (6) Zø I m suvjẽ de ZuR zãsjẽ e Zø plœr myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg I remember the old days, and I cry.

60 One trick, cont. d \ex\label{verlaine} \gll Z\o m suvj\ E de Zu\;R z\ Asj\ E e Z\o pl\oe\;r \\ I myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg \glt I remember the old days, and I cry. (6) Zø I m suvjẽ de ZuR zãsjẽ e Zø plœr myself remember.pres.1sg of.the day.pl old.pl and I cry.pres.1sg I remember the old days, and I cry.

61 Today we learned how to... write a L A TEX document use commands to instruct L A TEX structure a document set up a TOC and cross-referencing build lists typeset examples write glosses write phonetically

62 If you re making a handout... landscape layout: \documentclass[landscape]{article} two-column layout: \documentclass[twocolumn]{article} ([landscape,twocolumn]) use more of the page: \usepackage{fullpage} skips between paragraphs: \usepackage[parfill]{parskip} giving thanks: \thanks{blah blah blah} Must be inside the title command! basic font selection: \usepackage{times} place above \usepackage{tipa} (palatino, kpfonts, charter, bookman)

63 Trees Tableaux Bibliographies Tables Fonts Customization Layouts

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

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

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

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

Using L A T E X for scientific writing

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

More information

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

L A TEX. COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. LaTeX. Development. Why?

L A TEX. COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing. LaTeX. Development. Why? LaTeX A document preparation system Used to typeset a document COMPSCI 111 / 111G Mastering Cyberspace: An introduction to practical computing LaTeX Compiler L A TEX http://en.wikipedia.org/wiki/latex

More information

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

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

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

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

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

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

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

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

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

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

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

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

Lecture 1. MA2730: Analysis I. Lecture slides for MA2730 Analysis I. Study and Assessment Components. MA L A TEX: topics for Lecture 1

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

More information

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

Introduction to L A TEX

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

More information

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

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

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

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

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

More information

Workshop on LATEX 2ε. Asst. Prof. Dr. Kemal Bagzibagli Department of Economics. 20 May 2015

Workshop on LATEX 2ε. Asst. Prof. Dr. Kemal Bagzibagli Department of Economics. 20 May 2015 Workshop on LATEX 2ε Asst. Prof. Dr. Kemal Bagzibagli Department of Economics 20 May 2015 1 Outline 1 Introduction 2 Some L A TEX Features 3 Input File Structure 4 The Layout of the Document 5 Special

More information

A Brief Introduction to L A TEX

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

More information

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

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

L A TEX for Psychological Researchers

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

More information

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

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

An Introduction to LATEX

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

More information

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

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

More information

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

The LYX Tutorial. by Mohammed M. Kadhum

The LYX Tutorial. by Mohammed M. Kadhum The LYX Tutorial by Mohammed M. Kadhum January 23, 2011 2 Contents 1 Introduction 1 1.1 Welcome to LYX!......................... 1 1.2 What is LYX?........................... 1 1.3 LYX and Other Word Processors.................

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

Introduction to L A TEX

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

More information

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

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

Dec. 27 th, 2010 University of Isfahan

Dec. 27 th, 2010 University of Isfahan Lt Latex Introduction It ti Adapted from Latex Workshop [1] Dr. Bahman Zamani Dec. 27 th, 2010 University of Isfahan Overview What is Latex? Why Latex? Why not Latex? How to InstallLatex? Where to Start?

More information

Introduction to Scientific Typesetting Lesson 1: Getting Started

Introduction to Scientific Typesetting Lesson 1: Getting Started Introduction to Scientific Typesetting Lesson 1: Getting Started Ryan Higginbottom January 5, 2012 1 Our First The Structure of a L A T E X Our First L A T E X The Structure of a L A T E X 2 The Weaknesses

More information

Workshop: A Simple Introduction to L A TEX

Workshop: A Simple Introduction to L A TEX Workshop: A Simple Introduction to L A TEX Michael P. Fix Susanne Schorpp Georgia State University 142 October 2012 Outline 1 Introduction 2 The Basics 3 Typesetting Text 4 Typesetting Math 5 Tables and

More information

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

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

GROUP ASSIGNMENT. L A TEX Assignment 1/3

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

More information

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

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

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

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

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type T E X and L A T E X Document preparation tools This lecture will introduce software necessary to produce documents using L A T E X in the School of Computer Science. It will also show the basics of producing

More information

A Document Preparation System. User's Guide and Reference Manual. Leslie Lamport

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

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

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

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

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

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

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

L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July Cheryl Ponchin Sue DeMerritt

L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July Cheryl Ponchin Sue DeMerritt L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July 2004 Cheryl Ponchin Sue DeMerritt i Contents 1 Table of Contents 1 Youmayneedtoaddextrainformation... 1 Adding to Contents 1 2 Make an

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

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

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

Introduction to LAT E X

Introduction to LAT E X Introduction to LAT E X RSI 2012 Staff Contents What is L A T E X?........................................ 1 First Example........................................ 2 Compiling...........................................

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

Effective Programming Practices for Economists

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

More information

Introduction to L A T E X

Introduction to L A T E X L A T E X R. M. Department of Mathematics University of Kentucky 6 October 2008 / L A T E X Outline T E X T E X was begun by Donald Knuth in 1977 because he did not like the appearance of his book The

More information

UBCWPL stylesheet. Natalie Weber University of British Columbia

UBCWPL stylesheet. Natalie Weber University of British Columbia UBCWPL stylesheet Natalie Weber University of British Columbia Abstract: This document is the house stylesheet for UBCWPL publications. We include best practices for tables, figures, and examples. There

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

Absolute L A TEX Beginner

Absolute L A TEX Beginner Latest version of this document at http://liantze.googlepages.com/latextypesetting#beginner Absolute L A TEX Beginner Lim Lian Tze liantze@gmail.com Abstract Most people use the ubiquitous Word TM for

More information

L A TEX From The Ground Up

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

More information

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

Math 291: Lecture 4. Dr. Fagerstrom. Minnesota State University Moorhead web.mnstate.edu/fagerstrom

Math 291: Lecture 4. Dr. Fagerstrom. Minnesota State University Moorhead web.mnstate.edu/fagerstrom Math 291: Lecture 4 Dr. Fagerstrom Minnesota State University Moorhead web.mnstate.edu/fagerstrom fagerstrom@mnstate.edu February 8, 2018 Dr. Fagerstrom (MSUM) Math 291: Lecture 4 February 8, 2018 1 /

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

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

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

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

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

Introduction to LAT E X

Introduction to LAT E X Introduction to LAT E X RSI 2006 Staff Contents What is L A T E X?........................................ 1 L A T E X command syntax................................... 2 Starting your L A T E X document...............................

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

A Quick L A TEX Primer

A Quick L A TEX Primer A Quick L A TEX Primer Gordon J. Pace Contents 1 Introduction 3 1.1 Motivation.............................. 3 1.2 What is L A TEX?............................ 3 1.3 Trivia.................................

More information

WYSIWYG Systems. CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems

WYSIWYG Systems. CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems WYSIWYG Systems CSCM10 Research Methodology Lecture 4 (11/2/16): A Taster of L A TEX Anton Setzer http://www.cs.swan.ac.uk/ csetzer/lectures/ computerscienceprojectresearchmethods/current/index.html WYSIWYG

More information

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

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

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

LaTeX Workshop. While you re waiting, please make an account at

LaTeX Workshop. While you re waiting, please make an account at LaTeX Workshop While you re waiting, please make an account at http://sharelatex.com 1 High-level overview Intro: What is LaTeX, why bother learning it? Structure of a LaTeX document What does a document

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Guillermo Toral & Weihuang Wong MIT September 15, 2017 These slides build on materials from previous years by Dan de Kadt and Elizabeth Keysner, and on The Not So Short Introduction

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

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

Very Short Introduction to LaTeX

Very Short Introduction to LaTeX Very Short Introduction to LaTeX Johann Mitlöhner 2015 1 Motivation The computer scientist Donald Knuth developed the program TeX [1] in the late 70s to facilitate typesetting texts containing mathematical

More information

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

VERY VERY SHORT GUIDE TO LATEX

VERY VERY SHORT GUIDE TO LATEX - a System VERY VERY SHORT GUIDE TO LATEX School of Mathematics September 2017 - a System Advantages... Disadvantages... The Basics THE BASIC IDEA A word processor allows the user to design the document

More information

LATEX 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

Preliminary documentation for gb4e.sty and cgloss4e.sty

Preliminary documentation for gb4e.sty and cgloss4e.sty Preliminary documentation for gb4e.sty and cgloss4e.sty hans-peter kolb Craig Thiersch Contents 1 Linguistic examples in L A TEX 2 1.1 Examples with

More information

L A TEX Workshop. An Introduction to L A TEX. Rakesh Jana Research Scholar Department of Mathematics IIT Guwhati

L A TEX Workshop. An Introduction to L A TEX. Rakesh Jana Research Scholar Department of Mathematics IIT Guwhati L A TEX Workshop An Introduction to L A TEX Rakesh Jana j.rakesh@iitg.ernet.in Date: 2018/08/24 Research Scholar Department of Mathematics IIT Guwhati Overview 1. What is L A TEX? 2. First L A TEX document

More information

1 Different Document Classes

1 Different Document Classes 1 Different Document Classes There are several different document classes that can format just about any type of document. This is the very first line of your L A TEX code. It will define what kind of

More information

CSCM10 Research Methodology A Taster of L A TEX

CSCM10 Research Methodology A Taster of L A TEX CSCM10 Research Methodology A Taster of L A TEX Anton Setzer http://www.cs.swan.ac.uk/ csetzer/lectures/ computerscienceprojectresearchmethods/current/index.html November 10, 2016 CSCM10 Lecture 4, 11/2/16:

More information