Exercises in LaTeX IDA on AAU

Size: px
Start display at page:

Download "Exercises in LaTeX IDA on AAU"

Transcription

1 Exercises in LaTeX IDA on AAU Consistently the exercises are divided into a mandatory part and a bonus part. We expect all to do the exercises in the mandatory part, while the ones in the bonus part can be done according to needs, wishes and time. The level of difficulty will often be higher in this part, but typically it will also be here, where good advice to easier methods, more nice presentation and so on lies. If an exercise is given without the necessary command, inspiration can be sought in the slides. To solve the exercises the file Exercise_template.zip can be downloaded from the homepage here: Unpack the file an easily accessible place, e.g. a Latex folder on the Desktop. Exercise 1 Including files and compiling The first you must do is open TeXMaker. - Open the file Masterdoc.tex in the exercise template. In this master document we have built a structure where preamble and \begin and \end{document}, which is required in every master document, is included. Study the file and the folders in the template. - Create a new document under File New or with Ctrl + N. - In here, write your first Latex text, e.g. This is my first body text. - Save the document as exercise1.tex in the folder files in the template. - Navigate back to the master document and include exercise1 with \include{}. - You are now ready to compile (or build) the document. It is always the master document, which is converted to PDF. On the compiler toolbar ( ) select Quick Build. Check in the settings (Options Configure TeXMaker Quick Build) that the command corresponds to PDFLatex + View PDF. Then press the blue arrow left of Quick Build on the toolbar to get the PDF document shown. - Write some more in exercise1, e.g. I have now included a document on a new line and with an empty line above (2x Enter). Save the file. - Navigate back to the master document and compile to see the change. - It is not necessary to navigate back to the master document every time to compile. Standing in the master document, you can select Define Current Document as Master Document under Options. This is now printed in the lower right corner and means you can compile from all the included documents. Write more to exercise1, compile here and see the result. Every time TeXMaker is opened, the Master document must be defined. - As you might have noticed in the folder, the PDF output takes name after the master document. Close TeXMaker and rename Masterdoc.tex to something more suited, e.g. Exercises.tex. Write some more to exercise1, compile and see the result.

2 Exercise 2 Chapters, sections and subsections Open the file exercise2.tex in the folder files. From the master document it can also be found in TeXMaker s structure window, where all the included files are shown. - Create a chapter with a random name. - Insert a section and a subsection with random names. - Forced page break can be made with \newpage. Insert one followed by some random text. - Create a chapter with random name in exercise1. Then every exercise gets a corresponding chapter for convenience. - Insert a heading a level deeper than \subsection maybe TeXMaker can help with the syntax. - Compile and see the result what happened to the numbering? It is coded in preamble that only up to and including \subsection is numbered. - With * after the command, the numbering can be removed from the heading. This is typically done for preface and table of contents. Try with e.g. \section*{}.

3 Exercise 3 Formatting of text Open the file exercise3.tex in the folder files. - Create a chapter called Formatting of text. - Insert some random text in bold style. - Insert some random text in italic style. - Replace the text with something else and compile. - Insert something in both bold and italic style. - Add a footnote, e.g. \footnote{italic is nice!} - If you should wish to change the alignment of words, lines or sections, the commands flushleft, flushright and center can be used. Try to write e.g.: \begin{flushright} Time is money \\ \textit{benjamin Franklin} \end{flushright} - Text can be colored with \textcolor{color}{text}. Play with different colors and text. - If the standard colors are not sufficient, you can make your own with \definecolor{name}{rgb}{0,160,0}. The numbers are RGB-colors (Red, Green, Blue) from If interested, see more at - Play with some homemade colors and your own names.

