Typesetting Mathematics. Dr. C. F. Rocca Jr.

Size: px
Start display at page:

Download "Typesetting Mathematics. Dr. C. F. Rocca Jr."

Transcription

1 Typesetting Mathematics Dr. C. F. Rocca Jr. September 16, 2010

2 2 Typesetting Mathematics General Notes On Typing Up Math: What follows is largely based on my own experience and observations. Another good source for information on mathematical writing can be found at [9] or at the more extensive [6]. When you are typing a piece of mathematics there are two ways to enter an equation, inline or displayed. An inline equation is typed right along with the text of a sentence as if it were part of the text. This is what you want to do for smaller less significant equations for example when you assume f(x) = x 2 4x + 3 you type this inline. Now if you want to show something more significant or more lengthy then you want to display it centered on its own line. For example if we factor our quadratic f(x) = x 2 4x + 3 = (x 1)(x 3) or use the quadratic formula x = 4 ± ( 4) = 4 ± 4 2 = 1 or 3. When you including a graphic you can choose to have it displayed centered on a line of its own or to have text written beside it. Which you choose may depend on what you are doing with the graphic. In this example the graphic needs to be large so that there is room for the students to work so it makes sense for it to be on its own. (1) Using the given graph of a function identify where the derivative of the function is zero, positive, and negative and then graph the derivative on the same plot.

3 C.F. Rocca Jr. 3 If however you only need to make reference to the image you may decide to make it smaller and place the text beside the image like in this problem. (2) Answer the following questions about the given graph. At which points does a limit exist? 2. is the function defined? 3. is the function continuous? 4. is the function differentiable? However even in this situation it is simpler and perhaps easier to read if you still just center the image on its own line. Lists, both bulleted and numbered, occur a lot in mathematical writing. They can be used to help strive for clarity if you are making a list of points

4 4 Typesetting Mathematics or to enumerate a number of different exercises or different answers for a multiple choice question. Depending on the use you need to decide if you want a bulleted list or enumerated and if you want a single column or multiple columns. It is my personal opinion that you should find a reasonable system that you are comfortable with and that is clear and then stick with that system. Clear consistency is better that inconsistency even if it is not a formally correct format. When choosing between bulleted lists versus numbered lists I normally ask myself if the order really matters. If, as with the objectives I have listed above, the order is secondary to the information being conveyed and if the information could be written out in a comma separated list then I choose to use bullets. However, for a list of exercises on a worksheet, quiz, or test order is crucial and so a numbered list is appropriate. And, lastly, you should only split lists into columns in particular cases such as when: you are listing multiple short answers to a single question; you are listing multiple short questions where the work will be done elsewhere; you are listing multiple short questions with similarly short answers. Finally you should keep in mind that mathematics is a language of its own and as such has certain conventions and special notations that have evolved to help make communication clear and consistent. For example when discussing number systems you should use the conventional symbols N, Z, Q, R, and C for the natural, integer, rational, real, and complex numbers. Further there are conventions like the following that re not at all hard and fast rules but are generally accepted as a sort of default, a, b, c, d are constants, x, y, z are variables, i, j, m, n are integers, f, g, h, s, v are function names, e is reserved for the base of the natural log, r is mostly used for radius or rate, t is a variable generally reserved for time, p, q are normally used for probabilities or primes depending on context,

5 C.F. Rocca Jr. 5 o is not often used since it is to easily confused with 0, k, l, u, w get used for various purposes though l should be avoided if there is a chance of confusion with 1, α, β, γ, θ, φ are frequently, though not exclusively, used for angles, and π is reserved for the constant equal to the ratio of a circles circumference to its diameter. In the next three sections we will look at the technical nuts and bolts of accomplishing some of what we have been discussing here. In particular we will for Microsoft Word, Open Office, and L A TEXlook at how we can input equations, images, lists, columns, and special symbols.

