TUTORIAL 9: THEOREM STYLES

Size: px
Start display at page:

Download "TUTORIAL 9: THEOREM STYLES"

Transcription

1 TUTORIAL 9: THEOREM STYLES CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to construct the numbered theorem styles that are typically necessary to write a mathematical paper and will be able to label and reference these constructs. In addition, the author will learn how to change the equation numbering so that the equations are numbered relative to the section in which they occur and how to change whether these numbers appear on the left- or right-hand side of the page. 1. Welcome Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series. In this tutorial, we will introduce a few of the common theorem style environments. By the end of this tutorial, the author should be able to construct the theorem styles that are typically necessary to write a mathematical paper: theorem, lemma, corollary, proposition, conjecture, definition, and example. The author also will learn how to label and reference these constructs. Part of Math 3006, Communication in Mathematics, Clayton State University. 1

2 2 C. RARIDAN In addition, the author will learn how to change the equation numbering so that the equations are numbered relative to the section in which they occur and how to change whether these numbers appear on the left- or right-hand side of the page. This is the ninth in a series of tutorials meant introduce you to L A TEX. We assume that you have successfully completed Tutorial 8 and we will use the results of this tutorial in subsequent tutorials. Hopefully, Windows and Mac users will have a similar experience. 2. Getting Started (1) Navigate to the LaTeX Tutorials folder on your computer. (2) Inside this folder, create a new folder entitled Math and Theorem Styles. (3) Open the Typesetting Mathematical Expressions folder. (4) Double-click on the Typesetting-Mathematical-Expressions.tex file. (5) In the TeXworks editor, click [Window] > Show > Tags if the Tags window is not already displayed. (6) Change the title of this article to Mathematics and the Theorem Styles with a short title of Math and Theorems. (7) Verify that your author information is correct.

3 TUTORIAL 9: THEOREM STYLES 3 (8) Click [File] > Save As... (9) Navigate to your Math and Theorem Styles folder. (10) Inside that folder, name your file Math-Theorem-Styles.tex. (11) Click [Save] to save your file. 3. Theorem Style Environments There are several environments within L A TEX that are automatically numbered. In previous tutorials, we discussed the \section{} numbered environment and how to label and reference them. We continue in that vein by introducing now the numbered environments for theorem, lemma, corollary, proposition, conjecture, definition, and example Updating the Preamble. Before we can use the L A TEX numbered environments, we must tell L A TEX how to behave with respect to them. This will require us to add some information to the preamble of our L A TEX document. (1) After \renewcommand{\baselinestretch}{1.5} hit [Enter] twice. (2) Type % THEOREM STYLES DEFINED and hit [Enter] twice. (3) Type % Each of these will numbered relative to each other and the text will be italicized. and hit [Enter]. (4) Type \theoremstyle{plain}.

4 4 C. RARIDAN (5) The command \theoremstyle{plain} tells L A TEX that the constructs that follow it will be plain, which in the amsart document class produces italicized font. (6) After \theoremstyle{plain} hit [Enter]. (7) We are now going to tell L A TEX how to format our first theorem style, which will be Theorem. (8) Type \newtheorem{thm}{theorem}[section]. (9) This first \newtheorem command has the form \newtheorem{key}{name}[relto] and tells L A TEX: The key is thm, so we type \begin{thm} to begin the theorem environment and \end{thm} to end it. If you prefer, you could set the key as theorem instead we are just abbreviating. The Name is Theorem, so L A TEX will display Theorem. The relto is section, so L A TEX will number each theorem relative to the section that it is in, i.e., Theorem 2.4 will be the fourth of the numbered theorem styles in Section 2. (10) Now, scroll to the end of the document. (11) After the displayed equation \[ \lim_{x \rightarrow a} f(x) = f(a). \], hit [Enter] twice. (12) Type \section{theorem Styles} and hit [Enter]. (13) Type \label{sec:thm-styles} and hit [Enter] twice.

5 TUTORIAL 9: THEOREM STYLES 5 (14) Type In this section, we give examples of the numbered theorem styles. and hit [Enter] twice. (15) Type \begin{thm} and hit [Enter] twice. (16) Type \end{thm}. (17) Remember, it is always a good idea to type \begin{} and \end{} in pairs. (18) Place your cursor between these two commands and type The number $\sqrt{2}$ is irrational.. (19) [Ctrl]+[T] to typeset. (20) We should see that we now have our first theorem of section 3, named and numbered appropriately as Theorem 3.1. (21) Note that the \theoremstyle{plain} command that we entered in the preamble actually typesets the text of the theorem in italics, as it should be. (22) Let s add a label: place your cursor after \begin{thm}, hit [Enter], and type \label{thm:sqrt-2-irrational}. (23) Now, let s add a few more theorem styles: Lemma, Corollary, Proposition, and Conjecture. (24) Scroll back up to the preamble and after \newtheorem{thm}{theorem}[section] hit [Enter]. (25) Type the following:

6 6 C. RARIDAN \newtheorem{lem}[thm]{lemma} \newtheorem{cor}[thm]{corollary} \newtheorem{prop}[thm]{proposition} \newtheorem{conj}[thm]{conjecture} (26) Each of these \newtheorem commands has the form: \newtheorem{key}[relto]{name}. Notice that the relto portion is in a different location and that it is thm. This tells L A TEX to follow the the convention established for the theorem environment created previously. (27) Scroll back down to the bottom of your document. (28) Place your cursor at the end of the paragraph that ends with numbered theorem styles. and hit [Enter] twice. (29) Type \begin{lem} and hit [Enter] twice. (30) Type \end{lem}. (31) Place your cursor between these two commands and type \label{lem:even-squares} and hit [Enter]. (32) Type For all integers $x$, $x^2$ is even if and only if $x$ is even.. (33) [Ctrl]+[T] to typeset. (34) We should now see that L A TEX has added this lemma before the theorem and renumbered appropriately.

7 TUTORIAL 9: THEOREM STYLES 7 (35) Note that the \theoremstyle{plain} command that we entered in the preamble actually typesets the text of this lemma in italics, as it should be. (36) In fact, each of the constructs Theorem, Lemma, Corollary, Proposition, and Conjecture will be typeset in italics. (37) We now need to prove both of these statements! (38) After \end{lem} hit [Enter] twice. (39) Type \begin{proof} and hit [Enter] twice. (40) Type \end{proof}. (41) The amsart documentclass has a built in construction for proofs, which is why we did not have to create one ourselves. (42) Place your cursor on the blank line between \begin{proof} and \end{proof}. (43) Type the following proof for the lemma: Let $x$ be an integer. First, we show that if $x$ is even, then $x^2$ is even. Let $x = 2k$, where $k$ is any integer. Then $x^2 = (2k)^2 = 4k^2 = 2(2k^2)$, which is even. Now, we show that if $x^2$ is even, then $x$ is even by proving the contrapositive. If $x$ is odd, then $x = 2j + 1$ for some integer $j$. Then $x^2 = (2j + 1)^2 = 4j^2 + 4j + 1 = 2(2j^2 + 2j) + 1$, which is odd. (44) [Ctrl]+[T] to typeset. (45) L A TEX has added the proof environment.

8 8 C. RARIDAN (46) In the amsart documentclass, proofs start with Proof. and end with an open box,. (47) Note that other documentclasses may not predefine the proof environment! (48) Notice that the open box has been right-justified (automatically), just as it should be. (49) Let s add a proof for the theorem. (50) After \end{thm} hit [Enter] twice. (51) Type \begin{proof} and hit [Enter] twice. (52) Type \end{proof}. (53) On the blank line between these two commands, type The proof relies on the result of Lemma~\ref{lem:even-squares}.. (54) [Ctrl]+[T] to typeset. (55) Of course, this is not a real proof of the theorem, as there are some details that need to be added. (56) This is just an example of how we often use a lemma, and a reminder of how to use internal labels and references. (57) Typically, a lemma is used as a helping theorem in a proof of another larger result. (58) Let s enter our last few numbered theorem styles, Definitions and Examples.

9 TUTORIAL 9: THEOREM STYLES 9 (59) Although we certainly could follow the same mold prescribed for the theorem styles we have already developed, we would like to provide an alternative. (60) Typically, we want numbered definitions and examples to appear in regular Roman font; that is, we want the text of these constructs to use the same font style as the rest of the paper instead of the italic font used for theorems, lemmas, etc. (61) Scroll back up to the preamble. (62) Place your cursor on the line that contains \newtheorem{conj}[thm]{conjecture} and hit [Enter]. (63) Type % Definitions and examples are numbered relative to theorems but the font is not italicized. and hit [Enter]. (64) Type \theoremstyle{definition}. (65) The command \theoremstyle{definition} tells L A TEX that the constructs that follow it will be typeset using the standard Roman font (i.e., not italics) of the amsart document class. (66) After \theoremstyle{definition} hit [Enter]. (67) Type \newtheorem{defn}[thm]{definition} and hit [Enter]. (68) Type \newtheorem{ex}[thm]{example}.