4 Exercise 4 Lists Open the file exercise4.tex in the folder files. - Create a chapter called Lists. - Then insert the following code: This is an example of the use of lists in \LaTeX. We start out with a bullet list. \begin{itemize} \item Point 1 \item Point 2 \item Point 3 \end{itemize} It can also be a numbered list. \begin{enumerate} \item Pineapple \item Chocolate \item Banana \end{enumerate} - Replace the text in the lists with something else. Compile and see the result. - Add more points to the lists. Compile and see the result. - Add sub points to one of the lists. This is done by adding a new environment of \begin and \end. - You can choose the type of bullets yourself with e.g. \item[a.]. Play with the possibilities. - It can also be done more global for the entire list. You can add all signs/characters according to wish in [] after \begin{itemzie}, e.g. \begin{itemize}[label=$\star$]. Try to replace \star with \circ and/or other signs and see the result. - The counter in the numbered list can also be changed according to wish in [] after \begin{enumerate}, e.g. \begin{enumerate}[label=\alph*.]. Compile and see the result. - Other examples of the connection between type and sign: - \arabic*) 1), 2), 3) - \alph*. a., b., c. - \Alph*) A), B), C) - \roman*. i., ii., iii. - \Roman*. I., II., III.

5 Exercise 5 Insertion of figures Open the file exercise5.tex in the folder files. - Create a chapter called Figures. - Then insert the following code: This shows how a figure can be implemented in \LaTeX. \begin{figure}[htbp] \centering \includegraphics[width=1.00\textwidth]{figures/picture1.jpg} \caption{picture from Unifitness.} \label{fig:picture1} \end{figure} - Replace the figure with picture2.jpg. - Reduce the size to 50 % of the text width, change the caption and see the result. - Try to insert the two pictures side by side with minipage: \begin{figure}[htbp] \centering \begin{minipage}[b]{0.48\textwidth} \centering \includegraphics[width=1.00\textwidth]{figures/picture1.jpg} % Left picture \end{minipage} \hfill \begin{minipage}[b]{0.48\textwidth} \centering \includegraphics[width=1.00\textwidth]{figures/picture2.jpg} % Right picture \end{minipage} \\ % Captions and labels \begin{minipage}[t]{0.48\textwidth} \caption{caption 1.} % Left caption and label \label{fig:picture1} \end{minipage} \hfill \begin{minipage}[t]{0.48\textwidth} \caption{caption 2.} % Right caption and label \label{fig:picture2} \end{minipage} \end{figure} - Play with sizes, captions and pictures. - Is there a new warning? Make sure always to have unique labels!! - Add a random third picture, so there are three pictures side by side.

6 Exercise 6 Insertion of tables Open the file exercise6.tex in the folder files. - Create a chapter called Tables and a section Peters timetable. - Here is an example of a table: \begin{table}[htbp] \centering \begin{tabular}{ l l l l l l } % l for left, c for center, r for right \hline & Monday & Tuesday & Wednesday & Thursday & Friday \\\hline 09:00-10:00 & Chemistry & Danish & Math & Gym class & English \\\hline 10:00-11:00 & German & French & Biology & Metal & Physics \\\hline \end{tabular} \caption{peters timetable week 41.} \label{tab:timetable} \end{table} - Write all weekdays in bold style. - Insert an extra row in the tables, showing what Peter must attend between 11:00 12:00. - Insert two extra columns, showing what Peter does Saturday and Sunday - Center the content of the weekday columns. - Merge Saturday and Sunday into Weekend with the function \multicolumn. It requires three inputs: \multicolumn{no. of columns}{setup}{content}. Tip: Setup is about the alignment (l, c or r) and vertical lines. - Columns too wide for your taste can be narrowed with the function p{width} in the tablepreamble instead of l, c or r. Try to replace the first column s l with p{1cm}. The column is automatically left-aligned. It can be centered with >{\centering\arraybackslash}p{1cm}. - It is also possible to create more professional looking tables, where the top and bottom lines are thicker and the vertical lines are left out. On the next page there is an example.

7 \begin{table}[htbp] \centering \begin{tabular}{cccc} \toprule Sector & Area & Capacity & Price \\ \midrule A & 1200 & 900 & 400 \\ B & 1500 & 1250 & 500 \\ C & 1100 & 850 & 450 \\ \bottomrule \end{tabular} \caption{overview over the festival sectors.} \label{tab:sectors} \end{table} - Have a look at the code and notice the differences.

