LaTeX A Tutorial. Mohsen Alimomeni, 2010

Similar documents
What is LaTeX. Is a document markup language and document preparation system for the TeX typesetting program

A Brief Introduction to L A TEX

L A TEX for Psychological Researchers

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

Getting started with Latex

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

Math 235: Introduction to LaTeX

An Introduction to LATEX

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

Dec. 27 th, 2010 University of Isfahan

Intro to LATEX I. Aaron Erlich POLS/CSSS 510, Why LATEX? Programming Document Structure Floats Tables Lists Math

COMP496/901: Academic Presentation and Writing Skills Using LaTeX

Helen Cameron. A Brief Overview of LATEX

An Interactive Introduction to L A TEX

An introduction to L A TEX for students

Guide to using L A TEX

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX

Helen Cameron. A Brief Overview of LATEX

LaTeX. Information Literacy II EN(IL2) Course

Introduzione a LaTex. Fabrizio Messina

Introduction to L A T E X

An Introduction to. Rado Ivanov CIS400 Senior Design Tutorial September 18, 2014

Using L A TEX Tom Edgar

L A TEX From The Ground Up

Latex Tutorial. CIS400 Senior Design 9/5/2013

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

Introduction to LaTeX. Paul Fodor Stony Brook University

Effective Programming Practices for Economists

David Helmbold, October 2005, Revised October 2007

L A TEX Tutorial. 1 Introduction. 2 Running L A TEX. J. E. Rice. May 2010

Basic L A TEX. what is LaTeX?

Latex Tutorial 1 L A TEX. 1.1 Text

L A TEX for Psychological Researchers

VERY VERY SHORT GUIDE TO LATEX

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

Learn how to [learn] LATEX

Introduction to LAT E X

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

Introduction to Latex. A workshop by Dr. Ala Eshmawi

Introduction to LATEX

Introduction to L A TEX

Introduction to LAT E X

L A TEX Overview. Jiayi Liu. January 31, Colorado School of Mines

Typing Mathematics. Darrin Doud

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

The basics of LaTeX. Cédric Buron. April 25, 2016

Aalborg October 2014

An Introduction to. Andrew G. West, Jian Chang CIS400 Senior Design Tutorial September 15, 2009

Assessments for CS students:

Introduction to LATEX

How to L A TEX. George Wong, David Mykytyn. 6 October 2016

L A TEX. The Logo. Introduction to L A TEX. Overview. Primary Benefits. Kinds of Documents. Bill Slough and Andrew Mertz

(Yet Another) Introduction to L A TEX 2ε (V3)

MATLAB for the Sciences

Introduction to L A TEX

T E X and L A T E X Document preparation tools

Become a L A TEX Guru

COMS 6100 Class note

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

An Introduction to LATEX

Document Preparation Using L A TEX

Using L A T E X for scientific writing

Introduction to L A TEX

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

A Brief Introduction to LaTeX

A L A T E X quick start

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

Basics. Options. Commands

Formatting with LaTeX

A Grasshopper s Approach to L A TEX

An Introduction to L A TEX

CSCM10 Research Methodology A Taster of L A TEX

WYSIWYG Systems. CSCM10 Research Methodology A Taster of L A TEX WYSIWYM. Advantages/Disadvantages of WYSIWYG Systems.

GROUP ASSIGNMENT. L A TEX Assignment 1/3

Introduction to MCS 220 and L A TEX

Workshop: A Simple Introduction to L A TEX

Introduction to L A TEX

Learning LaTeX: The Basics

Introduction to L A TEX

T E X and L A T E X For the Uninitiated

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

Getting Started in L A TEX

Workshop P. Stallinga 16-X-2012

Pimp your thesis: a minimal introduction to L A T E X.

L A TEX for psychological researchers

Research Method and Report Writing Lecture 4: An Introduction to L A TEX

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number.

An Introduction to L A T E X

L A T E X Workshop. Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology

Getting Started with L A T E X for a Technical Document or Thesis

Student Learning Service: Introduction to Latex

A Short Introduction to L A TEX

Guide to L A TEX. Daniel M. Kane

LaTeX: Scientific Document Writing

An introduction to LaTeX

A Short L A TEX Introduction

Lecture 3-Introduction to Latex (II)

L A TEX Workshop. Don Brower

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

Very Short Introduction to LaTeX

Transcription:

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 books) De facto standard for writing academic papers 5

Professional, Uniform output (example) Platform, version independent (Unix, Windows ) Pre-set standard formats (for paper, thesis ) Bibliography management Fast, professional math equations typesetting Portable, compatible, flexible, free The commands are easy to learn Never crash, never lose your file Can compile very big books (unless your document is more than 70,000 pages!) You will need it in future, so learn how to use it now! 6

Get a Latex distribution: Unix/Linux: TexLive: in Ubuntu- apt-get install texlive-base Windows MikTeX http://www.miktex.de/ TexLive Use an Editor: LEd (Free for windows recommended) WinEditor (Commercial for windows) Emacs / ispell for Linux/Windows Vim (For all - Free) TexMaker (For all - Free) 7

% my first LaTeX file \documentclass{article} % preamble \usepackage{graphicx} \begin{document} \section{this is a section} \subsection{this is a subsection} First paragraph is here. Second paragraph is here. \end{document} 9

Always begin with a backslash \ Case sensitive Consist of letters only Some have parameters Square brackets [ ] after the command name are for optional parameters Curly braces { } after the command name are for required parameters

Many environments available in TeX Used to help format parts of your document Always need \begin{environment name} and \end{environment name}

Itemize environment \begin{itemize} and \end{itemize} Creates an outline using bullet points Items within the section are created by \item Can nest itemize environments within one another

Enumerate environment \begin{enumerate} and \end{enumerate} Creates an outline using numbers and letters Items within the section are created by \item Can nest enumerate environments within one another Centered environment \begin{center} and \end{center} To end a line, use \\

May want to reference a section, theorem, figure, example, etc. somewhere else in the document To label a section: \section{title}\label{label for section} To reference a section: \ref{label for section} Only gives the section number you ll need to type Section separately

Mathematical text is placed between $ Math mode is normally displayed inline Can make some expressions look funny For text within math mode, use \text{ } Math mode uses italics and no spaces between words

Superscripts and Subscripts $x^2$ $x_2$ Use curly braces to group items together $x_{i_2}$ or $x_{min}$ Can have a superscript and a subscript on the same character $x_i^3$

Quote marks For left-hand quote marks, use `` For right-hand quote marks, use or Comments Can comment out sections of file Allows you to not display text without deleting it Use % at the beginning of any lines you want to comment out

Equation environment \begin{equation} and \end{equation} Automatically numbers equations For no numbers, use equation* Can label equations by \label{name} Centers equation on page Do not need $ within equation environment

Math Examples

Books Leslie Lampert. 1994. LaTeX: A Document Preparation System. Helmut Kopta and Patrick W. Daly. 2004.Guide to LaTex Frank Mittelbach et al. 2004. The LaTeX Companion Online Guides http://en.wikibooks.org/wiki/latex http://tobi.oetiker.ch/lshort/lshort.pdf CV and dissertation templates are available on line Google latex sth e.g. latex citation, latex table.