By Rajyalakshmi Divi IIT Bombay

Slides:



Advertisements
Similar presentations
Tutorial 3 – Creating a Multiple-Page Report
Advertisements

Change font face Change font size Align left.
Lecture 8 Introduction to Latex. Introduction TeX is essentially a Markup Language (like HTML, XML and RTF) TeX written by Donald Knuth in 70´s –A revolution.
Page margin margin for header and footer. page size page orientation.
COE201 – Computer Proficiency Mr. Hamze Msheik
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Word 2003 Lab 3 Creating Reports and Tables.
ETT 429 Spring 2007 Web Design I.
For AMS 200, 2009 Dept. of Applied Math & Statistics School of Engineering University of California Santa Cruz, CA A Very Short Introduction to LaTeX.
Research Tools: LaTex A high quality document preparation system by Karthikeyan Umapathy.
Introduction to LaTeX PRISM Brownbag Series June 9 th, 2009 Byungwon Woo.
Introduction to… About Tex & LaTeX What is TeX? What is LaTeX? Advantages - Disadvantages.
Introduction to Latex A very quick look at typesetting documents Andrei Gurtov (based on Troy D. Milner and Simon Cuce slides)
Introduction to Unix – CS 21 Lecture 16. Lecture Overview LaTeX History Running and creating LaTeX documents Documents and Articles Tables Lists Fonts.
Introduction to LaTeX Thomas Gorry. What is Latex?  A typesetting system used to produce professional looking documents.  Particularly good at handling.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
LATEXLATEX IPA – batch. LATEXLATEX  A document preparation system - pronounced as lay-tek  It is a markup and programming language created by.
Standard Grade Computing General Purpose Packages WORD-PROCESSING WORD-PROCESSING Chapter 2.
CPG 4331 Class Agenda Word  Getting Started  Editing Documents  Changing Views in Documents  Format Text / Format Documents  Work With Tables  Work.
3.01 – Day 3 - Formatting, Alignment, and Page Setup.
XP New Perspectives on Microsoft Word 2002 Tutorial 31 Microsoft Word 2002 Tutorial 3 – Creating a Multiple-Page Report.
1 Lesson 18 Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
June LaTeX " A typesetting package for formatting and creating documents. Created by L. Lamport based on TeX designed by D. Knuth. " Alphanumeric.
Business Documents with Word
Creating documents 09/18/13 Introduction to Latex.
Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition Lesson 19 Organizing and Enhancing Worksheets 1 Morrison / Wells / Ruffolo.
McGraw-Hill Career Education© 2008 by the McGraw-Hill Companies, Inc. All Rights Reserved. Office Word 2007 Lab 3 Creating Reports and Tables.
SIGNewGrad: Intro to LaTeX
1 Lesson 13 Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Module ESSENTIALSBEYOND THE ESSENTIALS © 2012 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly.
C151 Multiuser Operating Systems Introduction to LaTeX.
Formatting a WP Document Formatting a document means to make it look neat and professional. Each program will work a bit differently, but the following.
Introduction to LaTeX and Bibtex
INF1030 Word Processing. In this module you will learn to Create and modify text Adjusting the setup of a page Headers and Footers Inserting and moving.
By: Ms. Abeer Helwa 1. WORD WEB APP 2 Word Web App is a limited version of Word, enabling you to edit, format, and share documents online. Word Web App.
Lecture 3- Microsoft Word COE 201- Computer Proficiency.
XP Adding Headers and Footers Text that is printed at the top of every page is called a header A footer is text that is printed at the bottom of every.
Microsoft Word  Word is word _______software.  You can use it to type l_____, r_____, and other documents  The ___ Tab is the central location.
Opening a File 1.Open Word 2.Click the Microsoft Office button(Very top left hand corner). A menu appears 3.Click Open. The Open dialog box appears 4.Use.
Department of Mathematics, Jazan University, Jazan.
LaTex -Computer scientist named Donald Knuth developed the program called Tex, in 1978.(mainly focused on formulae) -Later a mathematician and computer.
LATEX By GerardoVela 3/27/2015.
Lecture 1 Introduction to Latex
Formatting a Research Paper
Chapter 17: Document Production (Word)
Lesson 16 Enhancing Documents
Microsoft Office 2007-Illustrated
Presentation Title, Verdana Bold 40pt
Chapter 17: Document Production (Word)
Presentation Title, Verdana Bold 40pt
Presentation Title, Verdana Bold 40pt
Lesson 4 Objectives work with document formatting
Cover slide 1 We recommend picking one cover slide from these two options and removing the other from the Master This PowerPoint Template includes a series.
Keyboarding & document processing
Presentation Title, Verdana Bold 40pt
MS-Office It is a Software Package It contains some programs like
LaTeX is not... rubber a Bill Gates product WYSIWYG (see) VooDoo
Computers and Scientific Thinking David Reed, Creighton University
Tutorial 3 – Creating a Multiple-Page Report
Word 1 Microsoft Word 2013.
Microsoft Word 1453 Additional Features.
Presentation Title, Verdana Bold 40pt
A Very Short Introduction to LaTeX
Word: Layout & Pagination Participation Project
Lesson 19 Organizing and Enhancing Worksheets
Outline Basic English Information Inquiry Reading Technical Materials
Word Processing Software Photo credit: © 2007 JupiterImagesCorporation.
Making Math Look Pretty – or How to Use LaTeX
Exploring Microsoft Word 2003
Microsoft Word 1453 Additional Features.
Presentation transcript:

