CS 189 L A TEX and Linux: Displaying Text

Size: px
Start display at page:

Download "CS 189 L A TEX and Linux: Displaying Text"

Transcription

1 CS 189 L A TEX and Linux: Displaying Text (1) Robert S. Laramee Computer Science Department School of Physical Sciences Swansea University February 21, 2008 (1) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

2 Overview of Lecture Fonts and Sizes Font Changing Commands (2) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

3 Font Changing Commands Fonts and Sizes L A TEX chooses the appropriate font and font size based on the logical structure of the document (sections, footnotes,... ). To change fonts this, you can use the commands listed in the tables. The actual size of each font is a design issue and depends on the document class and its options. The tables provided show the absolute point size for these commands as implemented in the standard document classes. {\small The small and \textbf{bold} Romans ruled} {\Large all of great big \textit{italy}.} The small and bold Romans ruled all of great big Italy. One important feature of L A TEX 2ε is that the font attributes are independent. This means that you can issue size or even font changing commands, and still keep the bold or slant attribute set earlier. (3) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

4 Font Changing Commands Fonts Sizes Table: Font Sizes.: These are commands to change font size. \tiny \scriptsize \footnotesize \small \normalsize \large tiny font very small font quite small font small font normal font large font \Large \LARGE \huge \Huge larger font very large font huge largest (4) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

5 Font Changing Commands Fonts Sizes (Continued) Table: Absolute Point Sizes in Standard Classes: Mapping commads to point sizes size 10pt (default) 11pt option 12pt option \tiny 5pt 6pt 6pt \scriptsize 7pt 8pt 8pt \footnotesize 8pt 9pt 10pt \small 9pt 10pt 11pt \normalsize 10pt 11pt 12pt \large 12pt 12pt 14pt \Large 14pt 14pt 17pt \LARGE 17pt 17pt 20pt \huge 20pt 20pt 25pt \Huge 25pt 25pt 25pt Trivia: There are about points per inch or about per cm. (5) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

6 Font Changing Commands Font Styles Table: Font Styles: Use these commands to change the style of font \textrm{...} roman \textsf{...} sans serif \texttt{...} typewriter \textmd{...} medium \textbf{...} bold face \textup{...} upright \textit{...} italic \textsl{...} slanted \textsc{...} Small Caps \emph{...} emphasized \textnormal{...} document font Here is \emph{emphasized text}. Here is emphasized text. Curly braces play a significant role. They are used to build groups. Groups limit the scope of most L A TEX commands. (6) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

7 Font Changing Commands Font Styles (Continued) The font size commands also change the line spacing, but only if the paragraph ends within the scope of the font size command. The closing curly brace } should therefore not come too early. If you want to activate a size changing command for a whole paragraph of text or even more, you might want to use the environment syntax for font changing commands. \begin{large} This is not true. But then again, what is these days \ldots \end{large} This is not true. But then again, what is these days... This will save you from counting lots of curly braces. (7) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

8 The environments flushleft and flushright generate paragraphs that are either left- or right-aligned. The center environment generates centred text. If you do not issue \\ to specify line breaks, L A TEX will automatically determine line breaks. \begin{flushleft} This text is \\ left-aligned. \LaTeX{} is not trying to make each line the same length. \end{flushleft} This text is left-aligned. L A TEX is not trying to make each line the same length. (8) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

9 (Continued) \begin{flushright} This text is right-\\ aligned. \LaTeX{} is not trying to make each line the same length. \end{flushright} This text is rightaligned. L A TEX is not trying to make each line the same length. \begin{center} At the centre \\ of the earth \end{center} At the centre of the earth (9) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

10 The quote environment is useful for quotes, important phrases and examples. A typographical rule of thumb for the line length is: On average, no line should be longer than 66 characters. This is why L A TEX pages have such large borders by default and also why multicolumn print is used in newspapers. There are two similar environments: the quotation and the verse environments. The quotation environment is useful for longer quotes going over several paragraphs, because it indents the first line of each paragraph. The verse environment is useful for poems where the line breaks are important. The lines are separated by issuing a \\ at the end of a line and an empty line after each verse. (10) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

11 (Continued) \begin{flushleft} \begin{verse} Humpty Dumpty sat on a wall:\\ Humpty Dumpty had a great fall.\\ All the King s horses and all the King s men \\ Couldn t put Humpty together again. \end{verse} \end{flushleft} Humpty Dumpty sat on a wall: Humpty Dumpty had a great fall. All the King s horses and all the King s men Couldn t put Humpty together again. (11) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

