Install Latex Fonts on Mac Osx

Revision as of 17:11, 28 May 2016 by Kipkis (Kipkis | contribs) (importing article from wikihow)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

LaTeX Fonts are high quality members of a family of fonts referred to as "Computer Modern." These fonts allow the author greater control and precision when typing mathematical and technical documents. Installing LaTeX is great for teachers and students alike because it is not only simple, but free as well. Installing LaTeX on a Mac is particularly easy because Mac users have access to the quick and easy MacTeX.

Steps

Installing LaTeX

  1. Go to a LaTeX installer. By far, the best and most recommended of these installers is http://www.tug.org/mactex/. From here, you will be able to download MacTeX by clicking on the link entitled "MacTeX download." You also have the option of downloading BasicTeX, which is a slightly less detailed version but the downloading and installation will be the same as MacTeX.
  2. Select "MacTeX.PKG." Clicking this link will automatically begin the download process. This may take a few minutes to complete. Once it has fully downloaded, the file will appear on your desktop.[1]
  3. Double-click the icon. This will install the application and you will be walked through the initial setup phase. Follow the steps provided by the Installation Wizard by clicking "Next." You may need your user account password.
  4. Go to the application. You can do this by going to "Applications" and then selecting "Tex." Before continuing on, open the file entitled "READ ME FIRST" and familiarize yourself with the application.

Using LaTeX: The Basics

  1. Open "TeXShop.app." You can do this by finding "TeX" under "Applications." Double-click on "Tex" and then select "TeXShop.app."
  2. Enter the document class. In order to begin working on your document, you will need to specify a few things in order for LaTeX to understand and format the document. The first of these specifications is the document class. This should look something like this \documentclass[12pt]{article}. This specifies a document with 12 point font and an article format, which is the most basic setup.
  3. Specify the beginning and end. LaTeX will also need you to specify the beginning and end or your document and you can do this by entering a simple line of code. At the beginning of your document and under the document class, enter \begin{document}. At the end of your document, enter \end{document}.[2].
  4. Enter "%" to input a command. In order to input commands, like a paragraph break, you can enter the "%" sign followed by your command. For instance, enter "% New Paragraph" as the first line of your new paragraph. This spacing will appear when you go to create your document.
  5. Use packages to create margins. In order to create perfect margins you can use things called "packages." These act similarly to the commands we used earlier to specify beginning and ends of documents. To input a package, enter the following command: \usepackage{example package}. For example, if you wish to have 1-inch margins on your document, you would enter \usepackage{fullpage}. You would enter this command in the line following your document class specifications.
  6. Specify your line spacing. In order to specify your line spacing, enter the following command: \examplespacing on the line above where you wish the spacing to being. For example, if you would like your document to be double spaced, you would enter the command \doublespacing above the section you wish to be double spaced. The document will continue to be formatted with that spacing until you override it with another spacing command.
  7. Write in bolds or italics. To type in bold, enter the command \textbf{example text} and to type in italics, enter the command \emph{example text}. For example, if you would like to write "Lemon" in bold, you would enter \textbf{Lemon}.
  8. Create your document. Within the perimeters you specified, create your document!

Related Articles

Sources and Citations