By Rajyalakshmi Divi IIT Bombay 23-04-2013 LaTeX By Rajyalakshmi Divi IIT Bombay 23-04-2013

Things to be covered... What is LaTeX Components of latex document Principles File structure Text Formatting Page formatting Header and footer Sections Table of contents Lists Tables

What is LaTeX.. LaTeX is a scripting language used for writing documents. OR LaTeX is a language for creating structured documents. Focuses on document structure rather than such details. Open source

Components of a LaTeX Document Every LaTeX document must contain the following three components. Everything else is optional (even text). 1. \documentclass{article} document class may be Article, Report, Book, IEEEtran, Letter 2. \begin{document} 3. \end{document} By using size \documentclass[11pt]{article}

Principles Commands are case sensitive LaTeX commands in braces {} optional information is included in square brackets []. The \documentclass command must appear at the very beginning of your LaTeX document, before any other LaTeX commands, or you will get an error message. commands that affect the whole document, should be included in the preamble, space between the \documentclass and \begin{document} commands is called.

Example of LaTeX writing.. \documentclass{article} \begin{document} Hello world! \end{document}

File structure.. Document Class Predefined Formats (article, report, book,..). Packages used Added Functionality (graphics, reference style,...). Main Body Text and Bibliography References.

Text formatting Start with \begin{document} End with \end{document} \\ or \newline for a new line in page \newpage for new page Bold \textbf{....} or \bf for bold text \Textit{....} for italics \emph{...} for emphasis

Contnd.. Underline \underline{…………} or \ul Including Multiple Files \input{filename.tex} Use “setspace” package to add spaces between the lines Text alignment can be right, left, or center use flushleft, flushright, center accordingly % % is used for comments

Page formatting \maketitle - Display Title and Author \begin{titlepage} this is used to write other information like roll number,college name etc \end{titlepage} \documentclass[11pt,twoside,a4paper]{article} is used to specify page size \usepackage[cm]{fullpage} for margins ex:\usepackage[top=2in, bottom=1.5in, left=1in, right=1in]{geometry} \title{…} -Titles \author{…} -Authors

Header and footer \pagestyle{headings}:- used to display default header I.e Section Name, and footer I.e page number) \pagestyle{myheadings} for customized header \usepackage{fancyhdr} for fancy header \pagestyle{fancy} \<l|c|r>head{Text} \<l|c|r>foot{Text} \lhead[lh-even]{lh-odd} \lfoot[lf-even]{lf-odd} \chead[ch-even]{ch-odd} \cfoot[cf-even]{cf-odd} \rhead[rh-even]{rh-odd} \rfoot[rf-even]{rf-odd}

sections Sections \section{…} \subsection{…} \subsubsection{…} \appendix - changes numbering scheme

Table of contents created automatically by LaTeX \tableofcontents-creates table of contents Has to be written after Title page. Add \usepackage{hyperref} to make the Toc content clickable

lists Lists command in LaTeX \begin{itemize}... \end{itemize} for bulleted lists \begin{enumerate}... \end{enumerate} for numbered lists

Tables Columns \begin{tabular}{|…|…|} \end{tabular} Rows & - Split text into columns \\ - End a row \hline - Draw line under row l = automatically adjust size, left justify r = automatically adjust size, right justify p = set size e.g p{4.7cm} c = centre text

References http://en.wikibooks.org/wiki/LaTeX http://www.haptonstahl.org/latex/basics_structure.php