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

Size: px
Start display at page:

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

Transcription

1 Notes on L A TEX Jim Howie October 14, 2013 Contents 1 Introduction Structure of a L A TEX file A simple L A TEX file Sections etc TEXWorks L A TEX Errors System Errors Mathematics Some useful Mathematics commands Theorems and Things 7 5 Citing and Cross-referencing Cross-referencing Citing Lists and tables Arrays and Matrices Graphics in L A TEX Documents 12 8 Presentations in L A TEX Colours Overlays

2 1 Introduction A L A TEX file is a text file that is processed by software to produce several output files. If the file has no errors then one of the output files will be a printable document such as a PDF. This can be thought of as analogous to a computer language such as Java or MATLAB. We are writing a programme to produce a mathematical document. The TEXWorks system on the University Desktop Service is a comprehensive L A TEX development system that takes care of the nuts and bolts of the compilation process, so that all we have to see are the L A TEX source file and the final PDF output. 1.1 Structure of a L A TEX file A L A TEX file contains various kinds of text. Plain text, which will appear in the final document in the form that we type it in except that L A TEX will take care of the spacing and line-breaks for us. To begin a new paragraph, simply insert an empty line (or the command \par) in the L A TEX file. If you wish to leave a bigger space before your new paragraph, this can be done by inserting \medskip or \bigskip at the start of the new paragraph (after the empty line). It is possible to force a new line without indentation using the double backslash command \\. Text can be put into bold or italic font by including it in braces with the L A TEX command \bf or \it, for example: {\bf bold font text} produces bold font text. Replacing \it by \em in the above which toggles between roman and italic text (ie gives italic text unless we are already in italic mode, when it gives roman text). L A TEX commands: these always begin with the backslash character \. Mathematics: we tell L A TEX to switch into math mode or from math mode back to text mode by the use of the dollar symbol $. Within the dollar signs we can create mathematical symbols using special mathematical L A TEX commands. For example, $ \sin(2\pi x)$ will produce the output sin(2πx). Note that text such as x in math mode is automatically output in italics. The command \sin in math mode overrides this rule and prints sin in roman font. Greek letters α, β,..., π,..., ω are produced using L A TEX commands in math mode. Comments can be included in a L A TEX file by using the percentage sign %. Everything from the percent sign to the end of that line will be ignored by the compiler and will not appear as output. 2

3 There are three essential L A TEX commands that must be contained in every L A TEX file. \documentclass{... } This must be the first line of your file. It tells L A TEX to load one of several class files containing formatting information for different kinds of documents. The system comes equipped several different different class files, called article, letter, book,.... It is also possible to create your own class files, but that is not a task for beginners! To begin with, let us stick to the most commonly used document class article. So our first line should be \documentclass{article} \begin{document} This comes at some point after the \documentclass command, and tells L A TEX to begin typesetting in earnest. The space between \documentclass and \begin{document} is called the preamble. Here we can put optional header material, but more of that later. Following \begin{document} we put in the material both text and mathematics that we actually want to see in the final output. \end{document} is self-explanatory. L A TEX will stop typesetting at this point. We can put lots more in our file after the \end{document} command, but it will be treated as one giant comment. 1.2 A simple L A TEX file We can now construct a simple L A TEX file: \documentclass{article} \begin{document} Here is what we say what we want to say. \end{document} The above four lines will not produce very exciting output. somewhere! But we have to start Note the \begin and \end statements. This is how L A TEX opens and closes an environment. A L A TEX file will in general contain many environments often nested within one another. Each \begin{environment} command must be matched by a corresponding 3

4 \end{environment} command. More on environments later. For now, each L A TEX file contains precisely one document environment. Note also the use of braces, or curly brackets { and }. L A TEX uses these to collect together a string of text and treat it as a single entity. So a L A TEX file will typically contain many braces. Each left brace must be matched to a corresponding right brace and vice versa. Braces do not show up in the output. If you specifically want to have braces in your output document (for example to describe a set), then use \{ and \}. For example $\{1, 2, 3, 4\}$ will appear in your output as {1, 2, 3, 4}. 1.3 Sections etc. If you are writing a longer document, you may want to subdivide it into sections, and possibly subsections (or even subsubsections). Even longer documents (using \documentclass{book}) may be subdivided into chapters. To start a new chapter, section, subsection etc., simply type in a line \chapter{heading} or \section{heading} or so on. L A TEX will output a suitably sized, bold face heading Heading together with an automatically generated number. For example the second subsection of the third section will be numbered 3.2. Automatic numbering is one of the many useful attributes of L A TEX: if you later decide to insert another section in the middle of your document, or to subdivide or delete a section, then L A TEX will automatically change the numbering of all later sections for you. The same applies to chapters, subsections, etc., and also to numbered environments such as Equations (see Section 3 below) or Theorems (Section 4). 2 TEXWorks The only way to learn L A TEX properly is by doing it. The most convenient way to do so is via a user interface such as TEXWorks, which is available on the University Desktop Service. Log in to the University Desktop Service and let s get started. Start TEXWorks by going to All Programs HW Programs MikTeX 2.9 TeXWorks This opens a window into which we can type L A TEX commands to create our own L A TEX file. However, it is always easier to start from an existing L A TEX file and edit it. So why not download some of the sample L A TEX files and use one of these. 4