12 The itemize environment is suitable for simple lists, the enumerate environment for enumerated lists, and the description environment for descriptions. \begin{enumerate} \item This is the first item on an enumerated list. \begin{itemize} \item This is the first item on a (nested) itemized list. \item This is the 2nd item on a (nested) itemized list. \end{itemize} \item This example illustrates nested lists. \begin{description} \item[1st] Here is the first item in a description. \item[2nd] Here is the second item in a description. \end{description} \end{enumerate} (12) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

13 (Continued) 1. This is the first item on an enumerated list. This is the 1st item on a (nested) itemized list. This is the 2nd item on a (nested) itemized list. 2. This example illustrates nested lists. 1st Here is the first item in a description. 2nd Here is the second item in a description. Tip: Use indenting whenever nesting is used.. Tip: Notice how similar this is to HTML. (13) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

14 Changing Label Style You can change the label styles for items. The labels for itemize have the names \labelitemi \labelitemii \labelitemiii \labelitemiv The labels for enumerate have the names \labelenumi \labelenumii \labelenumiii \labelenumiv There s one for each level of nesting, with \labelitemi being the first. (14) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

15 Changing Label Style (Continued) These commands may be altered with the \renewcommnas, e.g.,: \renewcommand{\labelitemi}{+} \renewcommand{\labelitemii}{++} Can be used to produce: + Item List 2, Item 1 ++ List 2, Item 2 + Item 2. + Item 3. If the new labels are to apply to the whole document, the redefining commands should be included in the preamble. Otherwise they are valid only within the environment in which they appear. (15) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

16 Changing Label Style with Counters There is a counter for each enumerate level, named enmi, enmii, enmiii, and enmiv. The value of a counter can be prnited using one of the commands: \arabic for Arabic numerals (1,2,3,... ) \roman for Lowercase Roman numerals (i,ii,iii,... ) \Roman for Uppercase Roman numerals (I,II,III,... ) \alph for Lowercase letters (a,b,c,... ) \Alph for Uppercase letters (A,B,C,... ) For example, \Roman{xyz} prints the current value of the counter xyz in upper case Roman numerals. In addition to the counters listed above, here are some exmples with the page counter: This is page: \arabic{page}. In Roman: \Roman{page} This is page: 16. In Roman: XVI (16) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

17 Changing Label Style with Counters (Continued) These counters, together with the counter style commands, can be used in the redefinitions of the label commands. For example, to change the second-level label to Arabic numerals followed by.), we can use: \renewcommand{\labelenumii}{\arabic{enumii}.)} This redefines \labelenumii to the value of counter enumii printed in Arabic, plus the characters.). In other words like: 1.), 2.), 3.).... All the numbering levels may be changed in this way. It is even possible to include more than one counter: \renewcommand{\labelenumii}{\alph{enumi},\arabic{enumii}} This produces the value of the counter enumi as a capital letter followd by the value of counter enumii as a number for every call to \item. The result looks like: A.1, A.2,..., B.1, B.2,..... Tip: You can make slight alterations to these commands for the assessed coursework. (17) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

18 Printing Literal Text: Verbatim Text that is enclosed between \begin{verbatim} and \end{verbatim} will be directly printed, as if typed on a typewriter, with all line breaks and spaces, without any L A TEX command being executed. Within a paragraph, similar behavior can be accessed with \verb+ \emph{text} + The + is just an example of a delimiter character. You can use any character except letters, * or space. Many L A TEX examples in this lecture are typeset with this command. \begin{verbatim} 10 PRINT "HELLO WORLD "; 20 GOTO 10 \end{verbatim} (18) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

19 Printing Literal Text: Verbatim (Continued) 10 PRINT "HELLO WORLD " on \today; 20 GOTO 10 The starred version of the verbatim environment emphasizes the spaces in the text The verb command can be used in a similar fashion with a star: \verb* like this like this The verbatim environment and the \verb command may not be used within parameters of other commands. (19) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

20 Acknowledgments We thank the authors of, A Not So Short Guide to L A TEX, namely, Tobias Oetiker, Hubert Partl, Irene Hyna and Elisabeth Schlegl, for valuable contributions to this lecture material. We also thank the authors of, A Guide to L A TEX Fourth Edition, namely, Helmut Kopka and Patrick W. Daly for valuable contributions to this lecture material. (20) Robert S. Laramee CS 189 LATEX and Linux: Displaying Text

