1 Obtaining LyX and L A TEX

Size: px
Start display at page:

Download "1 Obtaining LyX and L A TEX"

Transcription

1 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. In fact, this is the program that creates most of your exam papers. The beauty of L A TEX lies in its ability to create professional looking documents and display text and mathematics together in a clean and presentable way. The drawback to L A TEX is that there is a fairly steep learning curve. However, once you get the hang of the basics, you will find that L A TEX is much more powerful than Microsoft Word or any other document creation package. The end result also looks pretty cool. There is a program with a gentler learning curve but, in my opinion, it doesn t offer the same flexibility as L A TEX. This is LyX. LyX makes the L A TEX environment more user-friendly by taking away most of the coding. However, the cost of doing that is reduced flexibility in how your document looks. Lyx is a good place to start but I highly recommend using L A TEX for the long term. The purpose of this document is to give you a short introduction to L A TEX and an associated program, LyX. I am deeply indebted to my colleague, Jessica Moses, who is responsible for the majority of the material on LyX included in this document. 1 Obtaining LyX and L A TEX 1.1 Obtaining LyX LyX is available as freeware. 1. Go to 2. Pick the relevant version for your computer (Mac/Windows) and download 3. Install 1.2 Obtaining L A TEX L A TEX is available as freeware. There are a number of program which help you code in L A TEX. I recommend using the Protext package. 1. Go to 2. Pick the relevant version for your computer (Mac/Windows) and download 3. Install 1 of 11

2 2 Using LyX This section is the work of my good friend and colleague, Jessica Moses. The credit for this work goes to Jess. I accept responsibility for any mistakes. 2.1 First Steps When you first open the program, you should see a screen which looks like this. In order to start a new file, either press the button indicated, or file new. You should get a plain pink screen. Normal typing can be done as usual - just type straight in to the program. One thing to note is that you cannot press enter more than once. The program is smart, and will automatically start a new (indented) paragraph when you press enter. If you want more space, hold down the control button when you press enter - a little red arrow should come up. This indicates a new line, and you can use it as many times as necessary. 2 of 11

3 2.2 Writing Maths Using LyX There are two ways of writing maths using LyX. The first is an inline formula - this is included in the body of your text, like so: 4x would be one example. To do this, use insert maths inline formula. Numbered formulae are also used fairly often. If you want to show your working and make sure everything is well aligned, I suggest using Equation Array Environments, from the same menu. This ends up looking like this: 3x 2 = 12 x 2 = 12 3 = 4 x = 4 = 2 Note how everything is now nicely aligned, without having to play around. To make a new line of equations in the equation array environment, simply hit Ctrl + Enter. The most important thing to remember is to always be typing inside the blue boxes when you write maths. Otherwise, none of the commands or mathematical functions will work. Another point is that you cannot press space or enter while in one of these maths boxes - it will do all the formatting for you. The only time you should press space is when you are trying to get out of a subscript - I will get to that later. Most of the maths tools you will need are located in the bottom bar, as shown in the screenshot below. I will walk you through the ones you will use more often. I suggest that you press the pi in the bottom right hand corner - this will activate a range of other functions which you will be likely to use. 3 of 11

4 These cover most of the functions you will use. There are commands for ones you use more often; of particular note is using ˆ to get a superscript (to the power of something) and to get a subscript - again, these commands will only work in the blue boxes. To get out of the superscript or subscript, just press the space bar. If you wish to learn the commands for other things, such as Greek letters, most of them will pop up if you mouse over the buttons down the button. Just type \(command). Most of them are pretty intuitive - for example, the command for alpha is \alpha, fractions are \frac, and partial derivatives are \partial. 2.3 Previewing and Saving your work Your actual output will not look like what you are typing in LyX. The program you type in is WYSIWYM - what you see is what you mean, not what you actaully get. So don t freak out if things look kind of weird! To preview your work, you can use the buttons here: These will allow you to preview your work as a PDF file. Use the one on the left the first time you preview a document - after that, you can use the one on the right, which just refreshes the previous preview. LyX automatically saves your output as an LyX file, which allows you to go back and edit your work. To save as a PDF, simply click file export pdflatex. And you re done! Feel free to experiment, the program is wonderful and will get easier with time. If you want to learn more or have further questions, LyX has great documentation. Check out the tutorial and the help menu, both are very useful. Good luck! 4 of 11