5 Warning When downloading a file from the internet to the UDS, always choose the Save As option. If you choose Save, or if you open the file and then save from an application programme, the system is likely to save it as a weblink (so it will no longer be on the system when you look for it next time). So, having safely downloaded a L A TEX file and saved it as myfile.tex, we can open it in TEXWorks using File Open There is a green arrow in the top left of the TEXWorks window. Press this and a new window will open, displaying a PDF ouptput file created from the L A TEX file. Experiment by editing the text in the L A TEX file and pressing the green arrow again. 2.1 L A TEX Errors Like any computer language, L A TEX works only if it is fed input that follows its own syntax rules. If your file contains a L A TEX error (which will happen frequently as you learn to use L A TEX), then instead of producing PDF output, TEXWorks will display error messages in the console at the foot of the L A TEX window. You then need to edit the L A TEX file and try again, by hitting the red cross. Some of these error messages are self-explanatory (for example, if you try to type a mathematical symbol such as \alpha without first entering a $ sign to go into math mode, or if you have unmatched brackets or a missing \end{environment} command). Other error messages are less easy to follow, so you may have to do some investigation and/or ask for help to interpret them. If in doubt, here is one trick to help locate the L A TEX error(s). Insert a line \end{document} somewhere in the middle of the document, and hit the green arrow/red cross. If the L A TEX file compiles successfully, then any error must be below the point at which you inserted the new line - otherwise there is at least one error above that point. Delete the line and insert it further down or further up in order to narrow down your search. 2.2 System Errors Unfortunately, there have been occasional problems with the University Desktop System, where a student has been denied access to the TEXWorks for no apparent reason. Should this happen, try logging off and logging on again. If the problem persists, ITHelp. 3 Mathematics To type in mathematical expressions (including Greek letters) such as α + tβ = γ δ we enclose them within dollar signs. Note that each symbol is a L A TEX command. L A TEX 5