Indian T E X Users Group

Indian T E X Users Group Indian T E X Users Group URL: http://www.river-valley.com/tug 4 On-line Tutorial on L A T E X The Tutorial Team Indian T E X Users Group, sjp Buildings, Cotton Hills Trivandrum 695014, india 2000 Prof.

More information

CS 189 L A TEX and Linux: Text in Boxes

CS 189 L A TEX and Linux: Text in Boxes CS 189 L A TEX and Linux: Text in Boxes (1) Robert S. Laramee Computer Science Department School of Physical Sciences Swansea University March 4, 2008 (1) Robert S. Laramee CS 189 LATEX and Linux: Text

More information

Indian T E X Users Group

Indian T E X Users Group Indian T E X Users Group URL: http://www.river-valley.com/tug 4 On-line Tutorial on L A T E X The Tutorial Team Indian TEX Users Group, SJP Buildings, Cotton Hills Trivandrum 695014, INDIA 2000 Prof. (Dr.)

More information

Basic commands. Katja Barnickel

Basic commands. Katja Barnickel Basic commands Katja Barnickel katja.barnickel@uni-leipzig.de L A TEX for Linguists Doktorandenforum 2015 03.03.15 Contents 1 Text formatting 2 1.1 Special characters.....................................

More information

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

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

More information

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

Useful L A TEX Commands

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

More information

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

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

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

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

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 Workshop. Don Brower

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

More information

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

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

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

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

Introduzione a LaTex. Fabrizio Messina

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

More information

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

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

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

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

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

Part - I : Short Course Typing Text

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

More information

L A TEX minicourse. dstowell, mag, sar, scannell,... September Typeset by FoilTEX

L A TEX minicourse. dstowell, mag, sar, scannell,... September Typeset by FoilTEX L A TEX minicourse dstowell, mag, sar, scannell,... September 2003 Typeset by FoilTEX What it is What is L A TEX? a typesetting system for creating high-quality documents allows you to create complex-looking

More information

simpletex Documentation

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

More information

beginlatex /12/ : page #199

beginlatex /12/ : page #199 beginlatex --- 2018/12/4 --- 23:30 --- page 163 --- #199 7Programmability We ve touched several times on the ability of L A TEX to be reprogrammed. This is one of its central features, and one that still,

More information

L A TEX: Online module 2

L A TEX: Online module 2 L A TEX: Online module 2 Venkata Manem Univ. of Waterloo July 22, 2011 Venkata Manem (Univ. of Waterloo) LATEX: Online module 2 July 22, 2011 1 / 28 Topics to be covered Typeface Font size Special characters

More information

LAT E X week 2: Basics for Writing a Document

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

More information

Essential L A TEX. Jon Warbrick Luis Rivera 1989/2014

Essential L A TEX. Jon Warbrick Luis Rivera 1989/2014 Essential L A TEX Jon Warbrick Luis Rivera 1989/2014 1 Introduction This document is an attempt to give you all the essential information that you will need in order to use the L A TEX Document Preparation

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

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

About Downloads Basics Pictures Reference Help TeXer

About Downloads Basics Pictures Reference Help TeXer LaTeX Want to learn how to tackle those tough MATHCOUNTS and AMC counting and probability problems? Check out Art of Problem Solving's Introduction to Counting & Probability by David Patrick. Login Bookstore

More information

Mikkel Madsen

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

More information

Basic Text. M. R. C. van Dongen. ucc. LaTEX and Friends Basic Text Marc van Dongen.

Basic Text. M. R. C. van Dongen.  ucc. LaTEX and Friends Basic Text Marc van Dongen. http://csweb.ucc.ie/~dongen/laf/laf.html M. R. C. van Dongen ucc Ten Token Purpose Command # parameter reference \# $ math mode switch \$ % start of comment \% & alignment tab \& text tie token \textasciitilde

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

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

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

Text typesetting guide

Text typesetting guide Text typesetting guide Carleton College L A TEX workshop Although L A TEX is best known for its mathematical typesetting, it is also very good at typesetting plain text. It offers a variety of features

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

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

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

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

More information

An Introduction to L A TEX

An Introduction to L A TEX An Introduction to L A TEX Paddy Johnson edited by J. Kinsella January 26, 2012 0-0 MS4024 Numerical Computation L A TEXNotes 1 1 Getting Acquainted with L A TEX 1.1 Why use L A TEX? With Word Processing