8 Part 2

9 Exercise 7 Insertion of mathematics Open the file exercise7.tex in the folder files. - Create a chapter called Mathematics. - Create a section called Favorite equations and insert the following code: \begin{align} x^2+y^2-4x+8y+11=0 \label{eq:favorite1} \end{align} \begin{align} P(x) = \frac{x - a}{b \cdot a} \end{align} - Eksperiment with other equations. - \cdot is one of the functions you quickly learn, when you type math in LaTeX. Try to replace it with \m and see what happens. The shortcut is coded in the preamble to ease the work. - Explore the toolbars with math and add more to the equations. - Add numbers and corresponding units with the command \SI{number}{unit} to one of the equations. - The commands from the SIunitx package is also used to write math outside the align environment. This is very useful in the body text, captions, tables and so on. - Create a section Math in the body text and insert the following code: The unit of volume is typically \si{m^3}. The gravitational acceleration is in Denmark \SI{9.82}{m/s^2}. The use of the SI macros gives a nice and consistent presentation of math. For greek letters or special characters, the \$\$-construction is used. Examples are $\alpha$ and $\Rightarrow$. - Experiment with other numbers, units and characters. - Try to insert 20 $\decc$. The shortcut is also coded in the preamble. - Add another line to one of the equations (line break with \\). - Play with the alignment (the lines are left-aligned where a & is placed in each line). - Add another line to the equation and remove the numbering from the two uppermost lines. This could be used at e.g. derivations, where only the final formula needs a number. - After the equations the symbols must be defined. This can with advantage be built with a nice and easy table. On the next page there is an example.

10 \begin{align} \Phi = \rho \m c_p \m q_v \m \Delta T \end{align} Hvor: \begin{table}[h] \begin{tabular}{l l} $\Phi$ & Heat flux [\si{w}] \\ $\rho$ & Density [\si{kg/m^3}] \\ $c_p$ & Heat capacity [\si{j/(kg K)}] \\ $\Delta T$ & Temperature difference [\si{k}] \end{tabular} \end{table} - Experiment with other numbers, units and signs.

11 Exercise 8 Internal references Open the file exercise8.tex in the folder files. - Create a chapter called Internal references. - Insert a \label{unique ID} after \chapter{mathematics} in exercise7. - Refer to the chapter with e.g. Chapter \ref{unique ID} dealt with math. - Compile 3 times and see what happens. Compiling 3 times is ALWAYS necessary, because references are a dynamical extension to LaTeX, writing information to other files. - Refer to the first equation in chapter 7. Try with both \ref and \eqref and see the difference. - Insert a random figure or table and refer to the element or refer to a figure/table in chapter 5/6. Remember to manually write figure, table, chapter, section or equation in front of the reference, given that the reference only inserts the number. - Insert a reference to a random element in some of the previous chapters, which also refers to the page number. See the slides for inspiration. - With the Quick Build function in TeXMaker you have the possibility to program your own compiler-macro. In this context is could be advantageous that Quick Build covered 3x PDFLatex + View PDF. Then you only need to press the arrow once and the document is built the mandatory 3 times. It can be programmed under Options Configure TeXMaker Quick Build. Alternatively, memorize the build shortcuts (can be found under Tools).

12 Exercise 9 Sources and citations Open the file exercise9.tex in the folder files. - Create a chapter called Sources and citations. - All sources are stored in the file bibtex/literature.bib. We want to add the first source, which is the book The Latex Companion. - Open the file bibtex/literature.bib and verify that the book is in there. - Create a citation to the book with \citep{label}. - As usual the document must be compiled. Start by compiling once with PDFLatex (change from Quick Build in the drop down menu or press F6) to include what you have just written. After this, BibTeX must be compiled separately, because it is an external module. Change to BibTeX in the menu (or press F11) and compile again (on Mac you might get an error just ignore it). Finally we need to compile the last 2 times with PDFLatex. - At the back of the report a literature list can now be found, including the citations used. Thus, the literature.bib can hold several sources, but they will not be added to the literature list before used in the project. - Try both a passive and an active citation and see the difference. See more in slides if needed. - Add a new source of the type manual in the file bibtex/literature.bib, make a citation and see the difference in the literature list. - It is possible to add your own text to the citation ( page 9, table 7.2, chapter 8 and so on). Try to insert some text in the squared brackets in \citep[]{label} and see what happens. - Is the text placed right next to the comma? Start with a space in the []. - As for the internal references, Quick Build can be programmed to handle the entire compiling process. The following macro holds what it takes: PDFLatex + BibTeX + 2x PDFLatex + View PDF.