5 3 Using L A TEX Unlike LyX, which is designed as a Graphic User Interface (GUI) environment, L A TEX is designed to work by Code alone. As such, it may seem a little daunting at first (especially when you are unfamiliar with code-based programs). However, there is a wealth of information about L A TEX available on the internet. If you have a problem, you can simply do a Google search of latex {short description of your problem} and you will almost always find a solution. I also recommend the Wikibook on L A TEX. That resource has helped me with many a problem. For the rest of this L A TEX tutorial, I shall assume that you are using the Protext system and TEXworks. 3.1 First Steps Starting a new document in TEXworks is easy. When you start the program, you should be given a new document to work with (as in the picture below). Alternatively, you can use the File New or Ctrl+N. Once you have got a new document, you now need to setup the document environment for L A TEX to work in. Usually, this is done by a Style File. I have attached a simple Style File to this document. It has most of the things you need to get started. The basic Style file contains the following necessary items: The Document Class (in this case, an article) Commands telling TEXworks to use certain additional packages Some new Commands I found useful Commands defining the Header and Footer Page Numbering Commands about the Bibliography To begin with, you should not need to change anything (except perhaps the Headers and Footers). When you are more familiar with L A TEX, you can start customising the Style File for your own needs. To tell TEXworks to use your Style file, you will need to type the command: \include{style}. 5 of 11

6 Now you can begin your document. You need to tell TEXworks to do so; you will also need to tell it where to end the document. To do this, use the Commands: \begin{document} YOUR DOCUMENT GOES IN HERE \end{document} Now you are ready to begin constructing your document. 3.2 Writing Text in L A TEX When you want to start writing text, you can simply input it directly into the code. There is NO spell-checker so I recommend that you check the spelling using MS Word or some other spell-checker. L A TEX will automatically wrap the lines for you so don t worry about that. To tell L A TEX to start a new line, simply use the \\. A example of this is in the picture below. L A TEX will not allow you to use the \\ more than twice in a row. Whilst this part of L A TEX may seem frustrating, in fact, it is L A TEX s greatest asset. Because L A TEX does not follow your spacing in the code, you can use your code to space out your working. An example of this is included in the picture below. L A TEX also has a few quirks.firstly, a few character and symbols have specific purposes in L A TEX. For example: \tells L A TEX that a command is being used. To get L A TEX to display this, you have to use the command: \textbackslash { and } are also used by L A TEXin executing commands. To get these to display, you need to use: \{ and \} respectively Other special symbols include: # $ % ˆ & { } which are displayed using \# \$ \% \textasciicircum{} \& \ \ {} respectively. Secondly, L A TEXhas specific environments for different tasks. I will talk about the commonly used ones in turn. Thirdly, L A TEX is quite picky about how commands are displayed. You need to match up brackets/parentheses/braces and commands are casesensitive. However, don t let this get you down. L A TEX has many benefits which outweight these costs once you get used to the language. You may also want to use the Line Numbers function in L A TEX which is found using: Format Line Numbers. 3.3 L A TEX s maths Environment The main purpose of Donald Knuth in creating L A TEX was to create a mark-up and programming language which could display mathematics in a attractive and precise fashion 6 of 11

7 that other programs could not. powerful. As a result, L A TEX s maths environment is extremely To start, we need to engage the maths environment. environments: There are two types of maths The In-Line environment; and The Displayed Maths environment (DME) The In-Line maths enviroment allows you to display maths next to texts and in the same line. To engage the In-line environment, use the $ key. Then type the mathematics and end with another $. There are a number of ways to engage the DME: Using the $$ (Maths) $$ will allow you to type 1 equations in the DME. Using \begin{equation} will allow you to type equations where the equations are numbered. To end the environment, use \end{equation}. Using \begin{align} will allow you to type multiple equations with equation numbers and will allow you to align the equations with the & symbol. To end the environment, use \end{align}. Using \begin{equation*} and \begin{align*} will allow you to use the Equation and Align environments without having the equation numbers. Ending this environment is exactly like before. Use To end the environment, use \end{equation*} and To end the environment, use \end{align*}. The Equation Array environment is also available and works in exactly the same manner as described by Jess above. To engage Equation Array, use \begin{eqnarray} and end with \end{eqnarray}. You can also use eqnarray* if you do not want the equation numbers. Once you have engaged the maths environment, you can begin typing the mathematics. The picture below shows how the In-line environment, the Equation, and the Align environment work. The Wikibook has a great section of Mathematics and Advanced Mathematics. I recommend you look at this. For convenience, I will explain a couple of the common maths commands. Greek letter are employed using \letter name. For example: \alpha creates α. For capital letters, capitalise the first letter, like so: \Delta creates. Only certain letters have Capital equivalents. Superscripts (including powers) are created by using: baseˆsuperscript. For example: xˆ2 creates x 2 Subscripts are created using: base subscript. For example x 1 creates x 1 Fractions are created using: \frac{x}{y} where the X is the numerator and Y is the denominator. For example \frac{1}{2} creates 1 2. Note that the numerator and denominator can be complex function as illustrated in the picture below. Furthermore, fractions can be nested. 7 of 11