More information

Basic Text Formatting with L A T E X

Basic Text Formatting with L A T E X with L A T E X Department of Electrical Engineering June 30th 2010 Special Characters Single quotation marks: left and right Double quotation marks: two single left quotes and two single right quotes or

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

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

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

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

More information

Appendix D CSS Properties and Values

Appendix D CSS Properties and Values HTML Appendix D CSS Properties and Values This appendix provides a brief review of Cascading Style Sheets (CSS) concepts and terminology, and lists CSS level 1 and 2 properties and values supported by

More information

Why is there money? Received Date; Received in Revised Form Date; Accepted Date

Why is there money? Received Date; Received in Revised Form Date; Accepted Date Why is there money? First Author a,, Second Author b a Institute of Far Away Places; b Institute of Even Further Away Places Received Date; Received in Revised Form Date; Accepted Date Abstract The oldest

More information

Title of Your Thesis: Subtitle of Your Thesis

Title of Your Thesis: Subtitle of Your Thesis Title of Your Thesis: Subtitle of Your Thesis A thesis presented by James W. Smith to The Department of Mathematics in partial fulfillment of the requirements for the degree of Doctor of Philosophy in

More information

Introduction to L A TEX

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

More information

A 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

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

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

More information

PHYS-4007/5007: Computational Physics

PHYS-4007/5007: Computational Physics PHYS-4007/5007: Computational Physics L A TEX Tutorial Learning the L A TEX Mark-up Language Log into your Linux account, open a terminal window, and change directory to your tex subdirectory. Now open

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

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

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

Introduction to LaTeX. M&S Talk Series August 16 th, 2016 AH Sheikh

Introduction to LaTeX. M&S Talk Series August 16 th, 2016 AH Sheikh Introduction to LaTeX M&S Talk Series August 16 th, 2016 AH Sheikh What is LaTeX? LaTeX is pronounced lay-tech or lah-tech, not la-teks. LaTeX is a document preparation system for high-quality typesetting.

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

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

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

Setting Up Your Dissertation Format Using MS Word2000. Overview of the Process

Setting Up Your Dissertation Format Using MS Word2000. Overview of the Process Setting Up Your Dissertation Format Using MS Word2000 This procedure assumes that you are familiar with the basics of using MS Word2000. It uses the more advanced features of Styles, Table of Contents,

More information

Report - Extended Font Sizes

Report - Extended Font Sizes Report - Extended Font Sizes The Author The Date Contents I The First Part 2 1 Report - Extended Font Sizes 3 2 Using This Shell 5 3 Headings and Tags 6 3.1 Section........................ 6 3.1.1 Subsection..................

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

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

Kozák Imre, Szeidl György FEJEZETEK A SZILÁRDSÁGTANBÓL

Kozák Imre, Szeidl György FEJEZETEK A SZILÁRDSÁGTANBÓL Kozák Imre, Szeidl György FEJEZETEK A SZILÁRDSÁGTANBÓL MISKOLCI EGYETEMI KIADÓ 2002 Tartalomjegyzék 1. About this Shell 2 2. Features of this Shell 3 2.1. Section.......................................

More information

A Quick Guide to L A TEX

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

More information

CSS. Lecture 16 COMPSCI 111/111G SS 2018

CSS. Lecture 16 COMPSCI 111/111G SS 2018 CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS Styles A style changes the way the HTML code is displayed Same page displayed using different styles http://csszengarden.com Same page with a style sheet

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

The aaltoseries class Copyright 2011 2012 Aalto University Publications julkaisut@aalto.fi Maintained by Jussi Pekonen URL: https://wiki.aalto.fi/display/aaltolatex/ 2012/03/11, Version 1.2 Abstract provides the L A TEX definitions

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

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

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

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

Introduction to Web Tech and Programming

Introduction to Web Tech and Programming Introduction to Web Tech and Programming Cascading Style Sheets Designed to facilitate separation of content and presentation from a document Allows easy modification of style for an entire page or an

More information

Essential La TE X. Jon Warbrick. January 21, omitted. In a document of this size it is not possible to include everything

Essential La TE X. Jon Warbrick. January 21, omitted. In a document of this size it is not possible to include everything Essential La TE X Jon Warbrick January 21, 1997 1 Introduction This document is an attempt to give you all the essential information that you will need in order to use the LaT E XDocument Preparation System.

More information