6 6 Typesetting Mathematics L A TEX Latex is a programing language designed from the ground up for typesetting mathematics and science. The basics of Latex are relatively straight forward but to really learn it can take time. While it does not have the nice point and click interface of word processors it does produce a crisper more professional looking document especially with mathematics. Also, when you put something some place, like an image, it stays where you put it and if you number a list in a particular way it stays numbered in that way. In other words you get a great looking document and you are in control of the layout. Add to this that Latex is free and it starts to be worth the extra work to learn how to use it. In the next few sections we will look at just a few of the things you can do in latex and how to do them. Keep in mind that Latex is a programing language and syntax is important. Each document should have the basic structure \documentclass[12pt]{report} [HEADER] \begin{document} [BODY] \end{document} The header is where we can put formatting commands and commands to tell Latex what we need and the body is where most of our text will go. So let s look at some of what we can do. Entering Equations: Inline equations are entered by placing the equation between a set of dollar signs like so: Let us begin by assuming that ɛ > 0 and that f(x) = x 2. Let us begin by assuming that $\epsilon>0$ and that $f(x)=x^2$.

7 C.F. Rocca Jr. 7 Notice that to typeset the greek letter ɛ we just type out its name with a slash before it, this is true of all the greek letters. Furthermore if we want a capital greek letter such as Γ instead of lowercase γ you type the name capitalized, $\Gamma$. Also notice that to get the exponent for the x 2 we used a carrot just as you would on a calculator. Many of the mathematical symbols or expressions you might want to use follow similarly logical patterns. Let s look now at an example of typesetting a displayed equation which is done similarly to inline equations except it is typed in between a \[ and \]. According to the Fundamental Theorem of Arithmetic if f(x) is continuous on the interval [a, b] and a x b then F (x) = x a f(t)dt is an antiderivative of f(x). That is According to the Fundamental Theorem of Arithmetic if $f(x)$ is continuous on the interval $[a,b]$ and $a\leq x\leq b$ then \[F(x)=\int_a^x f(t) dt\] is an antiderivative of $f(x)$. That is \[\frac{df}{dx}=f(x).\] df dx = f(x). Finally, it is sometimes necessary to have an entire series of equalities stacked on top of each other like when we are solving for a variable or proving an equality. Consider the following example from trigonometry. sin(3θ) sin(θ) = sin(2θ) cos(θ) + cos(2θ) sin(θ) sin(θ) = 2 sin(θ) cos 2 (θ) + cos(2θ) sin(θ) sin(θ) = cos(2θ) sin(θ) + sin(θ)(2 cos 2 (θ) 1) = cos(2θ) sin(θ) + cos(2θ) sin(θ) = 2 cos(2θ) sin(θ) Which we type like this: \begin{eqnarray*} \sin(3\theta)-\sin(\theta)

8 8 Typesetting Mathematics &=&\sin(2\theta)\cos(\theta)+\cos(2\theta)\sin(\theta)-\sin(\theta)\\ &=&2\sin(\theta)\cos^2(\theta)+\cos(2\theta)\sin(\theta)-\sin(\theta)\\ &=&\cos(2\theta)\sin(\theta)+\sin(\theta)(2\cos^2(\theta)-1)\\ &=&\cos(2\theta)\sin(\theta)+\cos(2\theta)\sin(\theta)\\ &=&2\cos(2\theta)\sin(\theta)\\ \end{eqnarray*} In what is above the &=& tells Latex where to line things up and the \\ tells it where to end the line. The * after the word eqnarray turns off line numbering, with out it our equations would have looked like this: sin(3θ) sin(θ) = sin(2θ) cos(θ) + cos(2θ) sin(θ) sin(θ) (1) = 2 sin(θ) cos 2 (θ) + cos(2θ) sin(θ) sin(θ) (2) = cos(2θ) sin(θ) + sin(θ)(2 cos 2 (θ) 1) (3) = cos(2θ) sin(θ) + cos(2θ) sin(θ) (4) = 2 cos(2θ) sin(θ) (5) (6) Including Images: Now suppose that we wish to include a graphic to help illustrate a point such as We can approximate the value of 1 2 x 2 + 3dx by using either right boxes or left boxes as we see on this graph

9 C.F. Rocca Jr. 9 Then that is typeset in Latex as We can approximate the value of \[\int_{-2}^1 x^2+3 dx\] by using either right boxes or left boxes as we see on this graph \begin{center} \resizebox{3in}{!}{\includegraphics{../images/riemannsum6boxes2.jpg}} \end{center} Notice that the lower limit of integration 2 is inside a set of braces, if we did not do this then only the negative symbol would have gone into the subscript. Also in the command to resize the picture the 3in adjusts the width of the picture while the! tells Latex to adjust the height so that the picture is not distorted. Making Lists: Now suppose that you need to give students, or anyone, a list of steps of directions. If the order of the steps matter then we might want to write:

10 10 Typesetting Mathematics Getting Dressed 1. Pick out clothes. \begin{center} Getting Dressed \end{center} 2. Put on under clothes. 3. Put on your pants and shirt. 4. Put on your socks and belt. 5. Put on your shoes. \begin{enumerate} \item Pick out clothes. \item Put on under clothes. \item Put on your pants and shirt. \item Put on your socks and belt. \item Put on your shoes. \end{enumerate} Now if the order of the list does not matter then you may instead want to use a bulleted list like this: Milk Shopping List Orange juice Bread (Seven Grain) Cheese Eggs \begin{center} Shopping List \end{center} \begin{itemize} \item Milk \item Orange juice \item Bread (Seven Grain) \item Cheese \item Eggs \end{itemize} If you are making up a multiple choice test then you may end up with a list inside a list (one for the questions and one for the possible answers) and you might want to put the possible answers into multiple columns. This is accomplished like so: 1. This theorem Theorem: If a, p Z +, gcd(a, p) = 1, and p is prime then a p 1 1 (mod p). is known as (a) Wile s Theorem (b) Fermat s Little Theorem (c) Euler s Theorem (d) Zimmermann s Theorem

11 C.F. Rocca Jr. 11 Which is typeset as: \begin{enumerate} \item This theorem \textbf{theorem:} \textit{if $a,p\in\mathbb{z^+}$, $gcd(a,p)=1$, and $p$ is prime then $a^{p-1}\equiv 1\pmod{p}$.} is known as \begin{multicols}{2} \begin{enumerate} \item Wile s Theorem \item Fermat s Little Theorem \item Euler s Theorem \item Zimmermann s Theorem \end{enumerate} \end{multicols} \end{enumerate} There are a few things that we should point out in this example. In this example, as in some of the previous examples, we use a \begin{...} and \end{...} in order to create particular structures like columns or lists, these are all called environments. In particular enumerate is used for numbered lists, itemize is used for bulleted list, and multicols for multiple columns. For the multiple columns there is an additional {2} after the begin command which tells Latex how many columns to use. Also, to use multiple columns in this way we need to put \usepackage{multicol} in the header of the document to let Latex know what we want to do. Finally, notice that with the nested list environments Latex automatically switched from numbering with numbers to numbering with letters so that we did not have to do it ourselves. If we had wanted to enumerate a list item in a special way we would type \item[widget] where widget was what we wanted in front of the list item. Creating Tables: Sometimes you ll need tables to either present information or for students to fill in as part of a worksheet. Is accomplished in Latex using the tabular

12 12 Typesetting Mathematics environment. Here is an example. Type Alcohol Cal/12 oz Carbs Porter 5.6% g I.P.A. 6.9% g Light 4.2% g Stout 5.8% g Which is typeset like this. \begin{tabular}{l c c c} Type & Alcohol & Cal/12 oz & Carbs \\ \hline Porter & 5.6\% & 209 & 18.4g \\ I.P.A. & 6.9\% & 231 & 20g \\ Light & 4.2\% & 110 & 6.6g \\ Stout & 5.8\% & 225 & 22.3g \\ \end{tabular} There are a number of important components here. First after the \begin{tabular} we see {l c c c} this sequence of letters and vertical lines (called pipes) tells Latex how many columns you want, one for each letter, how to align them, l for left, c for center, and r for right, and finally where to draw vertical lines between columns, wherever there is a pipe between the letters. Next, the & indicates when in a row we are done typing material for a column, while the \\ marks the end of each row. Finally, after any row where we want a horizontal line we type \hline. Other: Symbols and Hyperlinks: In the example where we wanted multiple columns where we wanted multiple columns for our list we had to place \usepackage{multicol} in the header of the document, what this did was load a special set of commands for formating columns. Such sets of commands are called packages. There are many different packages in Latex for a variety of purposes, let s look at a couple that can be used for symbols and one that can be used for creating hyperlinks. Many, if not most, of the symbols we use in mathematics are built in so that we don t need a special package.