8 Another helpful hint is to use line spacing and parentheses (i.e. organise your maths. { and }) to help you Given some practice, you will find the L A TEX maths environment very useful and powerful. 3.4 L A TEX s other environments List Environments L A TEX has three list environments: itemize (note the American spelling) enumerate description Itemize creates bullet points. Enumerate creates a numbered list Description allows you to write your own list headings. Example of Itemize: \begin{itemize} \item Item 1 \item Item 2 \item Item 3... \end{itemize} This will produce: Item 1 Item 2 Item of 11

9 Example of Description: \begin{description} \item[label1] Item 1 \item[label2] Item 2 \item[label3] Item 3... \end{description} This will produce: Label1 Item 1 Label2 Item 2 Label3 Item 3... In my Style File, I have defined 3 new list structures: items enumerate* description* These are exactly the same as their namesakes but are more compact. Try them out Text Formatting You can format the way your text looks. For example: Using \textbf{your text here} makes the text inside the parantheses bold (e.g. your text here) Using \underline{your text here} underlines the text inside the parentheses (e.g. your text here) Using \emph{your text here} will make the text inside the paranthesese italicised (e.g. your text here) You can also next these commands. For example \textbf{\underline{your text here} } will make the text both bold and underlined (i.e. your text here) Coloured text is obtained by using \color{declared Colour}{Your Text Here.}. For example, \color{red}{your Text Here.} creates Your Text Here. A list of colours is located here Graphics Inserting Graphics into your document can help when displaying graphs or other pictures. To include a graphic, use the command \includegraphics{./picture}. It is important that you picture is in one of the accepted formats. Usually, this is.jpg or.png. However, if you have other formats, you can try looking up how to include them. Note, the name of your picture cannot have space AND your picture must be located in the same folder as your L A TEX file. More information is here. 9 of 11

10 3.4.4 Document Structures Sometime it is helpful to readers if you structure your text in a nice way. To help you, L A TEX has some tools to organise your work. These are the \section type commands. \section{section Heading Here} will start a new section and make the section heading larger than the normal font. \subsection{subsection Heading Here} will start a new subsection and make the subsection heading larger than the normal font. Usually, sections and subsections are numbered in consecutive order in the following fashion: Section 1.1, Section 1.2, Subsection 1.2.1, Subsection 1.2.2, etc... You can go all the way to subsubsections. For Book and Report document classes, you can also have Chapters. 3.5 Compiling and Troubleshooting Now that you ve created your document, you will want to publish it as a PDF. To do this, you need to compile the document. To do this, you need to click on the Green Play button located in the top left. Make sure that the box next to the Play button has pdflatex+makeindex+bibtex selected. This is shown below: You should see a whole section of text displayed in the Console window as L A TEX compiles your work. This is normal. Once the document finishes compiling, it will display a preview window for you. The finished PDF file will be located in the same folder as your L A TEX code. If your code has some errors, the compiler will not work. It will stop and then tell you where the error is. You will need to go and troubleshoot this. In the picture below, I show what happens when you have an error. In this case, the error is my forgetting to end my align environment. To fix this, I first stop the compiler using the Red Stop button. Then, I fix the code and press Play again. Notice how the error message tells me I have a runaway argument at Line 37. It means that there is an environment which has not been properly ended. The error is occuring in the section prior to Line 37. Notice at Line 37, I haven t put in a \{align*} to end the align environment. I will need to put this in before the code will work. 10 of 11

11 3.6 From here...? Now that you have the Basics of L A TEX down, you can now experiment from here on out. I highly recommend that you use the Wikibook for help. If you have questions, feel free to me at ashley.chegn@unsw.edu.au Good Luck! 11 of 11

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

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 MCS 220 and L A TEX

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