6 commands start with a backslash symbol, \. The dollar sign $ is used by L A TEX to toggle between ordinary text mode and math mode: $ \sqrt{3} $ is output as 3 Double dollars display the mathematics: $$ \sqrt{3} $$ is output as 3 Alternatively, we can use the equation environment to produce a display. Typing \begin{equation} \zeta(s)=\sum_{n=1}^\infty \frac{1}{n^s} \end{equation} produces the output ζ(s) = n=1 1 n s (1) Notice that the equation comes equipped with a number. This is often useful if we want to refer back to a particular equation see Section 5 below on citing and cross-referencing. 3.1 Some useful Mathematics commands Here is a selection of commonly used mathematical commands in L A TEX. Greek letters: \alpha, \beta, \gamma produces α, β, γ, etc. Arrows: \rightarrow, \leftarrow, \leftrightarrow, \Rightarrow produce,,, respectively. Fractions, square roots: $ \frac{a}{b} $ produces a b, $ \sqrt{a} $ produces a Subscripts and superscripts: $ aˆb$ produces a b, $ aˆ{long} $ produces a long ; $ a b$ produces a b, $ a {long}$ produces a long. (Note the use of braces for subscripts and superscripts more than one character long. The braces force L A TEX to treat the string as a single entity. If they are omitted, then only the first character will be typeset as a subscript or superscript, with strange looking outcomes: $ xˆ10$ produces x 1 0, for example. Blackboard bold letters $ \mathbb{r}$, $ \mathbb{c} $ for R, C etc. Set theory: \{... \} for {... } ; \cup, \cap for, ; \in, \notin for, /, \subset, \subseteq for, 6

7 \equiv, \sim, \cong for,, = \le, \ge, \ll, \gg, \pm, \mp for,,,, ±, A much longer list of useful symbols is available from the L A TEX website. Example The input: A quadratic equation of the form $ axˆ2+bx+c=0 $ can be solved by the quadratic formula $$ x=\frac{ -b \pm \sqrt{ bˆ2-4ac} }{2a} $$ Gives the output: A quadratic equation of the form ax 2 + bx + c = 0 can be solved by the quadratic formula x = b ± b 2 4ac 2a Recommendation: always include \usepackage{amssymb} in your preamble (between the \documentclass and \begin{document} commands). This loads a bigger range of mathematical symbols into the system, that are then available for your use.. 4 Theorems and Things Theorems (and their close relatives: lemmas, corollaries, and so on) are treated by L A TEX as special environments. L A TEX will typset the text of a theorem in italics, and will automatically assign it a number. The downside is that you have to explicitly declare all your theorem-like environments in the preamble to the document. Here is a typical setup: \documentclass{article} \newtheorem{thm}{theorem}[section] \newtheorem{lem}[thm]{lemma} \newtheorem{cor}[thm]{corollary} \begin{document}... 7

8 \begin{thm} Let $a,b$ be real numbers. Then $(a+b)ˆ2=aˆ2+2ab+bˆ2$. \end{thm} In the preamble, we have defined three different theorem-like environments using the \newtheorem command. The first of these is an environment thm, which we invoke in the text using \begin{thm}... \end{thm}. The second argument Theorem of the \newtheorem command tells L A TEX to head each thm with the word Theorem followed by its number. The optional argument section (optional arguments go in square brackets rather than braces) following {Theorem} tells L A TEX to number theorems within sections for example the second theorem in Section 4 will be Theorem 4.2. If you prefer your theorems to be numbered consecutively throughout the document, simply omit this optional argument. The second environment is lem, which L A TEX will head using the word Lemma. In this case there is an optional argument thm between the first and second main arguments (lem and Lemma). This time the optional argument tells L A TEX to number each lem as if they were a thm. The third environment cor is set up similarly. So in our document, we may have Lemma 3.1 immediately followed by Theorem 3.2 and then Corollary 3.3. This system makes it relatively easy for the reader to navigate the results in your document. But if you prefer to have Lemmas numbered independently from Theorems, then you can omit the optional argument. 5 Citing and Cross-referencing 5.1 Cross-referencing As mentioned earlier, L A TEX has an auotmatic numbering system that keeps track of the correct numbers for sections, theorems, equations, etc. and updates the information when you re-run L A TEX after editing the file. You can take advantage of this system for the purposes of cross-referencing. Rather than type in phrases such as see Theorem 4.2 in Section 4, which you may later need to edit, we can proceed as follows. Use the command \label{tag} immediately after your \section or \begin{environment} command. This associates the label tag with the section, theorem etc. in question, irrespective of what number is eventually assigned to it. To cross-refer to that section, theorem etc. in your text, use \ref{tag}. In practice, it makes sense to use an easily memorable tag. For example \section{introduction}\label{intro} In this paper we will prove the Binomial Theorem (Theorem \ref{binom} below).... 8

9 As mentioned in \S \ref{intro}, our main purpose is to prove the following result \begin{thm}[the Binomial Theorem]\label{binom} Let $ a,b $ be real numbers and $ n $ a positive integer. Then $$(a+b)ˆn = \sum {k=0}ˆn \frac{k!(n-k)!}{n!} aˆk bˆ{n-k}.$$ \end{thm} Note the use of \S for section ( ). Note also the optional square bracket after the \begin{thm} command. The phrase in square brackets will be typset in parentheses (round brackets) between the Theorem heading and the statement. The output will look something like: Theorem 5.1 (The Binomial Theorem) Let a, b be real numbers and n a positive integer. Then n (a + b) n k!(n k)! = a k b n k. n! k=0 Note also that \ref{tag} only knows the number associated to tag. It does not know what type of entity that is. So it is better to use a form of word like By Theorem \ref{tag}... rather than just By \ref{tag}.... In particular, equation numbers appear in parentheses beside the display, so you should insert parentheses when cross-referencing an equation: By Equation (\ref{tag}) Citing Citing is analogous to cross-referencing, the difference being that the reader is being refered to an external source rather than part of the same document. But the underlying principle is the same. We assign an easily remembered tag to each external source for example Ratho99 for Hamish Ratho s groundbreaking 1999 paper. To cite this paper (book, website,... ) we simply use the command \cite{ratho99}. If we wish to give a more detailed reference, with a page number for example, we can use an optional squarebracket argument such as \cite[page 32]{Ratho99} or \cite[theorem 2.7]{Ratho99}. We can also cite a list of references with a single command: \cite{howie07,ratho99,rynne09}. The references should be listed at the end of your document, in an environment called thebibliography. Each item in this list is preceded by the command \bibitem{tag}, and consists of bibliographic information as appropriate. For example:... The foundation work for this theory first appeared in the groundbreaking article \cite{ratho99} of Ratho. An account can also be found in \cite[chapter 4]{Howie07}.. 9

10 \begin{thebibliography} \bibitem{howie07} J. Howie, {\em An Exposition of the Groundbreaking Results of Ratho}, Disney-Kenn Publishing Corporation, Balerno (2007). \bibitem{ratho99} H. Ratho, Some observations on the mathematics of witchcraft, {\em J. Excellent Math.} {{\bf 47} (1999) \end{thebibliography} will yield the output:... The foundation work for this theory first appeared in the groundbreaking article [2] of Ratho. An account can also be found in [1,Chapter 4].. References [1] J. Howie, An Exposition of the Groundbreaking Results of Ratho, Disney-Kenn Publishing Corporation, Balerno (2007). [2] H. Ratho, Some observations on the mathematics of witchcraft, J. Excellent Math. 47 (1999) Lists and tables Lists can be created in L A TEX using one of several list environments. We have already seen one of these thebibliography. Here are two other commonly used examples. For a numbered list, use the enumerate environment. The input: \begin{enumerate} \item First item in list \item Next item in list \end{enumerate} will output 1. First item in list 2. Next item in list For a bullet-point list, we do exactly the same, but using the itemize environment: First item in list Next item in list 10

11 Tables can be produced using the tabular environment. \begin{center} (To put table in centre of page. Note US spelling of center.) \begin{tabular}{ l c r } (Alignment parameters left, centre, right; optional between columns). \hline (Optional horizontal line between rows) 1 & 2 & 3 \\ (Alignment characters: & = next column, \\ = next row) \hline 4 & 5 & 6 \hline \end{tabular} \end{center} will produce In the above example the table is itself put inside a center environment the effect of which is simply to place the output in the middle of the page. This is the natural place to put many tables. But it is not essential: in the absence of the center environment or other formatting commands, a table will be typeset left-justified. 6.1 Arrays and Matrices The array environment works like tabular, but in math mode. It can be used to produce matrices, for example. $$ \left( (big open bracket) \begin{array}{ll} (two columns, left-justified) a & b \\ c & d \\ \end{array} \right) $$ (big close bracket) will produce: ( a b ) c d 11

12 7 Graphics in L A TEX Documents Graphic files in PDF, JPEG, PNG and some other formats can be included in a L A TEX document using the graphicx package. More details can be found on the weblinks from the L A TEX website. Prepare your graphics file using whatever software is appropriate and save it in one of the usable formats in the same directory as your L A TEX file. Insert the line \usepackage{graphicx} in your preamble. The sensible place is together with any other \usepackage commands such as \usepackage{amssymb}, immediately after the \documentclass command. Where you want graphics in your document, insert: \includegraphics{filename.pdf} or \includegraphics{filename.jpg} etc., depending on the type of your graphics file. It is usually best to do this within a center environment, to ensure that the image is centred on the page (unless, of course, you specifically want the image not to be centred). You may find that your image does not fit the page, or appears upside down. Rotation and/or scaling parameters can be included in square brackets in the \includegraphics command: \includegraphics[width=80mm]{filename.pdf} \includegraphics[angle=90,height=50mm]{filename.jpg} etcetera. The rules are fairly self-explanatory. But the best approach is to experiment until you find the most appropriate size and orientation for your image. 8 Presentations in L A TEX The beamer document class produces PDF output suitable for use in a presentation using a data projection system. (From the German: Beamer = Overhead Projector.) \documentclass{beamer} There is a template Beamer file on the L A TEX website. This contains some commands in the preamble that help keep the output as simple and uncluttered as possible. It also contains some example slides to indicate some of the features that you can use. After reading this section, I recommend that you look at the Template file and experiment with it to create a presentation of your own. 12

13 Each slide of your output file corresponds to the contents of a frame environment in the Beamer L A TEX file. It is your responsibility to make sure that the slides do not contain too much material. If you try to put too much into a slide, then the excess material simply will not show up on the screen. So in preparing a L A TEX presentation it is good practice to keep viewing the output to make sure that the material fits. If in doubt, split a big slide into two smaller ones. It is also good practice to use a more succinct prose style than you would in a typeset document (bullet points rather than paragraphs, short phrases rather than long sentences). Most of the standard features of L A TEX are present in the beamer document class: mathematical symbols, displayed equations, lists, tables, graphics and so on. These are used in the same way as when writing a document for typesetting. The main difference is that the output is to be viewed on a screen, rather than a page, so you need to make every effort to ensure that the effort is visible. Be prepared to use additional \medskip or \bigskip commands to spread your text out, for example. Graphics in a presentation can be particularly effective, but take good care that they do not get in the way of the text. 8.1 Colours Two additional features of Beamer are worthy of note. One is the use of colours, which are not catered for in standard L A TEX. Colour can be very effective in a presentation, for example to highlight text it is better to colour it red than to typeset it in bold or italic font. But care should be taken with choice of colour(s) for various reasons. Strong colours such as red are effective: pale colours such as yellow or pink do not show up well on a screen, so should be avoided. Red-green colour-blindness is relatively common, so you should avoid using red and green for different purposes on the same slide. Finally, too many colours on a single slide (other than in a photograph or similar graphic) can be distracting. In practice, I tend to use only red and blue but that is partly a matter of taste; you should experiment and decide what works best for you. To typeset a piece of text or mathematics in red, simply enclose it in braces with the command \color{red}. (Note the US spelling of colour.) Similarly for other colours. For example {\color{blue} Definition} An integer $ n $ is {\color{red} even} if it is divisible by $ 2$. will highlight the heading Definition in one colour and the word being defined even in another. In a typescript document, these would naturally appear in bold and italics respectively, but the colours work better on a slide. 13

14 8.2 Overlays Overlays are pieces of content that can be added and/or removed from a slide to create a particular effect. For example, you may wish to have a slide showing the statement of a theorem with the final conclusion missing, then click to reveal the full statement. This can be achieved using overlays. In practice the output document will contain two or more pages that look identical except for the material that is being overlaid. (This can make the PDF file be large, but can sometimes be effective.) To produce an overlay within a frame, use the command \uncover number(s) {content}, where content is the material that you wish to be included in the overlay, and number(s) is the number, or list of numbers of the versions of the slide in which you wish this material to be displayed. This could be a single number such as 2, a range of numbers: 2-3, or a list of numbers and/or ranges: -2,4,6-8. If the beginning of a range is missing, it is given the default value 1. If the end is missing, the default value is the maximum. You can have several overlays on any single frame. The number of slides produced is equal to to largest number in any of the numbers lists. An overlay will be displayed on slide n if and only if n is one of the numbers (or within one of the ranges) in its numbers list. The simple example mentioned above, of a theorem statement with overlaid conclusion, could be typeset something like: \begin{frame} \begin{theorem} Let $ a,b $ be real numbers. Then \overlay 2 {$$ (a+b)ˆ2 = aˆ2 + 2ab + bˆ2. $$} \end{theorem} \end{frame} See the Beamer template for more examples. Recommendation: Be careful not to over-use overlays. Used well, they can be effective in helping get your message across. But if used too much they become a distraction. 14

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

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

Fun with Beamer. ...and HAPPY BIRTHDAY SHAWN! Tina Li, Thomas Graul, and Niranjan Balachandar. June 29, 2016

Fun with Beamer. ...and HAPPY BIRTHDAY SHAWN! Tina Li, Thomas Graul, and Niranjan Balachandar. June 29, 2016 Fun with Beamer...and HAPPY BIRTHDAY SHAWN! Tina Li, Thomas Graul, and Niranjan Balachandar June 29, 2016 Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 : Lists, Graphics, Tables 3

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

Multifactor Authentication and Session Support in OpenVPN

Multifactor Authentication and Session Support in OpenVPN Multifactor Authentication and Session Support in OpenVPN Report submitted in accordance with the requirements of the Indian Institute of Technology, Kanpur by Harshwardhan Sharma (), Shivanshu Agarwal

More information

L A T E X Thesis Class for University of Colorado

L A T E X Thesis Class for University of Colorado L A T E X Thesis Class for University of Colorado Bruce Fast, OIT November 2011 The Graduate School of the University of Colorado species (1) just how Master's theses and Doctoral dissertations should

More information

Using Casio Graphics Calculators

Using Casio Graphics Calculators Using Casio Graphics Calculators (Some of this document is based on papers prepared by Donald Stover in January 2004.) This document summarizes calculation and programming operations with many contemporary

More information

moresize: More font sizes with L A TEX

moresize: More font sizes with L A TEX moresize: More font sizes with L A TEX Christian Cornelssen (cornsub1@flintstone.ukbf.fu-berlin.de) v1.9 [1999/07/26] 1 Introduction \HUGE \ssmall When writing yet another L A TEX introduction with a demonstration

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

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

ECDL / ICDL Word Processing Syllabus Version 5.0

ECDL / ICDL Word Processing Syllabus Version 5.0 ECDL / ICDL Word Processing Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Word Processing. The syllabus describes, through learning outcomes, the knowledge and skills

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Name: Class: Date: 9. The compiler ignores all comments they are there strictly for the convenience of anyone reading the program.

Name: Class: Date: 9. The compiler ignores all comments they are there strictly for the convenience of anyone reading the program. Name: Class: Date: Exam #1 - Prep True/False Indicate whether the statement is true or false. 1. Programming is the process of writing a computer program in a language that the computer can respond to

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D 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,

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

A Tutorial on Creating Presentations Using Beamer

A Tutorial on Creating Presentations Using Beamer A Tutorial on Creating Presentations Using Department of Computer Science The University of Iowa Iowa City, IA April 8, 2009 A Tutorial on Creating Presentations Using Some info on L A TEX L A TEX is a

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

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Department of Mathematics and Computer Science Eastern Illinois University 600 Lincoln Avenue Charleston, IL 61920 3099

Department of Mathematics and Computer Science Eastern Illinois University 600 Lincoln Avenue Charleston, IL 61920 3099 The PracTEX Journal TPJ 2005 No 04, 2005-10-20 Article revision 2005-10-25 Beamer by Example Andrew Mertz and William Slough Email Address Abstract cfaem@eiu.edu, cfwas@eiu. edu Department of Mathematics

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

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

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

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.

More information

Guide for writing assignment reports

Guide for writing assignment reports l TELECOMMUNICATION ENGINEERING UNIVERSITY OF TWENTE University of Twente Department of Electrical Engineering Chair for Telecommunication Engineering Guide for writing assignment reports by A.B.C. Surname

More information

ECDL / ICDL Presentation Syllabus Version 5.0

ECDL / ICDL Presentation Syllabus Version 5.0 ECDL / ICDL Presentation Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Presentation. The syllabus describes, through learning outcomes, the knowledge and skills that a

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

What is Beamer?! Introduction to Beamer Beamer is a LATEX class for creating slides for presentations. Commands for Header and the Title Page

What is Beamer?! Introduction to Beamer Beamer is a LATEX class for creating slides for presentations. Commands for Header and the Title Page Beamer 101 1/33 Beamer 101 2/33 Introduction to Beamer Beamer is a LATEX class for creating slides for presentations Steven G. Wicker Winston Salem, NC wickersg@wfu.edu Updated September 2014 SG Wicker

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

Tips on Beamer, TikZ and BibTeX

Tips on Beamer, TikZ and BibTeX Fei Ye 1 and Moshe Cohen 2 1,2 Department of Mathematics Bar-Ilan University March 28, 2012 1 The preamble Frames Some tips 2 A simple template More basic examples foreach allows for some inline coding

More information

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

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

Contents 1. Introduction... 2

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

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp.

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp. Enhanced Formatting and Document Management Word 2010 Unit 3 Module 3 Diocese of St. Petersburg Office of Training Training@dosp.org This Page Left Intentionally Blank Diocese of St. Petersburg 9/5/2014

More information

ECDL. European Computer Driving Licence. Word Processing Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Word Processing Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Word Processing Software BCS ITQ Level 2 Using Microsoft Word 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT,

More information

Mass Email. General Use

Mass Email. General Use Mass Email The Q Mass Email application allows users to compose and mass email students and/or their contacts. The application will mass send emails based on the selected Sender and creation of a Recipients

More information

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

More information

OWrite One of the more interesting features Manipulating documents Documents can be printed OWrite has the look and feel Find and replace

OWrite One of the more interesting features Manipulating documents Documents can be printed OWrite has the look and feel Find and replace OWrite is a crossplatform word-processing component for Mac OSX, Windows and Linux with more than just a basic set of features. You will find all the usual formatting options for formatting text, paragraphs

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

Help on Icons and Drop-down Options in Document Editor

Help on Icons and Drop-down Options in Document Editor Page 1 of 5 Exact Synergy Enterprise Help on Icons and Drop-down Options in Document Editor Introduction The following table provides descriptions on the icons and drop-down options that are available

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

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

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

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 INFORMATION SERVICES Version 3.0 July 2011 Table of Contents Section 1 - Introduction... 1 Section 2 - Initial Preparation... 2 2.1 Overall

More information

Chapter One Introduction to Programming

Chapter One Introduction to Programming Chapter One Introduction to Programming 1-1 Algorithm and Flowchart Algorithm is a step-by-step procedure for calculation. More precisely, algorithm is an effective method expressed as a finite list of

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Starting User Guide 11/29/2011

Starting User Guide 11/29/2011 Table of Content Starting User Guide... 1 Register... 2 Create a new site... 3 Using a Template... 3 From a RSS feed... 5 From Scratch... 5 Edit a site... 6 In a few words... 6 In details... 6 Components

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

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Formatting Text in Microsoft Word

Formatting Text in Microsoft Word Formatting Text - 1 of 44 Formatting Text in Microsoft Word Page Setup 2 Centering Text 3 Line Spacing 4 Paragraph Spacing 4 Indenting a Paragraph s First Line 5 Hanging Indentation 5 Indenting an Entire

More information

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net

2015 County Auditors Institute. May 2015. Excel Workshop Tips. Working Smarter, Not Harder. by David Scott, SpeakGeek@att.net 2015 County Auditors Institute May 2015 Excel Workshop Tips Working Smarter, Not Harder by David Scott, SpeakGeek@att.net Note: All examples in this workshop and this tip sheet were done using Excel 2010

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

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

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

Q&As: Microsoft Excel 2013: Chapter 2

Q&As: Microsoft Excel 2013: Chapter 2 Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats

More information

Microsoft Word Basics Workshop

Microsoft Word Basics Workshop Microsoft Word Basics Workshop Microsoft Word is the most commonly used word processing software program in the world. Most likely, you use it on your computer regularly, yet you may have never really

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Tutorial 2: Using Excel in Data Analysis

Tutorial 2: Using Excel in Data Analysis Tutorial 2: Using Excel in Data Analysis This tutorial guide addresses several issues particularly relevant in the context of the level 1 Physics lab sessions at Durham: organising your work sheet neatly,

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

How To Understand The Laws Of Algebra

How To Understand The Laws Of Algebra Welcome to Math 19500 Video Lessons Prof. Department of Mathematics The City College of New York Fall 2013 An important feature of the following Beamer slide presentations is that you, the reader, move

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

Software Tools 7 ( ; / $ 7 ( ; :<6,:<*RPJHYLQJHQ 9HUZHUNLQJYDQ/D7H; :<6,:<*YRRUEHHOG. College 9 & 10 - LaTeX 1

Software Tools 7 ( ; / $ 7 ( ; :<6,:<*RPJHYLQJHQ 9HUZHUNLQJYDQ/D7H; :<6,:<*YRRUEHHOG. College 9 & 10 - LaTeX 1 / $ 7 ( ;,I\RXPHUHO\ZDQWWRSURGXFHDSDVVDEO\ JRRGGRFXPHQW³ VRPHWKLQJDFFHSWDEOHDQG EDVLFDOO\UHDGDEOHEXWQRWUHDOO\EHDXWLIXO³ D VLPSOHUV\VWHPZLOOXVXDOO\VXIILFH:LWK 7 ( ;WKHJRDOLVWRSURGXFHWKHILQHVW TXDOLW\ 'RQDOG(.QXWK

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Assignment we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections of

More information

Student guide to creating and sharing a webfolio

Student guide to creating and sharing a webfolio Student guide to creating and sharing a webfolio This guide includes: An introduction to webfolios Reasons why you might choose to develop a webfolio Instructions on how to create, edit and add content

More information

Creating a Poster Presentation using PowerPoint

Creating a Poster Presentation using PowerPoint Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Word processing software

Word processing software Unit 244 Word processing software UAN: Level: 2 Credit value: 4 GLH: 30 Assessment type: Relationship to NOS: Assessment requirements specified by a sector or regulatory body: Aim: R/502/4628 Portfolio

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Creating Basic Excel Formulas

Creating Basic Excel Formulas Creating Basic Excel Formulas Formulas are equations that perform calculations on values in your worksheet. Depending on how you build a formula in Excel will determine if the answer to your formula automatically

More information

Presentations Using L A TEX

Presentations Using L A TEX Presentations Using L A TEX The Beamer Class Amber M. Smith Department of Mathematics University of Utah GSAC Colloquium September 4, 2007 Disclaimer #1 I am NOT an expert in L A TEX I am NOT an expert

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

Quick Guide to the Cascade Server Content Management System (CMS)

Quick Guide to the Cascade Server Content Management System (CMS) Quick Guide to the Cascade Server Content Management System (CMS) Waubonsee Community College Cascade Server Content Administration January 2011 page 1 of 11 Table of Contents Requirements...3 Logging

More information

Using Parametric Equations in SolidWorks, Example 1

Using Parametric Equations in SolidWorks, Example 1 Using Parametric Equations in SolidWorks, Example 1 (Draft 4, 10/25/2006, SW 2006) Introduction In this example the goal is to place a solid roller on a solid wedge. Their relationship will be governed

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 Screen Elements Quick Access Toolbar The Ribbon Formula Bar Expand Formula Bar Button File Menu Vertical Scroll Worksheet Navigation Tabs Horizontal Scroll Bar Zoom

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

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2 Unix Shell Scripts Norman Matloff July 30, 2008 Contents 1 Introduction 1 2 Invoking Shell Scripts 2 2.1 Direct Interpretation....................................... 2 2.2 Indirect Interpretation......................................

More information

Vim, Emacs, and JUnit Testing. Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor

Vim, Emacs, and JUnit Testing. Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor Vim, Emacs, and JUnit Testing Audience: Students in CS 331 Written by: Kathleen Lockhart, CS Tutor Overview Vim and Emacs are the two code editors available within the Dijkstra environment. While both

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

Working with Tables: How to use tables in OpenOffice.org Writer

Working with Tables: How to use tables in OpenOffice.org Writer Working with Tables: How to use tables in OpenOffice.org Writer Title: Working with Tables: How to use tables in OpenOffice.org Writer Version: 1.0 First edition: January 2005 First English edition: January

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

3.2. Solving quadratic equations. Introduction. Prerequisites. Learning Outcomes. Learning Style

3.2. Solving quadratic equations. Introduction. Prerequisites. Learning Outcomes. Learning Style Solving quadratic equations 3.2 Introduction A quadratic equation is one which can be written in the form ax 2 + bx + c = 0 where a, b and c are numbers and x is the unknown whose value(s) we wish to find.

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

ODS for PRINT, REPORT and TABULATE

ODS for PRINT, REPORT and TABULATE Paper 3-26 ODS for PRINT, REPORT and TABULATE Lauren Haworth, Genentech, Inc., San Francisco ABSTRACT For most procedures in the SAS system, the only way to change the appearance of the output is to change

More information

Using the Equation Editor

Using the Equation Editor Inserting an Equation To insert an equation, do one of the following. Using the Equation Editor Word : Insert / Object / Microsoft Equation 3.0 WordPerfect : Insert / Equation If you are using Word on

More information

How to create and personalize a PDF portfolio

How to create and personalize a PDF portfolio How to create and personalize a PDF portfolio Creating and organizing a PDF portfolio is a simple process as simple as dragging and dropping files from one folder to another. To drag files into an empty

More information

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas

Excel Level Two. Introduction. Contents. Exploring Formulas. Entering Formulas Introduction Excel Level Two This workshop introduces you to formulas, functions, moving and copying data, using autofill, relative and absolute references, and formatting cells. Contents Introduction

More information

Content Management System User Guide

Content Management System User Guide CWD Clark Web Development Ltd Content Management System User Guide Version 1.0 1 Introduction... 3 What is a content management system?... 3 Browser requirements... 3 Logging in... 3 Page module... 6 List

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Microsoft PowerPoint 2007 PowerPoint is currently the most common software used for making visual aids for presentations. It has been redesigned for the 2007 release with a much more user-friendly and

More information

Working with sections in Word

Working with sections in Word Working with sections in Word Have you have ever wanted to create a Microsoft Word document with some pages numbered in Roman numerals and the rest in Arabic, or include a landscape page to accommodate

More information

Beginning L A TEX. Dan Parker and David Schwein. Spring 2015

Beginning L A TEX. Dan Parker and David Schwein. Spring 2015 Beginning L A TEX Dan Parker and David Schwein Spring 2015 Welcome to the first of the Brown Science Center s L A TEX workshops! By the end of it, you ll be able to write a basic L A TEX document containing

More information