13 C.F. Rocca Jr. 13 For example all the greek letters α, β, γ, π, δ... are built in as are such symbols as ±,,,,,,,, and many others. For example all the greek letters $\alpha,\beta,\gamma,\pi,\delta \ldots$ are built in as are such symbols as $\pm, \div, \leq, \geq, \equiv, \Rightarrow, \Leftarrow, \forall,\angle$ and many others. But here are some other packages that you might consider using and what symbols they can produce (for a more comprehensive list see [15]): amsfonts loaded with \usepackage{amsfonts} N $\mathbb{n}$ Z $\mathbb{z}$ Q $\mathbb{q}$ R $\mathbb{r}$ C $\mathbb{c}$ ifsym loaded with \usepackage[misc]{ifsym} \Cube{1} \Cube{2} :\StrokeOne ::\StrokeTwo \Cube{3} \Cube{4} :::\StrokeThree ::::\StrokeFour \Cube{5} \Cube{6} ;\StrokeFive hieroglf loaded with \usepackage{hieroglf} \textpmhg{\hone} 2 \textpmhg{\hten} 3 \textpmhg{\hhundred} 4 \textpmhg{\hthousand} 5 \textpmhg{\hxthousand} 6 \textpmhg{\hcthousand} 7 \textpmhg{\hmillion} We can hyperlink elements of a document such as the table of contents, indices, and bibliographies and place hyperlinks into a document using the hyperref package (see [5]) which is loaded by placing \usepackage[linkcolor=blue,citecolor=blue,anchorcolor=blue, urlcolor=blue,colorlinks=true]{hyperref}