More information

Typesetting in wxmaxima

Typesetting in wxmaxima Typesetting in wxmaxima 1 Introduction To make your paper look as good as possible you should be familiar with the following: how to format text and create sections (and subsections, etc.), how to typeset

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

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

Assessments for CS students:

Assessments for CS students: Assessments for CS students: Two hours per week lectures, Tuesdays 2-4pm. Three in-semester assignments, with feedback de-coupled from assessment: Assignment 1 Generic paper Assignment 2 Literature review

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

Math 395 Homework #1 Due Wednesday, April 12

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

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Helen Scharber 1 Introduction In this workshop, we ll be looking at how to create a basic document in L A TEXthat includes some math. There are a few important things to mention

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

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

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

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps:

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps: Simple Math Adam Dishaw 2011 September 21 Suppose you want to include some math in your documents. Just follow these basics steps: 1. Create a new TEX document with the basic requirements (the documentclass

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

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

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

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass.

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass. TUTORIAL 3: MY FIRST L A TEX DOCUMENT CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to produce a very basic L A TEX document. This tutorial will introduce the

More information

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

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

The basics of LaTeX. Cédric Buron. April 25, 2016 The basics of LaTeX Cédric Buron April 25, 2016 Hello fellows! Today, I introduce a very important language in my PhD, L A TEX(what a logo!). In this article, I m going to introduce very quickly the purpose,

More information

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

Getting started with Latex

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

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

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

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

More information

How to Make a Book Interior File

How to Make a Book Interior File How to Make a Book Interior File These instructions are for paperbacks or ebooks that are supposed to be a duplicate of paperback copies. (Note: This is not for getting a document ready for Kindle or for

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

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

Microsoft Word Part 3 Office 2013

Microsoft Word Part 3 Office 2013 Microsoft Word Part 3 Office 2013 Hyperlinks When a document is sent as an electronic copy, hyperlinks can be added to direct the reader to a web page. To add a hyperlink: Highlight the word, phrase, paragraph,

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to LATEX Mathematics 23a, Fall 2012 By: Isabel Vogt, Will Rafey, and Neil Gat Last Updated: 13 September, 2012 1 Introduction The simplest way to learn TeX is by example. Copy the heading

More information

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

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

Learning L A TEX. Patrick Lam

Learning L A TEX. Patrick Lam Learning L A TEX Patrick Lam setting up 1. download a TeX distribution (MiKTeX, MacTeX, etc.) 2. download an editor (Texmaker, WinEDT, XEmacs, etc.) 3. start a.tex file in editor 4. work only in the.tex

More information

A Guide to Blogging on Wordpress

A Guide to Blogging on Wordpress A Guide to Blogging on Wordpress Below is a written guide with pictures for using the WordPress blogging platform. If you re more of a visual person, there are videos here: http://wordpress.tv/category/howto/

More information

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

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

More information

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

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

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

Abstract A quick intro by examples to the document preparation language L A TEX.

Abstract A quick intro by examples to the document preparation language L A TEX. Jumpstart LaTeX Bo Waggoner Updated: 2014-09-15 Abstract A quick intro by examples to the document preparation language L A TEX. 1 Overview LaTeX is essentially a programming language that, when executed,

More information

Microsoft Word 2010 Guide

Microsoft Word 2010 Guide Microsoft Word 2010 Guide 1 Microsoft Word 2010 These notes are devised for Word 2010. You should be aware that it is similar to Word 2007 but is quite different from earlier versions of Word, e.g. Word

More information

Boise State University. Getting To Know FrontPage 2000: A Tutorial

Boise State University. Getting To Know FrontPage 2000: A Tutorial Boise State University Getting To Know FrontPage 2000: A Tutorial Writers: Kevin Gibb, Megan Laub, and Gayle Sieckert December 19, 2001 Table of Contents Table of Contents...2 Getting To Know FrontPage

More information

Karlen Communications Importing/Exporting Styles in Word. Karen McCall, M.Ed.

Karlen Communications Importing/Exporting Styles in Word. Karen McCall, M.Ed. Karlen Communications Importing/Exporting Styles in Word Karen McCall, M.Ed. Table of Contents Introduction... 3 Resume Reading... 3 Clearing Formatting... 4 Cut, Copy and Paste Settings... 5 Smart Paste

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

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button.

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button. Word 2007 There are a lot of new changes to Office 2007. This handout will provide a few examples on how to do basic formatting. If at any point you get stuck, remember that Office has a feature that allows

More information

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms Using RedDot A Quick-Reference Guide To access reddot: https://cms.hampshire.edu/cms For help: email reddot@hampshire.edu or visit http://www.hampshire.edu/computing/6433.htm Where is... Page 6 Page 8

More information

Microsoft Office Word 2010

Microsoft Office Word 2010 Microsoft Office Word 2010 Content Microsoft Office... 0 A. Word Basics... 4 1.Getting Started with Word... 4 Introduction... 4 Getting to know Word 2010... 4 The Ribbon... 4 Backstage view... 7 The Quick

More information

The L Y X Tutorial. by the L Y X Team 1. December 2, them to the LYX Documentation mailing list:

The L Y X Tutorial. by the L Y X Team 1. December 2, them to the LYX Documentation mailing list: The L Y X Tutorial by the L Y X Team 1 December 2, 2016 1 If you have comments on or corrections to this documentation, please send them to the LYX Documentation mailing list: lyx-docs@lists.lyx.org 2

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

Kindle Formatting Guide

Kindle Formatting Guide Kindle Formatting Guide Contents Introduction... 2 How about doing your own formatting?... 2 About the Kindle Format... 2 What file formats can you submit to Kindle?... 2 Stage 1 Format Your Headings...

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

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

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

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

Co. Cavan VEC. Co. Cavan VEC. Programme Module for. Word Processing. leading to. Level 5 FETAC. Word Processing 5N1358. Word Processing 5N1358

Co. Cavan VEC. Co. Cavan VEC. Programme Module for. Word Processing. leading to. Level 5 FETAC. Word Processing 5N1358. Word Processing 5N1358 Co. Cavan VEC Programme Module for Word Processing leading to Level 5 FETAC 1 Introduction This programme module may be delivered as a standalone module leading to certification in a FETAC minor award.

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

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

Student Learning Service: Introduction to Latex

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

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Academic Word Processing with Word 2003

Academic Word Processing with Word 2003 Academic Word Processing with Word 2003 Doc 5.133 Ver 1 John Matthews May 2005 Central Computing Services Prerequisites This document assumes that you are familiar with the use of a computer keyboard and

More information

Introduction to Microsoft 2007 Office Table of Contents

Introduction to Microsoft 2007 Office Table of Contents Introduction to Microsoft 2007 Office Table of Contents Pg 2-3 Intro to Word Pg 4 Ribbons, tabs Pg 5 Cursor, Help, Mini Tool Bar Pg 6 Default Font and Size Pg 7 Setting the default spacing and indentation

More information

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed.

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed. Karlen Communications Track Changes and Comments in Word Karen McCall, M.Ed. Table of Contents Introduction... 3 Track Changes... 3 Track Changes Options... 4 The Revisions Pane... 10 Accepting and Rejecting

More information

The MathType Window. The picture below shows MathType with all parts of its toolbar visible: Small bar. Tabs. Ruler. Selection.

The MathType Window. The picture below shows MathType with all parts of its toolbar visible: Small bar. Tabs. Ruler. Selection. Handle MathType User Manual The MathType Window The picture below shows MathType with all parts of its toolbar visible: Symbol palettes Template palettes Tabs Small bar Large tabbed bar Small tabbed bar

More information

Homework # (Latex Handout) by Laura Parkinson

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

More information

Introduction to MS Word XP 2002: An Overview

Introduction to MS Word XP 2002: An Overview Introduction to MS Word XP 2002: An Overview Sources Used: http://www.fgcu.edu/support/office2000/word/files.html Florida Gulf Coast University Technology Skills Orientation Word 2000 Tutorial The Computer

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

HTML and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

Microsoft Word Advanced Skills

Microsoft Word Advanced Skills It s all about readability. Making your letter, report, article or whatever, easy and less taxing to read. Who wants to read page after page of boring text the same font, the same size, separated only

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Yuval Carmel Ben-Gurion University June 30, 2009 Yuval Carmel (Ben-Gurion University) Introduction to LATEX June 30, 2009 1 / 40 Introduction L A TEX is not a word processor! Word,

More information

Imagery International website manual

Imagery International website manual Imagery International website manual Prepared for: Imagery International Prepared by: Jenn de la Fuente Rosebud Designs http://www.jrosebud.com/designs designs@jrosebud.com 916.538.2133 A brief introduction

More information

Basic Microsoft Word

Basic Microsoft Word (Demonstrated using Windows XP) An Introduction to Word Processing Adapted from Taskstream Word Tutorial (2005) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What can Microsoft Word

More information

Using MathType for the Worksheets: Word 2003 edition

Using MathType for the Worksheets: Word 2003 edition Haberman Online MTH 112 Using MathType for the Worksheets: Word 2003 edition As explained in various locations inside our course, you are required to use MathType to compose all of the mathematics in your

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options OneNote Training When you open OneNote for the first time there will be notebooks already started and you can see them on the left hand side. There is an introduction section that you can go through, if

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

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

Lab 2. CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word.

Lab 2. CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word. Lab 2 CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word. A. Create a basic File Structure Let s start by opening up the My Documents folder on

More information

This book will help you quickly create your first documents, spreadsheets, and slideshows.

This book will help you quickly create your first documents, spreadsheets, and slideshows. Getting Started Welcome to iwork 08 Preface This book will help you quickly create your first documents, spreadsheets, and slideshows. iwork 08 includes three applications that integrate seamlessly with

More information

Mikkel Madsen

Mikkel Madsen Mikkel Madsen latex@mikkl.dk After completing this course, you: Have an understanding of what LaTeX is Have an idea of what things can be easily accomplished in LaTeX Know where to look for help DON T

More information

A PRACTICAL TUTORIAL TO EXCEL

A PRACTICAL TUTORIAL TO EXCEL 2010 BEGINNERS A PRACTICAL TUTORIAL TO EXCEL by: Julio C. Fajardo A Practical Tutorial to Excel About: Excel is one of the early software tools developed by Microsoft. The program has been widely adopted

More information

Navigate to Success: A Guide to Microsoft Word 2016 For History Majors

Navigate to Success: A Guide to Microsoft Word 2016 For History Majors Navigate to Success: A Guide to Microsoft Word 2016 For History Majors Navigate to Success: A Guide to Microsoft Word 2016 for History Majors Navigate to Success: A Guide to Microsoft Word 2016 For History

More information

Graphing on Excel. Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version):

Graphing on Excel. Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version): Graphing on Excel Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version): The first step is to organize your data in columns. Suppose you obtain

