How to Get Started Using LaTeX
Part 1 of 3:
Downloading and Starting the Programs
- Download the LaTeX program here and install as instructed. It is currently available for Windows, Mac, and Linux.
- Consider installing a user friendly intermediary program like TeXShop (for Macs) or TeXworks (for all users).
- Launch the program. If you installed TeXShop or TeXworks, launch these directly from your applications. Otherwise launch LaTeXIT directly.
Part 2 of 3:
Setting up a Document
- Familiarize yourself with the basic syntax and semantics of LaTeX. For instance, a command is always proceeded by a backslash. Commands tell LaTeX how you want to format the document, from document style to text color, and also helps you add in special notations, pictures, etc. Commands are typically followed by a set of braces, in which you specify what you would like to happen.
- Set the document class. This is done using the command
documentclass{}
. In the braces you should place what type of document you are creating, which is usually an article. So, if writing an article simply typedocumentclass{article}
on the first line, and then hit enter to move to the next line. Other document classes include book, slides, and report. - Set the title. This is done using the command
title{}
. For instance, for this document one would typetitle{How to Get Started Using LaTeX}
. This typically is on the second line of the page. - Set the author. Use the command
author{}
. For instance,author{Your Name}
. - Set the date. This is optional. LaTeX will automatically update the date to be current unless you set it using
date{}
. - Add any additional formatting you want. This can include font size, font style, margins and other styling and formatting for the entire document. For an introduction you can skip this step, but the commands are easy to find online.
- Specify any packages you wish to use. LaTeX packages can be extremely helpful in improving the flexibility and usefulness of the program.[1]
- To use a specific package use the command
usepackage{}
orRequirePackage{}
with the package name in the braces. - More than one package may be used. For instance might write
usepackage{graphicx}
to tell LaTeX to use the graphicx package, which is useful for inserting pictures and graphs. Another helpful package for use in math mode (see later steps) is amsmath and amssymb.
- To use a specific package use the command
Part 3 of 3:
Writing a Document
- Begin the document. Using the command
begin{document}
tells the program that you are done with the document formatting and ready to start writing! - Make the title. If what you are writing does not require a title, you can skip this step. To make a title using the title, author, and date that you set, enter the command
maketitle
on a new line. - Type your text. You can now type anything that you desire in plain text. Note that a line of blank space or the command
newline
is required to start text in a new paragraph or new line. - Add text formatting. Explore some formatting options such as putting text inside
textbf{}
command to make it bold or insidetextcolor{red}{}
to make it red (or another color as specified). - Try math mode. Math mode is really why you want to use LaTeX. There are many ways to access math mode.
- If you wish to put an equation or math symbol in line with text, simply surround it with dollar signs. For instance, one may write $8 - 9 = -1$. If you want the equation on a new line, centered, surround it with backslash and bracket. For example,
[8 - 9 = -1]
. Using packages can further enhance the uses of math mode. For instance, with the package amsmath, you can align a set of equations using thebegin{align}
andend{align}
commands. There are also many built in commands specifically for math mode. Most mathematical symbols are represented by some command, such as usingpi
to write everyone's favorite irrational number. - Additionally, there are math formatting functions, such as using the
frac
command to write the fraction for one third by typingfrac{1}{3}
. If you use math commands outside of math mode, you will receive an error when you try to compile.
- If you wish to put an equation or math symbol in line with text, simply surround it with dollar signs. For instance, one may write $8 - 9 = -1$. If you want the equation on a new line, centered, surround it with backslash and bracket. For example,
- End the document. You must end the document using the command
end{document}
, placed on the last line. - Typeset. Hit the Typeset button or use a keyboard shortcut (e.g. ⌘ Cmd+⇧ Shift+T for Mac) to typeset your document. This will output a beautiful PDF with all your formatting. This PDF, along with 3 other helper files, will be saved in the same place as your LaTeX document.
- If you get an error, read the error message in the console and see if you've made a typo or other small mistake. If it is not compiling, make sure you have "LaTeX" selected from the dropdown button next to the Typeset button.
4 ★ | 2 Vote
You should read it
- How to Make Math Symbols on Your Mac (OS X)
- Math object in JavaScript
- How to learn Math on Coolmath4Kids for kids
- Effective mobile math solutions
- 3 apps to help kids learn Math for free on Windows 10
- Article: 'What to study Math for?' by a leading security expert Google caused a social network storm
- Microsoft adds Math Solver to Edge browser
- math.h in C
May be interested
- How to Video Chat with Friends on Oovoooovoo is a video chat and instant messaging program. unlike other video chatting programs, it allows you to video chat with up to 12 people at a time. it is free to download and to use. find oovoo on your device. how you do this will...
- How to Make a Map Using Leafletleaflet is an easy-to-use and fairly powerful javascript tool that enables us to create and display maps on a website. this article will guide you in setting up leaflet, and then building a simple map that has a tile layer from mapbox and...
- How to Draft a Software Licensing Agreementa software licensing agreement establishes the buyer's right to use your software. it is also called an 'end user agreement.' there are generally two types of software agreements: those produced for a mass market and those signed between...
- How to Choose an Email Service Providerchoosing an email service provider to help with email marketing and bulk email services can seem overwhelming. you can narrow down the options by first considering how you will use the service, what your budget is, and how much tech...
- How to Install Quickenquicken is a popular personal finance program from intuit. quicken can help you keep track of your finances, control your budget, and plan for your future, all in one easy-to-use package. there are two main ways to install quicken: you can...
- How to Update NOD32nod32 is an antivirus program developed by eset that is available for windows and linux users. your eset nod32 antivirus program can be updated at any time by checking for and downloading updates from directly within the nod32 application....