13 Exercise 10 Configuration of your project You can seek inspiration to the file- and LaTeX structure of your project in the project template available on the homepage. - Explore the structure both the folders and Report.tex. - Modify the structure according to your wishes and needs. - If you have a group server ready, you can commit the structure to here (after a checkout) and then you are ready to use LaTeX and SVN. Enjoy! - Modify the header/footer (pagestyle) in the preamble, so it fits your project. - If the chapter layout doesn t fit into your taste, it can also be changed in the preamble. New chapterstyles can be found be Googling memoir chapter styles. The first hit is a document with several different styles.

Aalborg October 2014

Aalborg October 2014 Aalborg October 2014 Presentation Background for the course Why I am qualified 2 parts Format Slides pay attention Demonstration Exercises Questions Homepage and installation Page 2 of 69 Content part

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

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

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

Lecture 3-Introduction to Latex (II)

Lecture 3-Introduction to Latex (II) ECON 6009 Graduate Seminar Memorial University of Newfoundland Lecture 3-Introduction to Latex (II) Lecture 0 slide 1 INTRODUCTION How to type math How to make cross-references How to use grouping (for

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

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

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

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

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

Introduction to LaTeX. Christoph Pickl

Introduction to LaTeX. Christoph Pickl Introduction to LaTeX Christoph Pickl 1 Who knows (La-)TeX? 2 Who has ever written a document with it? 3 Who has ever written a package? 4 Agenda 1. Basics First steps with LaTeX Creating a LaTeX-Document

More information

Researcher Development Unit: Introduction to Latex

Researcher Development Unit: Introduction to Latex Researcher Development Unit: Introduction to Latex Dr Morgiane Richard and Ana Ciocarlan m.richard@abdn.ac.uk Centre for Academic Development Academic Year 2016-2017 M. Richard, A. Ciocarlan (U.of Aberdeen)

More information

LaTeX: Scientific Document Writing

LaTeX: Scientific Document Writing 2 nd November, 2017 LaTeX: Scientific Document Writing Dr. Anurag Prakash Sunda DST INSPIRE Faculty Dept. of Chemistry, School of Chemical Sciences and Pharmacy Central University of Rajasthan www.apsunda.com

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Henrik Thostrup Jensen September 29 th 2006 1 About What is L A TEX How does it work Exercises Fetch slides and work from them Not everyone works with same speed/focus First a topic

More information

Introduction to LATEX

Introduction to LATEX Introduction to LATEX Jennifer Flegg, September 5 2018 School of Mathematics and Statistics, University of Melbourne Why L A TEX? L A TEX is the mathematical/statistical standard L A TEX looks better than

More information

Math 235: Introduction to LaTeX

Math 235: Introduction to LaTeX Math 235: Introduction to LaTeX The LaTeX word processing system was built to do mathematical typesetting. It is different than word processors; in LaTeX you type in text and typesetting commands, then

More information

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

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

GENERAL INFORMATION INSTRUCTIONS FOR MANUSCRIPT SUBMISSION

GENERAL INFORMATION INSTRUCTIONS FOR MANUSCRIPT SUBMISSION GENERAL INFORMATION ROMANIAN JOURNAL OF PHYSICS is a publication of the Romanian Academy. The journal was first published in 1992, as a continuation of the former REVUE ROUMAINE DE PHYSIQUE (established

More information

Intro to LaTeX Workshop

Intro to LaTeX Workshop Intro to LaTeX Workshop Crystal Nguyen University of North Carolina at Chapel Hill 10/13/2017 Nguyen (UNC) LaTeX Workshop 10/13/2017 1 / 31 Overview 1 Getting Started in LaTeX 2 Typesetting Equations 3

More information

What is L A T E X? Dan Yasaki. June 4, 2018 REU at Elon University. UNC Greensboro. Dan Yasaki What is LAT E X? 1 / 22

What is L A T E X? Dan Yasaki. June 4, 2018 REU at Elon University. UNC Greensboro. Dan Yasaki What is LAT E X? 1 / 22 What is L A T E X? Dan Yasaki UNC Greensboro June 4, 2018 REU at Elon University Dan Yasaki What is LAT E X? 1 / 22 What is L A T E X? L A T E X is a document preparation system by Leslie Lamport built

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

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

Introduction to LaTeX. Paul Fodor Stony Brook University

Introduction to LaTeX. Paul Fodor Stony Brook University Introduction to LaTeX Paul Fodor Stony Brook University http://www.cs.stonybrook.edu/~cse215 LaTeX TeX is essentially a Markup Language (like HTML, CSS, JSON, XML and RTF) TeX written by Donald Knuth in

More information

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

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

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

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

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 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

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

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

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

Forschungskolleg / ACSE Exercise 2. Tools around LaTeX

Forschungskolleg / ACSE Exercise 2. Tools around LaTeX Fakultät Informatik Institut für Software- und Multimediatechnik - Lehrstuhl für Softwaretechnologie Forschungskolleg / ACSE Exercise 2 Tools around LaTeX 23.10.2012 LAST WEEK Any Questions? 23.10.2012

More information

1 Obtaining LyX and L A TEX

1 Obtaining LyX and L A TEX A Guide to LyX and L A TEX Based off A Quick Guide to LyX by Jessica Moses 08 October 2011 Many economists (and academics in mathematics-heavy disciplines) use a program called L A TEX to create documents.

More information

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

Microsoft Excel for Beginners

Microsoft Excel for Beginners Microsoft Excel for Beginners training@health.ufl.edu Basic Computing 4 Microsoft Excel 2.0 hours This is a basic computer workshop. Microsoft Excel is a spreadsheet program. We use it to create reports

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Evan Parker-Stephen September 21, 2006 1 Download and Installation http://www.miktex.org (L A TEX for Windows) http://www.winedt.com (Text Editor) http://www.tug.org (TEX User Group)

More information

ACT! Calendar to Excel

ACT! Calendar to Excel Another efficient and affordable ACT! Add-On by ACT! Calendar to Excel v.6.0 for ACT! 2008 and up http://www.exponenciel.com ACT! Calendar to Excel 2 Table of content Purpose of the add-on... 3 Installation

More information

Word Template Instructions

Word Template Instructions Office of Graduate Education Word Template Instructions The Rensselaer thesis and dissertation template , available for download, conforms to the requirements of the Office of Graduate

More information

TeXnicCenter v1 Beta Frank Van Puyvlde ICT for Research K.U.Leuven

TeXnicCenter v1 Beta Frank Van Puyvlde ICT for Research K.U.Leuven TeXnicCenter v1 Beta 7.01 Frank Van Puyvlde ICT for Research K.U.Leuven March 2008 Contents 1 TeXnicCenter Installation 2 1.1 Installing TeXnicCenter........................... 2 1.2 TeXnicCenter and a

More information

Helen Cameron. A Brief Overview of LATEX

Helen Cameron. A Brief Overview of LATEX A Brief Overview of L A TEX What Is L A TEX? L A TEX is a document preparation system designed by Leslie Lamport on top of Donald Knuth s TEX. Useful Books Leslie Lamport. L A TEX: A document preparation

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

1 Different Document Classes

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

More information

Practice Exercises for Introduction to Excel

Practice Exercises for Introduction to Excel Practice Exercises for Introduction to Excel Follow the directions below to create the exercises. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Using L A TEX Tom Edgar

Using L A TEX Tom Edgar M499 - Senior Capstone Using L A TEX Tom Edgar Department of Mathematics Pacific Lutheran University Tacoma, WA Wednesday, September 17, 2014 Introduction Introduction What is L A TEX? Powerful (Mathematical)

More information

Workshop: A Simple Introduction to L A TEX

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

More information

Office 2007 Overview

Office 2007 Overview Kent School District Office 2007 Overview Office Button Quick Access Toolbar The Ribbon and Tabs Mini Toolbar Other Office Applications Resources 1 P a g e Created by G. Kinkade, CTE; adapted by G. Whiteman,

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

Dec. 27 th, 2010 University of Isfahan

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

More information

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

SOUTHWEST DECISION SCIENCES INSTITUTE INSTRUCTIONS FOR PREPARING PROCEEDINGS

SOUTHWEST DECISION SCIENCES INSTITUTE INSTRUCTIONS FOR PREPARING PROCEEDINGS SOUTHWEST DECISION SCIENCES INSTITUTE INSTRUCTIONS FOR PREPARING PROCEEDINGS IMPORTANT NOTES: All camera-ready submissions must be submitted electronically via the conference management system (Easy Chair)

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 T E X Workshop. Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology

L A T E X Workshop. Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology L A T E X Workshop Bijulal D & Anu Thomas Industrial Engineering and Operations Research Indian Institute of Technology LAT E X Workshop, IEOR@IITB, March 18 & 23, 2010 p. 1 Outline of the Workshop Introduction

More information

AASHTO Materials Standard Template Users Guide

AASHTO Materials Standard Template Users Guide AASHTO Materials Standard Template Users Guide Prepared for: National Cooperative Highway Research Program Transportation Research Board 2101 Constitution Avenue N.W. Washington, DC 20418 Prepared by:

More information

An introduction. C.D. Emmery & M.M. van Zaanen. October 22, Tilburg University

An introduction. C.D. Emmery & M.M. van Zaanen. October 22, Tilburg University LATEX An introduction C.D. Emmery & M.M. van Zaanen Tilburg University October 22, 2013 What is L A TEX? System used to typeset documents. Typesetting: arranging all content in a document in order to achieve

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to L A TEX Hands-on workshop University at Buffalo INFORMS Student Chapter October 26, 2016 Agenda Motivation & Intro to LATEX 1 Motivation & Intro to L A TEX Motivation Introduction Getting

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

Lecture 1: Short summary of LaTeX basics

Lecture 1: Short summary of LaTeX basics Laura Konstantaki Lecture 1: Short summary of LaTeX basics Feel at ease with LaTeX Unless otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International License, which means

More information

A brief introduction to L A TEX

A brief introduction to L A TEX A brief introduction to L A TEX Chris Bowers October 16, 2007 What is L A TEX? TEX developed late 70 s as typesetting language. L A TEX is a set of macro extensions to TEX It s a document preparation system.

More information

L A TEX for psychological researchers

L A TEX for psychological researchers Kahoot! L A TEX for psychological researchers Lecture 1: Introducton Sacha Epskamp University of Amsterdam Department of Psychological Methods 27-01-2015 Contact Details Workshop website: http://sachaepskamp.com/latex-workshop

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Creating Accessible Microsoft Word 2003 Documents Table of Contents

Creating Accessible Microsoft Word 2003 Documents Table of Contents Table of Contents Creating Accessible Microsoft Word Documents...1 Introduction...2 Templates...2 Default Settings...2 Set the Language...2 Change Default Settings...2 To change the default Font:...2 To

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics 1 Starting Word 2010 with XP Click the Start Button, All Programs, Microsoft Office, Microsoft Word 2010 Starting Word 2010 with 07 Click the Microsoft Office Button with the Windows flag logo Start Button,

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

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

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

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

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

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

More information

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

Praktische Aspekte der Informatik. Moritz Mühlhausen Prof. Marcus Magnor

Praktische Aspekte der Informatik. Moritz Mühlhausen Prof. Marcus Magnor Praktische Aspekte der Informatik Moritz Mühlhausen Prof. Marcus Magnor LaTeX Documents Further Reading Warning! The following slides are meant to give you a very superficial introduction. If you want

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

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 Microsoft Word. Tables

Using Microsoft Word. Tables Using Microsoft Word are a useful way of arranging information on a page. In their simplest form, tables can be used to place information in lists. More complex tables can be used to arrange graphics on

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

Written & Oral Presentation: Computer Tools

Written & Oral Presentation: Computer Tools Written & Oral Presentation: Computer Tools Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 Course MATH-GA.2840-004, Spring 2018 February 7th, 2018 A. Donev (Courant Institute) Tools

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

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

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

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

DOWNLOAD PDF MICROSOFT OFFICE POWERPOINT 2003, STEP BY STEP

DOWNLOAD PDF MICROSOFT OFFICE POWERPOINT 2003, STEP BY STEP Chapter 1 : Microsoft Office Excel Step by Step - PDF Free Download Microsoft Office PowerPoint Step by Step This is a good book for an 76 year old man like me. It was a great help in teaching me to do

More information

LearningLatex. % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials

LearningLatex. % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials % Jennifer Pan % Math Prefresher % Fall 2011 % This file walks you through some basic things with LaTex % Thanks to Patrick Lam and Maya Sen for letting me borrow their materials % COMMANDS % You have

More information

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

Began as TeX, in 1982 (Knuth). Purely a typesetting tool. LaTeX added macros, maintaining TeX as it s typesetting engine (Lamport). LaTeX Began as TeX, in 1982 (Knuth). Purely a typesetting tool. LaTeX added macros, maintaining TeX as it s typesetting engine (Lamport). Now maintained by Frank Mittlebach. For an interesting interview,

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Go to drive.google.com. Google Drive. Select Create an account

Go to drive.google.com. Google Drive. Select Create an account Google Drive Google Docs Google Drive is the new home for Google Docs Create and share your work online and access your documents from anywhere Manage documents, spreadsheets, presentations, surveys, and

More information

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

Research Method and Report Writing Lecture 4: An Introduction to L A TEX Research Method and Report Writing Lecture 4: An Introduction to L A TEX Farzaneh Abdollahi {Thanks to Hamed Rezaee} Department of Electrical Engineering Amirkabir University of Technology Fall 2012 Farzaneh

More information

Connect to CCPL

Connect to CCPL Connect to Tech @ CCPL Charleston County Public Library July August September 2015 Technology Training Catalog TECH NEWS Want to receive this publication by email each month? Sign up for our monthly newsletter!

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

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

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

More information

Documentation for TeXworks autocompleter

Documentation for TeXworks autocompleter Documentation for TeXworks autocompleter Henrik Skov Midtiby November 29, 2012 Abstract TeXworks is a powerfull latex editor which can be extended through scripts written in javascript. This script is

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

Intermediate Microsoft Office 2016: Word

Intermediate Microsoft Office 2016: Word Intermediate Microsoft Office 2016: Word Updated January 2017 Price: $1.20 Lesson 1: Setting Margins A margin is the distance from the text to the paper s edge. The default setting is 1 all around the

More information

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 1. Latex installation and text editors 1.1. Installation. Install Latex in your virtual machine with the following command. sudo apt get install texlive Note

More information

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

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

Excellent support for mathematical formatting. Automatically downloads/installs missing components as needed Updates somewhat frequently Overview Why Use L A TEX? L A TEX lets you focus on the content and not how a document looks Excellent support for mathematical formatting Good bibliography management Acquiring L A TEX Windows Linux MiKTeX

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

PRISM Introduction to L A TEX

PRISM Introduction to L A TEX PRISM to L A TEX Matt Hitt & Ben Jones PRISM Department of Political Science hitt.23@osu.edu jones.2781@osu.edu January 20, 2011 LaTeX: What is it and why should you use it? LaTeX (pronounced lah-tech

More information