More information

MatDeck User Manual. Contents

MatDeck User Manual. Contents MatDeck User Manual Contents Table of Pictures... 2 1 Activate license - Help tab... 6 2 MatDeck basics... 7 2.1 Document list area... 7 2.2 Document area... 8 2.2.1 Data types... 8 2.2.2 Variables...

More information

Site Owners: Cascade Basics. May 2017

Site Owners: Cascade Basics. May 2017 Site Owners: Cascade Basics May 2017 Page 2 Logging In & Your Site Logging In Open a browser and enter the following URL (or click this link): http://mordac.itcs.northwestern.edu/ OR http://www.northwestern.edu/cms/

More information

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

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

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

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

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

More information

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More.

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More. SBCUSD IT Training Program Word Introduction Page Setup, Paragraph Attributes, Printing and More Revised 2/15/2018 SBCUSD IT Training Page 1 CONTENTS Cursor Movement... 4 Selecting Text... 5 Font/Typeset

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Introduction to Microsoft Publisher Day One Agenda: Introduction Templates Layout Inserting and Formatting Text Inserting and Formatting Pictures Practice, Questions Day Two Agenda: Review Day One Tables

More information

Learn how to [learn] LATEX

Learn how to [learn] LATEX Learn how to [learn] L A TEX November 19, 2010 This document is available at http://web.mit.edu/jgross/ Public/2010cluedump/Slideshow.pdf. Outline Installing L A TEX What is L A TEX? Getting Help Basic

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

Latex Tutorial 1 L A TEX. 1.1 Text

Latex Tutorial 1 L A TEX. 1.1 Text Latex Tutorial This tutorial was originally prepared by Joel Wein of MIT. You may find it helpful in preparing your notes. Anything I send you in the template file supercedes what is written here. Yishay

More information

Introduction to L A TEX beamer

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

More information

Create a new document based on default template, other available template like: memo, fax, agenda.

Create a new document based on default template, other available template like: memo, fax, agenda. Word Processing 3 Objectives: Working with Documents Enhancing Productivity Using the Application Open, close a word processing application. Open, close documents. Create a new document based on default

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above.

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. This will open another tab in your browser. Here you will see all files you own or that are shared

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