14 14 Typesetting Mathematics in the header (note that it should all be on one line). Then much of the hyperlinking is done automatically while we can place url s in the document with the command \href{ Rocca s Home Page} Which produces Dr. Rocca s Home Page. Or with the command \url{ Which would give us What we have seen here is just a taste of what L A TEX can do for more detail you should look at [7] and [12].

15 C.F. Rocca Jr. 15 Microsoft Word Microsoft Word, and Microsoft Office in general, is exceptionally common. It is unlikely that you want have cause to use it at some point in you career. It is a general purpose word processor though and as such does not do as nice a job as Latex which was designed specifically for writing up mathematics. Also it is not cheap to purchase and so that is a mark against it when compared to both Latex and Open Office which we will look at later. Entering Equations: To insert an equation (or just about anything) in Word you need to go to the Insert Tab next to the Home Tab. Then on the far left you can click on the menu for entering an equation and choose either on of the predefined equations or a new equation. Once you start editing your equation you will see at the top of the screen you get a new Equation Tools Design Tab. which includes palettes with all of the most commonly used symbols and operations. Most of what you want to enter you will need to find in the appropriate palette but some really basic operations such as exponents and fractions can

16 16 Typesetting Mathematics be entered by hand as x^2 and x/y. When you enter work by hand it will not initially look pretty to get it to you click on the down arrow in the bottom right corner of the box containing your equation which produces a drop down menu where you can select a professional look for your equation. That drop down menu is also where you can choose between having an inline or displayed equation. In order to get a stacked equation like so you will need to insert a matrix that has 3 columns and as many rows as you think you will need for you equation. The middle column in each row will then have an equal sign while the right and left columns will contain the right hand and left hand equations. The empty little boxes that you see in the above figure are there when you are working on your document but will not be there when you print the final version. Including Images, Creating Tables, Symbols, & Hyperlinks: Equations are not the only reason to visit the insert tab, it is also the place to go for images (or pictures), tables, symbols and hyperlinks. When including images you can choose to insert a piece of clip art by clicking the Clip Art button or a picture from a file by clicking the Picture

17 C.F. Rocca Jr. 17 button and then in each case choosing the desired file. Alternately, if you are viewing a graphic in another program you can use copy and paste to enter it into Word. However you insert the image you will likely want to adjust it in some way once you have it in Word. When you click on the image you can adjust it using options given to you along the top in the menu bar or by right clicking and choosing the option to look at the images properties in which case a new window opens where yo can adjust the image as you please. Note that if you just need to adjust the size of the images you can click and drag the little squares that appear around the image after you selected it, but if you do not want it to get distorted then you need to hold down the shift key as you do so. To insert a table you, predictably, click on the Table button and selecting what size table you want. If you are unsure of what size table you need that is fine. After inserting a table you can add more rows by highlighting a row above or below where you want the new row, right clicking on the row you highlighted and choosing Insert Rows. Inserting new columns works the same way. For symbols you place the cursor at the spot in the document where you want the symbol, press the Symbol button on the insert tab then choose the symbol you want. There are a lot of symbols so you should make note of where to find the symbols you most often need. Also, if there is one symbol you use repeatedly within a document then using copy and paste to copy it from one spot to the next will be most convenient. To insert hyperlinks you should type in the text you wish to have be your link, highlight this with the cursor, and then press the Hyperlink button. A new window will now pop up where you can enter what you want to link to. If you are linking to a web site it is easiest to copy and pasted the web address from your web browser. You can also link to other files on your hard drive by entering there location or browsing for them in the window that pops up. Making Lists & Columns: Let s briefly touch on making lists and making columns. These are not made from the insert tab. For lists you need to go to the Home tab

18 18 Typesetting Mathematics and for columns you click on the Page Layout tab When you make a list you can choose from either a bulleted list or numbered list, each with a variety of styles. To start a list move your cursor to a new line where you want the list and then click the little icon in the paragraph pane on the home tab which looks like the sort of list you want. Then you just type/enter what you want for the first item. When you are done with one line in your list hit enter and word will give you another line automatically. When you are done hit enter to get a new line then click on the list icon to exit list mode. To get a list within a list, like a outline or a set of possible answers to a multiple choice question,

19 C.F. Rocca Jr. 19 then you start a new line and click the Indent button word will indent the list and change the numbering or symbol as needed. To place your list in columns as in the above example, or to place any text in columns for that matter, you highlight the text you want in columns and then on the Page Layout tab select the columns button and choose the number of columns to break it into. As with the introduction to L A TEX above this introduction to Word of course does not demonstrate all of its capabilities. Hopefully though this will give you enough information to get you started with some basics. Really learning how much Word or any program can do for you takes time and practice.

20 20 Typesetting Mathematics Open Office The last method we will look at for typing up mathematics is a program called Open Office [14] which is a complete freeware office suite much like Microsoft Office. Like Microsoft s office suite Open Office has a word processor, spread sheet, presentation program (like Power Point), a drawing program, and database program. Unlike Microsoft s software Open Office is free, but it is also a little rougher around the edges, though very similar. Entering Equations: To enter equations in Open Office you need to insert them as you do in Word. Unlike the most recent version of Word though Open Office uses menus and tool bars like the older versions of Word and like Word of Mac. To insert an equation you need to choose Insert Object Formula

21 C.F. Rocca Jr. 21 This creates a box into which the formula will be placed, gives a specific tool bar an symbol palette for creating formulas, and opens an editing window at the bottom of the screen where you edit the formula. Because the equation is in a box like that it is treated like an image and so you can not really typeset proper inline equations they are all displayed. However since many if not most equations should be displayed for the sake of legibility this is not a huge loss. What is also nice it that there are palettes with commands so that you don t have to remember them but if you do remember them you can just type them in at the bottom in the editing window. Including Images, Lists, Tables, Symbols, & Links: All the other features that we have been discussing are accomplished in Open Office in much the same way that they are accomplished in Word once you know where to look. Special Characters and Images are inserted using items off the Insert menu

22 22 Typesetting Mathematics like we did for inserting a formula. Note that you can, as in Word, also insert images using copy and paste. For lists, tables, and links the directions are identical to those for Word. Even the icons on the menu bar are almost identical to those used in Word. And, lastly columns are accomplished in much the same way by choosing columns off the Page Layout menu.

23 C.F. Rocca Jr. 23 Note that all three programs do allow you to save/export your documents as pdf s which is convenient if you wish to make an electronic copy available to students. For Latex, or recent versions of Latex, pdf is the default format, for Word you have the option of saving as pdf, and for Open Office you can choose to export as a pdf.

24 24 Typesetting Mathematics So, there we have three ways to typeset mathematics each with its own advantages and disadvantages. Latex produces a very attractive and professional finished product. Additionally you retain control over pretty much every element of the document you are creating and so if you format things in a particular way they stay formatted that way. However Latex is a programing language that can be hard to learn so to use it you need to be willing to work a little. Word is a highly polished program with a nice user interface if you can remember where all the buttons are located. Word also handles a great deal of the formatting for you whether you ant it to or not. For example list numbering and its attempts to automate the process for you can be particularly frustrating and unstable. Also, the general look and feel of the equations in Word, while nice, is not as crisp as what you get in Latex and it can get frustrating to have to spend your time hunting through menu after menu to find a symbol that you need. Open Office has many of the advantages of Word with respect to having an easy user interface though its equations are even less crisp. One of the big advantages that Open Office is that it is free and effectively as functional as Word which is not. Another advantage, at least from my perspective, is that after you have used a symbol once while entering a formula you can learn the text command so the next time you can just type it in without having to sift through menus. As we move forward we will see that a lot of these comments will not only apply to other types of software. That is we will see that basic software does not produce as nice a product or have as much versatility as more advanced software and commercial software is more polished than none commercial but can be very expensive.

25 25 Word Open Office Latex Equations Insert Symbols Equation Insert Object Formula then View Formula Elements Type either \[ or $ to open a math environment type your equation then either \] or $ to close the equation Symbols Insert Symbols More Symbols Insert Special Characters Load the appropriate package, if a special one is required, and type the command Images Insert Picture Insert Picture From File Place \usepackage{graphics} in your header then enter the picture where you want it with \resizebox{width}{!} - {\includegraphics{image}} Lists Columns Tables Hyperlinks Home Press the Bullets or the Numbering Icon First highlight the portion of the document you want in columns then go to Page Layout Columns Place the cursor where you want the table then click the table icon, on the insert tab, and choose the dimensions of your table. Highlight the text that will become the hyperlink, click on the insert tab, then on the hyperlink icon, and then follow directions Format Bullets and Numbering First highlight the portion of the document you want in columns then go to Format Columns Place the cursor where you want the table then click the table icon and choose the dimensions of your table. Highlight the text that will become the hyperlink, then on the hyperlink icon, and then follow directions Enclose the list in either and itemize or enumerate environment with a \item before each list item Place \usepackage{multicol} in your header then place what you want in columns in between \begin{multicols}{# of Cols} and \end{multicols} Use the tabular environment see page 11 for details Use the hyperref package see page 13 for details PDF s Menu Icon Save As PDF or XPS File Export as PDF Typically compiles directly as a PDF

26 Bibliography [1] Al Cuoco, Mathematical Connections: A Companion for Teachers and Others. Mathematical Association of America, Newton MA, [2] GeoGebra, June [3] The Geometer s Sketchpad Resource Center, dynamicgeometry.com/, June [4] Michael Goossens, Frank Mittelbach, Alexander Samarin, The L A TEX Companion. Addison-Wesley, Boston MA, [5] Hypertext marks in L A TEX : a manual for hyperref, org/applications/hyperref/ftp/doc/manual.html, June [6] Donald E. Knuth, Tracy Larrabee, and Paul M. Roberts, Mathematical Writing, pdf, June [7] Leslie Lamport, L A TEX A document Preparation System: User s Guide and Reference Manual. Addison-Wesley, Boston MA, [8] L A TEX project: L A TEX - A Document Preparation System, June [9] Kevin P. Lee, Mathematical Writing: Tips and Guidelines,,http: //ems.calumet.purdue.edu/mcss/kevinlee/mathwriting/, June [10] Math Software for Engineers, Educators & Students Maplesoft, June [11] MiKTEX Project Page, June

27 C.F. Rocca Jr. 27 [12] The Not So Short Introduction to L A TEX2ε, tex-archive/info/lshort/english/lshort.pdf, June [13] Office - Microsoft Office, June [14] OpenOffice.org - The Free and Open Productivity Suite, openoffice.org/, June [15] Scott Pakin, The Comprehensive L A TEX Symbol List http: // symbols-letter.pdf, June [16] Sage: Open Source Mathematics Software, org/, June [17] Texmaker (free cross-platform latex editor), net/texmaker/, June [18] TEXShop, June [19] Wolfram Alpha - Computational Knowledge Engine, wolframalpha.com/, June 2010.

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

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

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

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

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 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

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

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

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

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

Getting Started with L A TEX

Getting Started with L A TEX Getting Started with L A TEX 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.

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

Contents. Foreword. Examples of GeoGebra Applet Construction 1 A Straight Line Graph... 1 A Quadratic Graph... 6 The Scalar Product...

Contents. Foreword. Examples of GeoGebra Applet Construction 1 A Straight Line Graph... 1 A Quadratic Graph... 6 The Scalar Product... Contents Foreword ii Examples of GeoGebra Applet Construction 1 A Straight Line Graph............................... 1 A Quadratic Graph................................. 6 The Scalar Product.................................

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

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

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

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

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

L A TEX. The Logo. Introduction to L A TEX. Overview. Primary Benefits. Kinds of Documents. Bill Slough and Andrew Mertz

L A TEX. The Logo. Introduction to L A TEX. Overview. Primary Benefits. Kinds of Documents. Bill Slough and Andrew Mertz The Logo Introduction to L A TEX Bill Slough and Andrew Mertz L A TEX Mathematics and Computer Science Department Eastern Illinois University January 20, 2010 Overview TEX and L A TEX What is L A TEX?

More information

TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to add some mathematical content to his or her paper. In particular,

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

An Introduction to L A TEX

An Introduction to L A TEX An Introduction to L A TEX Ryan C. Trinity University Math Majors Seminar September 12, 2017 What is L A TEX? L A TEX is a typesetting system/language used for the production of technical (mathematical)

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX D. Broline, A. Mertz & W. Slough Mathematics and Computer Science Department Eastern Illinois University February 8, 2007 The Logo L A TEX Overview What is L A TEX? Typesetting

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

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

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word These instructions assume that you are familiar with using MS Word for ordinary word processing *. If you are not comfortable entering

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

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

More information

L A TEX Primer. Randall R. Holmes. August 17, 2018

L A TEX Primer. Randall R. Holmes. August 17, 2018 L A TEX Primer Randall R. Holmes August 17, 2018 Note: For this to make sense it needs to be read with the code and the compiled output side by side. And in order for the compiling to be successful, the

More information

Lab1: Use of Word and Excel

Lab1: Use of Word and Excel Dr. Fritz Wilhelm; physics 230 Lab1: Use of Word and Excel Page 1 of 9 Lab partners: Download this page onto your computer. Also download the template file which you can use whenever you start your lab

More information

LATEX Primer. 1 Introduction (Read Me)

LATEX Primer. 1 Introduction (Read Me) LATEX Primer 1 Introduction (Read Me) This document is intended to be used as a primer. You are welcome to remove the body of the document and use the headers only. If you actually read this document,

More information

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors:

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors: The goal of this technology assignment is to graph several formulas in Excel. This assignment assumes that you using Excel 2007. The formula you will graph is a rational function formed from two polynomials,

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

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

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

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

MATLAB for the Sciences

MATLAB for the Sciences A Preliminary Discussion in L A TEX, Part 2 January 6, 2008 Multiple Lines of Equations Just as there was an environment for writing equations, there is an environment for multi-line equations. \begin{eqnarray}

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

My Mathematical Thesis

My Mathematical Thesis My Mathematical Thesis A. Student September 1, 2018 Abstract An abstract is a paragraph or few that gives the reader an overview of the document. Abstracts are commonly found on research articles, but

More information

Put the Graphs for Each Health Plan on the Same Graph

Put the Graphs for Each Health Plan on the Same Graph At the conclusion of the technology assignment on graphing the total annual cost, you had a graph of each of health insurance plans you are examining. In this technology assignment, you ll combine those

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

Getting Started with L A T E X for a Technical Document or Thesis

Getting Started with L A T E X for a Technical Document or Thesis Getting Started with L A T E X for a Technical Document or Thesis University of Waterloo Nov 2015 Outline What is LAT E X? 1 What is L A T E X? 2 3 4 5 What is L A T E X? What is LAT E X? L A T E X is

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

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

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide

MICROSOFT OFFICE. Courseware: Exam: Sample Only EXCEL 2016 CORE. Certification Guide MICROSOFT OFFICE Courseware: 3263 2 Exam: 77 727 EXCEL 2016 CORE Certification Guide Microsoft Office Specialist 2016 Series Microsoft Excel 2016 Core Certification Guide Lesson 1: Introducing Excel Lesson

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

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

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

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

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 THE BASICS PAGE 02! What is Microsoft Word?! Opening Microsoft Word! The Title Bar! Page View and Zoom MENUS...PAGE 03! Quick Access Toolbar! The Ribbon! File Tab! Home

More information

Introduction to Microsoft Office 2007

Introduction to Microsoft Office 2007 Introduction to Microsoft Office 2007 What s New follows: TABS Tabs denote general activity area. There are 7 basic tabs that run across the top. They include: Home, Insert, Page Layout, Review, and View

More information

Microsoft Word 2011 Basics

Microsoft Word 2011 Basics Microsoft Word 2011 Basics Note: Illustrations for this document are based on Word 2010 for windows. There are significant differences between Word for Windows and Word for Mac. Start Word From the gallery

More information

AppleWorks Tips & Tricks

AppleWorks Tips & Tricks DEFAULT FONT Did you know you can set the font and size that AppleWorks will use when you open it on your computer? You can set the font and size that you want your students to use on your classroom computers.

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

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

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

Creating a Website Using Weebly.com (June 26, 2017 Update)

Creating a Website Using Weebly.com (June 26, 2017 Update) Creating a Website Using Weebly.com (June 26, 2017 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

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

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

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

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

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting Clifford E. Weil March 24, 2004 1 General Environments We have already encountered two environments. They are the document environment

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Square cells: an array cooking lesson

Square cells: an array cooking lesson The PracTEX Journal TPJ 2005 No 02, 2005-04-15 Rev. 2005-03-25 Square cells: an array cooking lesson Will Robertson 1 Square cells in tabular Late last year, there was a question on the Mac OS X TEX mailing

More information

Getting Acquainted with Office 2007 Table of Contents

Getting Acquainted with Office 2007 Table of Contents Table of Contents Using the New Interface... 1 The Office Button... 1 The Ribbon... 2 Galleries... 2 Microsoft Help with Changes... 2 Viewing Familiar Dialog Boxes... 2 Download Get Started Tabs from Microsoft...

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

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

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

Electronic Production Guidelines

Electronic Production Guidelines Electronic Production Guidelines Illustrations It is a good idea to check out the draw programs you have available to you before you start drawing the figures for your article. Make sure that you can create

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

Choose the file menu, and select Open. Input to be typed at the Maple prompt. Output from Maple. An important tip.

Choose the file menu, and select Open. Input to be typed at the Maple prompt. Output from Maple. An important tip. MAPLE Maple is a powerful and widely used mathematical software system designed by the Computer Science Department of the University of Waterloo. It can be used for a variety of tasks, such as solving

More information

Using the Equation Palette

Using the Equation Palette module 5 Using the Equation Palette Contents Basic Workflow............................. 244 Exercise 58 Creating Your First Equation..... 245 Exercise 59 Positioning an Equation.......... 250 A Tour of

More information

L A TEX Document Formatting Examples

L A TEX Document Formatting Examples L A TEX Document Formatting Examples Gene Michael Stover created Thursday, 2005 May 19 updated Sunday, 2005 November 20 Copyright c 2005 Gene Michael Stover. All rights reserved. Permission to copy, store,

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

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

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

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

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

Ph3 Mathematica Homework: Week 1

Ph3 Mathematica Homework: Week 1 Ph3 Mathematica Homework: Week 1 Eric D. Black California Institute of Technology v1.1 1 Obtaining, installing, and starting Mathematica Exercise 1: If you don t already have Mathematica, download it and

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

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

Graduate Health Sciences Word Topics

Graduate Health Sciences Word Topics Graduate Health Sciences Word Topics This workshop is based on topics provided by Graduated Health Sciences. Have you ever moved text from one part of a Word document to another, and the formatting changed

More information

APPLIED COMPUTING 1P01 Fluency with Technology

APPLIED COMPUTING 1P01 Fluency with Technology APPLIED COMPUTING 1P01 Fluency with Technology Word Processing APCO/IASC 1P01 Brock University Brock University (APCO/IASC 1P01) Word Processing 1 / 30 Word Processors Word processors, at their core, are

More information

A Brief Introduction to L A TEX

A Brief Introduction to L A TEX A Brief Introduction to L A TEX Amanda Kriesel Metropolitan Community College, Nebraska akriesel@mccneb.edu April 7, 2016 Amanda Kriesel (MCC) LaTex April 7, 2016 1 / 17 Table of Contents 1 What is L A

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

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

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

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

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

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

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

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information