10 10 C. RARIDAN (69) Please note that we cannot use the abbreviation def for the definition theorem style because that command is a reserved L A TEX command. (70) Just to see what these theorem styles will look like and how they are numbered, scroll to the end of your L A TEX document. (71) Place your cursor at the end of the paragraph that ends with numbered theorem styles. and hit [Enter] twice. (72) Type \begin{ex} and hit [Enter] twice. (73) Type \end{ex}. (74) on the blank line between these two commands, type \label{ex:even-squares and hit [Enter]. (75) Type If $x$ is 2, 4, or 6, then $x^2$ is 4, 16, or 36, respectively.. (76) [Ctrl]+[T] to typeset. (77) Notice that this example is typeset in the usual upright Roman font rather than in italics, which was used for the lemma and theorem. (78) In addition, L A TEX has updated the numbering of these theorem styles appropriately. 4. Changing the way L A TEX numbers equations In this section, we examine how to change the numbering of equations so that they are numbered relative to the section in which they occur

11 TUTORIAL 9: THEOREM STYLES 11 and how to move the equation number from the left-hand side of the page to the right-hand side of the page. (1) Scroll back up to the preamble. (2) Place your cursor on the line that contains \newtheorem{ex}[thm]{example} and hit [Enter] twice. (3) Type % Equations will be numbered by section. and hit [Enter]. (4) Type \numberwithin{equation}{section}. (5) There should be only one blank line between this last L A TEX command and % END PREAMBLE. (6) The command \numberwithin{equation}{section} tells L A TEX that equations will be numbered within sections, but relative only to each other and not any other numbered construct. (7) [Ctrl]+[T] to typeset. (8) We should notice that the integral expression (on page 2) is now numbered (2.1) ; it is the first numbered equation in Section 2. (9) To move the equation numbering from the left-hand side of the page to the right-hand side, we need to add to the optional argument in the \documentclass command. (10) Scroll back to the top of your L A TEX document and locate \documentclass[12pt]{amsart}.

12 12 C. RARIDAN (11) Place your cursor after 12pt but before the right closing bracket. (12) Type,reqno. (13) That is, type a comma then reqno. (14) This optional argument tells L A TEX to place the equation numbering on the right-hand side of the page. (15) [Ctrl]+[T] to typeset. (16) You should see that equation number (2.1) has been moved accordingly. (17) This is not a required argument, but an optional one! (18) Although we have seen equations numbered on both the leftand right-hand side of the page within journal articles, we believe it looks better when they are numbered on the right. 5. Updating the Abstract Please update your previous abstract (from Tutorial 8) to reflect what you learned in this tutorial as well. Please do not add more than 2 or 3 sentences or about 50 words. Department of Mathematics, Clayton State University, Morrow, Georgia address: ChristopherRaridan@clayton.edu

Notes on L A TEX. Jim Howie. October 14, 2013

Notes on L A TEX. Jim Howie. October 14, 2013 Notes on L A TEX Jim Howie October 14, 2013 Contents 1 Introduction 2 1.1 Structure of a L A TEX file............................. 2 1.2 A simple L A TEX file................................ 3 1.3 Sections

More information

MLA Formatting in Microsoft Word 2010/2011

MLA Formatting in Microsoft Word 2010/2011 MLA Formatting in Microsoft Word 2010/2011 Learn to format a research paper in MLA style using Microsoft Word 2010 for Windows and 2011 for Mac. Program Version and Resources for Guide All the recommended

More information

Instructions for Formatting APA Style Papers in Microsoft Word 2010

Instructions for Formatting APA Style Papers in Microsoft Word 2010 Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

Create a report with formatting, headings, page numbers and table of contents

Create a report with formatting, headings, page numbers and table of contents Create a report with formatting, headings, numbers and table of contents MS Office Word 2010 Combine this model with instructions from your teacher and your report will be something you can be proud of.

More information

Writing Mathematical Papers a Few Tips

Writing Mathematical Papers a Few Tips Writing Mathematical Papers a Few Tips Jerzy Trzeciak Publications Department of IMPAN publ@impan.pl 1 Some generalities It is very easy to publish a paper these days you can just put it on the internet.

More information

Handout #1: Mathematical Reasoning

Handout #1: Mathematical Reasoning Math 101 Rumbos Spring 2010 1 Handout #1: Mathematical Reasoning 1 Propositional Logic A proposition is a mathematical statement that it is either true or false; that is, a statement whose certainty or

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

More information

Mail Merge (Microsoft Office 2010)

Mail Merge (Microsoft Office 2010) Mail Merge (Microsoft Office 2010) Microsoft Word s 2010 mail merge feature allows users to create one document, such as a customer appreciation letter, promotional letter, or an employee appreciation

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Basic Formatting of a Microsoft Word. Document for Word 2003 and 2007. Center for Writing Excellence

Basic Formatting of a Microsoft Word. Document for Word 2003 and 2007. Center for Writing Excellence Basic Formatting 1 Basic Formatting of a Microsoft Word Document for Word 2003 and 2007 Center for Writing Excellence Updated April 2009 Basic Formatting 2 Table of Contents GENERAL FORMATTING INFORMATION...

More information

If n is odd, then 3n + 7 is even.

If n is odd, then 3n + 7 is even. Proof: Proof: We suppose... that 3n + 7 is even. that 3n + 7 is even. Since n is odd, there exists an integer k so that n = 2k + 1. that 3n + 7 is even. Since n is odd, there exists an integer k so that

More information

ITCS QUICK REFERENCE GUIDE: EXPRESSION WEB SITE

ITCS QUICK REFERENCE GUIDE: EXPRESSION WEB SITE Create a One-Page Website Using Microsoft Expression Web This tutorial uses Microsoft Expression Web 3 Part 1. Create the Site on your computer Create a folder in My Documents to house the Web files. Save

More information

Microsoft Word: Moodle Quiz Template

Microsoft Word: Moodle Quiz Template Microsoft Word: Moodle Quiz Template By Pete Sparkes P a g e 1 About this guide This document was created by Pete Sparkes (Learning Technologist at the University of Sussex) to provide guidance on using

More information

Creating APA Style Research Papers (6th Ed.)

Creating APA Style Research Papers (6th Ed.) Creating APA Style Research Papers (6th Ed.) All the recommended formatting in this guide was created with Microsoft Word 2010 for Windows and Word 2011 for Mac. If you are going to use another version

More information

Chapter 6. Formatting Text with Character Tags

Chapter 6. Formatting Text with Character Tags Chapter 6 Formatting Text with Character Tags 143 144 FrameMaker 7: The Complete Reference In many desktop publishing applications, you use a single style sheet for both paragraph and character formatting.

More information

Dragan Jukić. Department of Mathematics, University of Osijek, Trg Ljudevita Gaja 6, HR-31 000 Osijek, Croatia. Received ; accepted??

Dragan Jukić. Department of Mathematics, University of Osijek, Trg Ljudevita Gaja 6, HR-31 000 Osijek, Croatia. Received ; accepted?? MATHEMATICAL COMMUNICATIONS 1 Math. Commun. xx(201x), 1 6. A demonstration of the L A TEX2ε class file for Mathematical Communications Dragan Jukić Department of Mathematics, University of Osijek, Trg

More information

Instructions for Formatting MLA Style Papers in Microsoft Word 2010

Instructions for Formatting MLA Style Papers in Microsoft Word 2010 Instructions for Formatting MLA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

Creating a table of contents quickly in Word

Creating a table of contents quickly in Word Creating a table of contents quickly in Word This note shows you how to set up a table of contents that can be generated and updated quickly and easily, even for the longest and most complex documents.

More information

The Title of a Yale University Doctoral. Dissertation

The Title of a Yale University Doctoral. Dissertation The Title of a Yale University Doctoral Dissertation A Dissertation Presented to the Faculty of the Graduate School of Yale University in Candidacy for the Degree of Doctor of Philosophy by The Author

More information

The Prime Numbers. Definition. A prime number is a positive integer with exactly two positive divisors.

The Prime Numbers. Definition. A prime number is a positive integer with exactly two positive divisors. The Prime Numbers Before starting our study of primes, we record the following important lemma. Recall that integers a, b are said to be relatively prime if gcd(a, b) = 1. Lemma (Euclid s Lemma). If gcd(a,

More information

How to complete the FCE Online Practice Test Free Sample: Reading

How to complete the FCE Online Practice Test Free Sample: Reading First Certificate in English Online Practice Test Free Sample How to complete the FCE Online Practice Test Free Sample: Reading Welcome to the First Certificate in English Online Practice Test Free Sample.

More information

Step 2: Headings and Subheadings

Step 2: Headings and Subheadings Step 2: Headings and Subheadings This PDF explains Step 2 of the step-by-step instructions that will help you correctly format your ETD to meet UCF formatting requirements. Step 2 shows you how to set

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial 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

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

Tutorial: How to Use the Microsoft Citations & Bibliography Tool

Tutorial: How to Use the Microsoft Citations & Bibliography Tool Disclaimers: 1. This tutorial focuses on managing Citations & Bibliography Works Cited (MLA) and References (APA) for documents created in Microsoft Word. This tutorial is not intended to serve as a substitute

More information

Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter)

Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Content Management Systems Web Publishing Guide Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Guidelines, Glossary, Tips, URL to Log In & How to Log Out... 2 Landing

More information

Using WINK to create custom animated tutorials

Using WINK to create custom animated tutorials Using WINK to create custom animated tutorials A great way for students and teachers alike to learn how to use new software is to see it demonstrated and to reinforce the lesson by reviewing the demonstration.

More information

Structuring your essays, theses and reports using Word 2011 for Mac

Structuring your essays, theses and reports using Word 2011 for Mac Structuring your essays, theses and reports using Word 2011 for Mac A guide to tools in Word that will assist in the structuring of an essay, thesis or report This workbook is aimed at those who use Word

More information

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College *

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College * Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College * Some Student Organizations are on our web server called

More information

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window.

Windows 95. 2a. Place the pointer on Programs. Move the pointer horizontally to the right into the next window. Word Processing Microsoft Works Windows 95 The intention of this section is to instruct basic word processing skills such as creating, editing, formatting, saving and closing a new document. Microsoft

More information

Karolinska Institutet, Stockholm, Sweden INSTRUCTIONS HOW TO USE THE THESIS TEMPLATE IN WORD 2010/2013 FOR WINDOWS

Karolinska Institutet, Stockholm, Sweden INSTRUCTIONS HOW TO USE THE THESIS TEMPLATE IN WORD 2010/2013 FOR WINDOWS Karolinska Institutet, Stockholm, Sweden INSTRUCTIONS HOW TO USE THE THESIS TEMPLATE IN WORD 2010/2013 FOR WINDOWS Stockholm 2014 ABSTRACT Since the end of the 1990s, Karolinska Institutet has supplied

More information

Creating Accessible Documents in Word 2011 for Mac

Creating Accessible Documents in Word 2011 for Mac Creating Accessible Documents in Word 2011 for Mac NOTE: Word 2011 for Mac does not offer an Accessibility Checker. After creating your document, you can double-check your work on a PC, to make sure your

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

Access Tutorial 2: Tables

Access Tutorial 2: Tables Access Tutorial 2: Tables 2.1 Introduction: The importance of good table design Tables are where data in a database is stored; consequently, tables form the core of any database application. In addition

More information

First Certificate in English Online Practice Test Free Sample. How to complete the FCE Online Practice Test Free Sample: Writing

First Certificate in English Online Practice Test Free Sample. How to complete the FCE Online Practice Test Free Sample: Writing First Certificate in English Online Practice Test Free Sample How to complete the FCE Online Practice Test Free Sample: Writing Welcome to the First Certificate in English Online Practice Test Free Sample.

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

TLMC WORKSHOP: THESIS FORMATTING IN WORD 2010

TLMC WORKSHOP: THESIS FORMATTING IN WORD 2010 Table of Contents Introduction... 2 Getting Help... 2 Tips... 2 Working with Styles... 3 Applying a Style... 3 Choosing Which Styles to Use... 3 Modifying a Style... 4 Creating A New Style... 4 Setting

More information

Factorizations: Searching for Factor Strings

Factorizations: Searching for Factor Strings " 1 Factorizations: Searching for Factor Strings Some numbers can be written as the product of several different pairs of factors. For example, can be written as 1, 0,, 0, and. It is also possible to write

More information

WYSIWYG Tips and FAQ

WYSIWYG Tips and FAQ WYSIWYG Tips and FAQ Version 1.0 WYSIWYG: What you see is what you get. This is an abbreviation for the type of editor Acalog uses. You will layout your content in the editor, and when you hit preview,

More information

MICROSOFT POWERPOINT STEP BY STEP GUIDE

MICROSOFT POWERPOINT STEP BY STEP GUIDE IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

Integrated Invoicing and Debt Management System for Mac OS X

Integrated Invoicing and Debt Management System for Mac OS X Integrated Invoicing and Debt Management System for Mac OS X Program version: 6.3 110401 2011 HansaWorld Ireland Limited, Dublin, Ireland Preface Standard Invoicing is a powerful invoicing and debt management

More information

Setting Up APA Format (Page and Header) for PC s. Step 1 (Preparing the Pages)

Setting Up APA Format (Page and Header) for PC s. Step 1 (Preparing the Pages) Setting Up APA Format (Page and Header) for PC s Step 1 (Preparing the Pages) 1. Click WORD 2. Click Page Layout 3. Click Margins 4. Click Normal 5. Click small arrow in right corner of Paragraph Should

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial 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

Live Text at Centenary College Quick Tips Guide

Live Text at Centenary College Quick Tips Guide Live Text at Centenary College Quick Tips Guide Please read all the information on this page. LiveText can help you create and maintain a digital portfolio of all the assignments and teaching materials

More information

Creating tables of contents and figures in Word 2013

Creating tables of contents and figures in Word 2013 Creating tables of contents and figures in Word 2013 Information Services Creating tables of contents and figures in Word 2013 This note shows you how to create a table of contents or a table of figures

More information

HOW TO MAKE A TABLE OF CONTENTS

HOW TO MAKE A TABLE OF CONTENTS HOW TO MAKE A TABLE OF CONTENTS WHY THIS IS IMPORTANT: MS Word can make a Table of Contents automatically by using heading styles while you are writing your document; however, these instructions will focus

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

After you complete the survey, compare what you saw on the survey to the actual questions listed below: Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8

Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 Introduction To Microsoft Office Excel 2007. Bob Booth July 2008 AP-Excel8 University of Sheffield Contents 1. INTRODUCTION... 3 2. OVERVIEW OF SPREADSHEETS... 3 3. GETTING STARTED... 4 3.1 STARTING EXCEL

More information

How to complete the FCE Online Practice Test Free Sample: Use of English

How to complete the FCE Online Practice Test Free Sample: Use of English First Certificate in English Online Practice Test Free Sample How to complete the FCE Online Practice Test Free Sample: Use of English Welcome to the First Certificate in English Online Practice Test Free

More information

Preparing Your Thesis with Microsoft Word: How to use the Rensselaer Polytechnic Institute Template Files. Contents

Preparing Your Thesis with Microsoft Word: How to use the Rensselaer Polytechnic Institute Template Files. Contents Preparing Your Thesis with Microsoft Word: How to use the Rensselaer Polytechnic Institute Template Files Contents 1. Introduction... 2 2. Downloading the RPI Thesis Template and Prototype Files... 2 3.

More information

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005

Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction to Visio 2003 By Kristin Davis Information Technology Lab School of Information The University of Texas at Austin Summer 2005 Introduction This tutorial is designed for people who are new

More information

2. A tutorial on notebooks

2. A tutorial on notebooks 2. A tutorial on notebooks If you want to read this book live (as intended) you will need to read this chapter on screen and with Mathematica running, and do the things it says to do. You won't get much

More information

Creating and Using Master Documents

Creating and Using Master Documents Creating and Using Master Documents Title: Creating and Using Master Documents Version: 0.3 First edition: 09/04 Contents Overview...2 Acknowledgments...2 Modifications and updates... 2 Why use a master

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

How To Use L A T Ex On Pc Or Macbook Or Macintosh (Windows) With A L At Ex (Windows 3) On A Pc Or Ipo (Windows 2) With An Ipo Computer (Windows 4)

How To Use L A T Ex On Pc Or Macbook Or Macintosh (Windows) With A L At Ex (Windows 3) On A Pc Or Ipo (Windows 2) With An Ipo Computer (Windows 4) About L A T E X L A T E X Tutorial You can either print this document or follow it on line. L A T E X (pronounced either Lay-tech or Lah-tech ) is a portable document formatting system based on T E X (pronounced

More information

i>clicker integrate for Canvas v1.1 Instructor Guide

i>clicker integrate for Canvas v1.1 Instructor Guide i>clicker integrate for Canvas v1.1 Instructor Guide July 2013 Table of Contents Overview... 3 Step 1: Copy your integrate Wizard Files... 4 Step 2: Configure your i>clicker Software... 5 Step 3: Create

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics Microsoft Word 2010 Basics 1. Start Word if the Word 2007 icon is not on the desktop: a. Click Start>Programs>Microsoft Office>Microsoft Word 2007 b. The Ribbon- seen across the top of Microsoft Word.

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Continued Fractions and the Euclidean Algorithm

Continued Fractions and the Euclidean Algorithm Continued Fractions and the Euclidean Algorithm Lecture notes prepared for MATH 326, Spring 997 Department of Mathematics and Statistics University at Albany William F Hammond Table of Contents Introduction

More information

Session 7 Fractions and Decimals

Session 7 Fractions and Decimals Key Terms in This Session Session 7 Fractions and Decimals Previously Introduced prime number rational numbers New in This Session period repeating decimal terminating decimal Introduction In this session,

More information

def: An axiom is a statement that is assumed to be true, or in the case of a mathematical system, is used to specify the system.

def: An axiom is a statement that is assumed to be true, or in the case of a mathematical system, is used to specify the system. Section 1.5 Methods of Proof 1.5.1 1.5 METHODS OF PROOF Some forms of argument ( valid ) never lead from correct statements to an incorrect. Some other forms of argument ( fallacies ) can lead from true

More information

1. Click the File tab 2. Click "Options" 3. Click "Save" 4. In the line labeled "Default file location", browse to the desired folder 5.

1. Click the File tab 2. Click Options 3. Click Save 4. In the line labeled Default file location, browse to the desired folder 5. Instructional Technology Services Tips and Tricks for Word Tips & Tricks for Word (in Windows) There are a lot of things you can do in Word to save time, such as changing default settings to your preferred

More information

Rend. Sem. Mat. Univ. Padova 1xx (201x) Rendiconti del Seminario Matematico della Università di Padova c European Mathematical Society.

Rend. Sem. Mat. Univ. Padova 1xx (201x) Rendiconti del Seminario Matematico della Università di Padova c European Mathematical Society. Rend. Sem. Mat. Univ. Padova 1xx (201x) Rendiconti del Seminario Matematico della Università di Padova c European Mathematical Society Title of paper First author s name Second author s name Abstract This

More information

Flash Objects. Dynamic Content 1

Flash Objects. Dynamic Content 1 Dynamic Content 1 The WebPlus Gallery tab provides a wide range of predesigned Flash banners that you can add to your site, and customize to suit your needs. In addition, it s very easy to add your own

More information

Formatting & Styles Word 2010

Formatting & Styles Word 2010 Formatting & Styles Word 2010 Produced by Flinders University Centre for Educational ICT CONTENTS Layout... 1 Using the Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands

More information

Key English Test Online Practice Test Free Sample. How to complete the KET Online Practice Test Free Sample: Reading & Writing

Key English Test Online Practice Test Free Sample. How to complete the KET Online Practice Test Free Sample: Reading & Writing Key English Test Online Practice Test Free Sample How to complete the KET Online Practice Test Free Sample: Reading & Writing Welcome to the Key English Test Online Practice Test Free Sample. This is the

More information

SAMPLE TURABIAN STYLE PAPER

SAMPLE TURABIAN STYLE PAPER SAMPLE TURABIAN STYLE PAPER John Doe History 2010 Dr. Johnson July 11, 2014 Doe 1 The Turabian style sample essay has been prepared to help answer some of the questions and problems that you may have when

More information

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7 Microsoft Word: Advanced Features for Publication, Collaboration, and Instruction For your MAC (Word 2011) Presented by: Karen Gray (kagray@vt.edu) Word Help: http://mac2.microsoft.com/help/office/14/en-

More information

Tutorial 1: The Freehand Tools

Tutorial 1: The Freehand Tools UNC Charlotte Tutorial 1: The Freehand Tools In this tutorial you ll learn how to draw and construct geometric figures using Sketchpad s freehand construction tools. You ll also learn how to undo your

More information

Math 319 Problem Set #3 Solution 21 February 2002

Math 319 Problem Set #3 Solution 21 February 2002 Math 319 Problem Set #3 Solution 21 February 2002 1. ( 2.1, problem 15) Find integers a 1, a 2, a 3, a 4, a 5 such that every integer x satisfies at least one of the congruences x a 1 (mod 2), x a 2 (mod

More information

Microsoft Word 2007 Module 1

Microsoft Word 2007 Module 1 Microsoft Word 2007 Module 1 http://pds.hccfl.edu/pds Microsoft Word 2007: Module 1 July, 2007 2007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

BLACKBOARD 9.1: Text Editor

BLACKBOARD 9.1: Text Editor BLACKBOARD 9.1: Text Editor The text editor in Blackboard is a feature that appears in many different areas, but generally has the same look and feel no matter where it appears. The text editor has changed

More information

for Windows Users Format an Academic Paper London School of Economics & Political Science 1 lse.ac.uk/imt/training

for Windows Users Format an Academic Paper London School of Economics & Political Science 1 lse.ac.uk/imt/training Word 2010 for Windows Users Format an Academic Paper London School of Economics & Political Science 1 lse.ac.uk/imt/training How to use this guide I want to Fix my document Format my document Identify

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2 CS 70 Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2 Proofs Intuitively, the concept of proof should already be familiar We all like to assert things, and few of us

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

More information

Inside Blackboard Collaborate for Moderators

Inside Blackboard Collaborate for Moderators Inside Blackboard Collaborate for Moderators Entering a Blackboard Collaborate Web Conference 1. The first time you click on the name of the web conference you wish to enter, you will need to download

More information

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring 7 th Annual LiveText Collaboration Conference Advanced Document Authoring Page of S. La Grange Road, nd Floor, La Grange, IL 6055-455 -866-LiveText (-866-548-3839) edu-solutions@livetext.com Page 3 of

More information

Creating forms in Microsoft Access 2007

Creating forms in Microsoft Access 2007 Platform: Windows PC Ref no: USER 166 Date: 14 th January 2008 Version: 1 Authors: Derek Sheward, Claire Napier Creating forms in Microsoft Access 2007 This is the fourth document in a series of five on

More information

GRADE 5 SUPPLEMENT. Set A2 Number & Operations: Primes, Composites & Common Factors. Includes. Skills & Concepts

GRADE 5 SUPPLEMENT. Set A2 Number & Operations: Primes, Composites & Common Factors. Includes. Skills & Concepts GRADE 5 SUPPLEMENT Set A Number & Operations: Primes, Composites & Common Factors Includes Activity 1: Primes & Common Factors A.1 Activity : Factor Riddles A.5 Independent Worksheet 1: Prime or Composite?

More information

Microsoft Outlook Introduction

Microsoft Outlook Introduction Microsoft Outlook Introduction Division of Information Technology February 2016 Contents Document Management History... 3 Introduction... 4 Getting Started... 4 Using MS Outlook... 4 What MS Outlook looks

More information

Cartesian Products and Relations

Cartesian Products and Relations Cartesian Products and Relations Definition (Cartesian product) If A and B are sets, the Cartesian product of A and B is the set A B = {(a, b) :(a A) and (b B)}. The following points are worth special

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

Word Processing programs and their uses

Word Processing programs and their uses Word Processing programs and their uses An application that provides extensive tools for creating all kinds of text based programs. They are not limited to working with text and enable you to add images

More information

Customizing forms and writing QuickBooks Letters

Customizing forms and writing QuickBooks Letters LESSON 15 Customizing forms and writing QuickBooks Letters 15 Lesson objectives, 398 Supporting materials, 398 Instructor preparation, 398 To start this lesson, 398 About QuickBooks forms, 399 Customizing

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Tutorial Microsoft Office Excel 2003

Tutorial Microsoft Office Excel 2003 Tutorial Microsoft Office Excel 2003 Introduction: Microsoft Excel is the most widespread program for creating spreadsheets on the market today. Spreadsheets allow you to organize information in rows and

More information

Lecture 13 - Basic Number Theory.

Lecture 13 - Basic Number Theory. Lecture 13 - Basic Number Theory. Boaz Barak March 22, 2010 Divisibility and primes Unless mentioned otherwise throughout this lecture all numbers are non-negative integers. We say that A divides B, denoted

More information

Create a GAME PERFORMANCE Portfolio with Microsoft Word

Create a GAME PERFORMANCE Portfolio with Microsoft Word Create a GAME PERFORMANCE Portfolio with Microsoft Word Planning A good place to start is on paper. Get a sheet of blank paper and just use a pencil to indicate where the content is going to be positioned

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Using the Content Management System 05-02-12

Using the Content Management System 05-02-12 Using the Content Management System 05-02-12 Using the Content Management System Introduction 2 Logging In 3 Using the Editor 4 Basic Text Editing 5 Pasting Text 7 Adding Hyperlinks 8 Adding Images 9 Style

More information

WRITING PROOFS. Christopher Heil Georgia Institute of Technology

WRITING PROOFS. Christopher Heil Georgia Institute of Technology WRITING PROOFS Christopher Heil Georgia Institute of Technology A theorem is just a statement of fact A proof of the theorem is a logical explanation of why the theorem is true Many theorems have this

More information

Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT...

Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT... Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT... 4 Open a blank document... 4 Start a document from a template...

More information

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information