CSS Lecture 16 COMPSCI 111/111G SS 2018

CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS CSS Lecture 16 COMPSCI 111/111G SS 2018 Styles Astyle changes the way the HTML code is displayed Same page displayed using different styles Same page with a style sheet body font-family: sans-serif;

More information

Without savetrees. An Example Document

Without savetrees. An Example Document Without savetrees An Example Document Leslie Lamport January 21, 1994 This is an example input file. Comparing it with the output it generates can show you how to produce a simple document of your own.

More information

Introduction to L A TEX

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

More information

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

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

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em>

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em> Introduction to CSS Review Question 1 Which tag is used to create a link to another page? 1. 2. 3. 4. Review Question 1 Which tag is used to create a link to another page? 1. 2.

More information

19. Bulleted and Numbered Lists

19. Bulleted and Numbered Lists Kennesaw State University DigitalCommons@Kennesaw State University Sexy Technical Communications Open Educational Resources 3-1-2016 19. Bulleted and Numbered Lists David McMurray Follow this and additional

More information

Basics. Options. Commands

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

More information

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

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

A quick guide to L A TEX

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

More information

DEMYSTIFYING THE FORMAT MAIN BODY *UPDATED AUG 12, 2010* USF

DEMYSTIFYING THE FORMAT MAIN BODY *UPDATED AUG 12, 2010* USF DEMYSTIFYING THE FORMAT MAIN BODY *UPDATED AUG 12, 2010* WHAT IS REQUIRED BY THE GS? It is essenhal that all demonstrate CONSISTENCY WITHIN THE manuscript Fonts, spacing, header style, references BODY

More information

CLV Manual. How to Use CLV L A TEX Style. Odié N. Gementera SPI Publisher Services

CLV Manual. How to Use CLV L A TEX Style. Odié N. Gementera SPI Publisher Services CLV Manual How to Use CLV L A TEX Style Odié N. Gementera SPI Publisher Services This article describes how to use the article class and CLV1 style with L A TEX to produce typeset papers based on Computer

More information

Travels in TEX Land: Using the Lucida fonts

Travels in TEX Land: Using the Lucida fonts The PracTEX Journal TPJ 2006 No 01, 2006-02-18 Article revision 2006-01-31 Travels in TEX Land: Using the Lucida fonts David Walden Abstract This paper describes buying, installing, and beginning to use

More information

Microsoft Word 2007 Lesson 1

Microsoft Word 2007 Lesson 1 Microsoft Word 2007 Lesson 1 Open Word from the Start menu. In this menu, select All Programs, Microsoft Office, Microsoft Office Word 2007. You should see a blank document in the Word window. Look at

More information

The Title of an Article with Extended Font Sizes

The Title of an Article with Extended Font Sizes The Title of an Article with Extended Font Sizes A. U. Thor The University of Stewart Island December 8, 2006 Abstract We study the e ects of warm water on the local penguin population. The major nding

More information

Introduction to LATEX2 "

Introduction to LATEX2 The Not So Short Introduction to LATEX2 " Or L A T E X2e in 62 minutes by Tobias Oetiker Hubert Partl, Irene Hyna and Elisabeth Schlegl Version 2.2-Beta, 25th January, 1996 ii This document is \public

More information

units.sty nicefrac.sty

units.sty nicefrac.sty units.sty nicefrac.sty Axel Reichert 1998-08-04 Abstract units.sty is a package for setting units in a typographically correct way. It is based upon nicefrac.sty, a package for nice fractions. See the

More information

HTML/XML. HTML Continued Introduction to CSS

HTML/XML. HTML Continued Introduction to CSS HTML/XML HTML Continued Introduction to CSS Entities Special Characters Symbols such as +, -, %, and & are used frequently. Not all Web browsers display these symbols correctly. HTML uses a little computer

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

Web Site Design and Development Lecture 6

Web Site Design and Development Lecture 6 Web Site Design and Development Lecture 6 CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM Inheritance Before we talk about font properties, it needs to be known that font properties are inherited by the descendants

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

Introduction to Scientific Typesetting Lesson 11: Foreign Languages, Columns, and Section Titles

Introduction to Scientific Typesetting Lesson 11: Foreign Languages, Columns, and Section Titles Introduction to Scientific Typesetting Lesson 11: Foreign Languages,, and Ryan Higginbottom January 19, 2012 1 Ð The Package 2 Without Ð What s the Problem? With Ð Using Another Language Typing in Spanish

More information