Using ShareLaTeX to make Trees

Size: px
Start display at page:

Download "Using ShareLaTeX to make Trees"

Transcription

1 Using ShareLaeX to make rees Alan Munn September Introduction he ShareLaeX site is a cloud-based LaeX system. LaeX is a complete typesetting system which converts a plain text document with embedded commands (called a source file) into a fully formatted PF document. he ShareLaeX site can be used to create complete documents using LaeX, but in se notes I will simply explain how to use it to produce PF (or or format) images that can be easily placed into or documents such as MSWord or Powerpoint. he advantage of this is that it can be used to quickly draw nice trees to include in Word or Powerpoint or Inesign documents without having to actually learn LaeX fully or install it on your own computer. In this guide I will explain how to use ShareLaeX to make nice trees. 1.1 Using ShareLaeX ShareLaeX is a free cloud-based document sharing system, very similar to Google ocs: you can create documents, save m in cloud and share m with ors and sync m with your ropbox folder, if you use ropbox. You sign up with your address and n access site through any web browser, just like Google ocs. When you first open an ShareLaeX window, you should see something like following: ShareLaeX and rees 1

2 here are three main parts to this display: on lefthand side will be list of files/projects/- folders that you have created. he middle part is called source window, and this is where you enter actual code to generate your tree. he righthand part is preview window, and this shows output of compiled code. he first time you login to ShareLaeX it displays a sample source document, so your preview may look slightly different from image above. I have created a basic template document that you can use on ShareLaeX. Click on following link and it will lead you to document: LI 434 ree emplate. ow you are ready to input a simple tree into system. Copy code from template document and paste it into a new file source window, completely replacing any or text that might already be re. Listing 1: A simple document \documentclass[12pt,border=5pt,varwidth=true{standalone} \usepackage[1{fontenc} \usepackage[utf8{inputenc} \usepackage[{forest} \forestset{.style={for tree= {parent anchor=south, child anchor=north,align=center,inner sep=2pt}}} \begin{document} \begin{forest} [P [P [\\ [ [\\man [' [\\will [ [\\eat [P [\\a [ [\\burger \end{document} ow click on Recompile button, and you should see following: P P man ShareLaeX and rees 2 will eat a P burger

3 If all has gone well, you have successfully created your first tree. You can now download that tree as a PF file by clicking on ownload PF icon located beside Compile button and insert it as an image into your Word document. (See Appendix at end for how to do this.) ow that you ve created a simple tree, I ll explain a bit more how LaeX and forest notation works. 2 Some basic things to understand about LaeX For people who are used to using a word processor like Microsoft Word, idea that your source document is separate from your formatted document is a bit odd at first. he basic thing to understand about a LaeX document is following: Formatting is separated from content! Formatting should be associated with a semantics! In reality what does this mean? Well basically, if you want LaeX to format something a particular way, you should tell it what kind of thing it is (give it a semantics) and n associate formatting with kind rar than actual thing. Every LaeX document begins with a statement of what kind of document it is. his is \documentclass command. In example above, \documentclass has been set to standalone, which is a special class designed to make standalone images rar than full documents. his is best document class for purpose of making single images to be inserted into Word documents. he main font size of a document is set by document class itself, and is set by putting it in square brackets before {class-name} part of command. So first line in our sample document means Use standalone class with font size 12 pt. Although re are many basic things that LaeX can do, many useful things are implemented as separate packages. Each package is loaded separately in what is called preamble of document. Extra packages are loaded using \usepackage{} command. In sample document above, we are loading a few packages. he commands \usepackage[1{fontenc} and \usepackage[utf8{inputenc} load packages that are used to allow use of accented characters in your document, and you should generally always use m. ext we load forest packages. his is package that is needed to draw trees in LaeX. We n define a style within forest to make trees that look nice for linguistics. You should add all of se lines to every tree document you create. 3 ree notation he forest package allows you to enter a labelled bracketing of a tree and output a tree. he rules for forest bracketing are simple: (1) Bracketing Rules a. Every tree begins with \begin{forest} and ends with b. labels are suffixed to brackets; you can t have a space between a bracket and a label c. all brackets must be balanced, i.e., every left bracket needs a closing right bracket ShareLaeX and rees 3

4 Here, refore, is code for a simple tree, which produces output in (2b). (2) a. \begin{forest} [P [ [ [ [ [man b. P man One thing to notice in this tree is that re are branches between terminal nodes and ir labels. If you don t want this (and I generally don t, since labels are labels of words) you can include terminal as part of label by connecting two with a linebreak, which in LaeX is \\. ree (2) could n be coded as (3a) and appear as (3b). (3) a. \begin{forest} [P [\\ [ [\\man b. P man If you cut and paste this tree into your document (replacing everything between \begin{document}...\end{document}), and click on compile button, you should see following: If your display doesn t look exactly like one in picture because image in preview window is too small or too large, you can change size of preview to fit window eir by ShareLaeX and rees 4

5 height or by width. he buttons to do this are contextual and will appear if you move your cursor to top left corner of preview as shown below: 3.1 How to convert a tree to brackets It s helpful to understand how to convert a tree into a bracketed structure. he basic idea is that every node in tree gets a pair of brackets, and label for node is label for left bracket of pair. So you should draw your tree by hand and n starting from top, create brackets around beginning and ends of nodes. For sample tree shown above, we could do following. In this tree, I ve shown bracketing in red as well as tree. [ P P [ [ [ P P [ man [ will [ [ eat [ [ P P [ a [ [P [ burger [P [\\ [ [\\man [ [\\will [ [\\eat [P [\\a [ [\\burger 3.2 More forest commands he forest package can also make closed triangles for grouping nodes under a single node. For this you need to use add triangle command. Here is an example. he text you want to be under triangle is enclosed inside {...} as node label. his is n followed by a comma (which is important) and triangle command. (4) a. \begin{forest} [P [P [{ man with hat},triangle [ [\\will [ [{go to store tomorrow},triangle ShareLaeX and rees 5

6 b. P P man with hat will go to store tomorrow 4 Some useful latex commands In order to format text in a tree, it is necessary to be able to use a few LaeX commands. Almost all LaeX commands begin with a backslash (\) character. If a command takes an argument, argument is enclosed in braces ({}). Here are some basic commands that are useful for tree drawing. (5) Some useful LaeX commands a. subscripts, e.g. t i use t$_i$ b. superscripts e.g. t i use t$ˆi$ c. to start a new line in a label, use \\ d. to keep words toger as a group, enclose m in braces {} e. to display a curly bracket, precede it with a \(e.g. to produce {some text} you need to type \{some text\}) f. to display a square bracket, enclose it in $$ (e.g. to produce [some text you need to type $[$some text$$) (o do this a lot, see Section 6 below for a better solution.) (6) Formatting commands a. to make font sans serif put \sffamily at beginning of document b. to make something italics enclose it in \textit{} c. to make something bold enclose it in \textbf{} d. to make something small caps enclose it in \textsc{} e. to change color to red precede it with \color{red} ShareLaeX and rees 6

7 5 Some examples Here are some examples of more trees. For large trees it s helpful to write out bracketed structure on separate lines with indenting to show partial structure. his will allow you to find mismatched brackets more easily (and you will mismatch brackets ) (7) a. \begin{forest} [P [P [\\ [ [\\man [ [\\might [ [\\expect [P [P [{ woman},triangle [ [\\to [ [ [\\leave [P [\\{\o} [ [\\town [PP [P\\after [P [\\ [ [\\party b. \begin{forest} [P [AdvP [Adv\\usually [P [P [\\{\O} [\\John [ [\\\emph{prese} [ [ [\\goes [PP [P\\to [P [\\ [\\park [PP [P\\on [P [\\{\O} [\\uesdays ShareLaeX and rees 7

8 c. \begin{forest} [P [P [\\Hanako [\\ga [ [ [CP [P [P [\\Yoshi [\\ga [ [ [P [\\Yuki [\\-o [\\mi [\\ta [C\\to [\\it [\\ta (8) a. P P might man expect P P woman to PP leave ø P town P after P party ShareLaeX and rees 8

9 b. P AdvP P Adv usually P Ø John PRESE PP goes PP P on P P to P Ø uesdays park c. P P Hanako ga ta CP it P C to P Yoshi ga Yuki P -o mi ta 6 Really advanced stuff LaeX can do all sorts of really amazing things, and is especially good for representing mamatics. We can use this facility to make even fancier trees, and also make shorthands for m. For example, as noted above, using square brackets in LaeX is complicated since square bracket is used for or things within LaeX itself. However, we can create a command which automatically puts ShareLaeX and rees 9

10 something in square brackets (useful for annotating nodes with features.) It requires amsmath package to be added to included packages. (9) Command to enclose something in square brackets a. Command definition: \newcommand{\sb}[1{$[\text{#1}$} b. Command usage: \SB{some text} c. Output: [some text If you put this command in first line of your LaeX source, you can n add features to trees using \SB command, as in following example: (10) a. \newcommand{\sb}[1{$[\text{#1}$} \begin{forest} [P [P\SB{om} [\\ [ [\\man [ [\\will\\\sb{case:om} [ [\\left b. P P[om man will [Case:om left If we want to put a bunch of features in a list, we can use array command, and automatically expandable square brackets using \left[ and \right commands. Here is an example: (11) Feature bundle using an array a. $\left[\begin{array}{c} \text{ense}\\ \text{om}\\ \text{3psg}\\ \end{array}\right$ b. Output ense om 3PSg ShareLaeX and rees 10

11 7 More information hese are just some examples of what can be done with LaeX. hey are not intended to be a complete introduction to all of its power. here are plenty of good introductions to be found on web. For a very minimal introduction aimed at Mac users by me, see A Beginner s Guide to LaeX (on Mac). Anor more extensive guide also for linguistics is by Adam Liter and can be found here: LaeX workshop (for linguists). More general online books by icola albot can be found here: LaeX Books from ickinmaw Books. A very good printed book such as Marc van ongen s LaeX and Friends (Springer, 2012) might also be useful. Appendix How to insert PF images into MSWord documents Once you ve created your tree, you can easily insert it into a Microsoft Word document. On a Mac you can simply drag PF file onto your document or choose Insert Picture from File. On a PC you can choose Insert Object and n select Adobe Acrobat ocument and choose file. ShareLaeX and rees 11

Meeting One. Aaron Ecay. February 2, 2011

Meeting One. Aaron Ecay. February 2, 2011 Meeting One Aaron Ecay February 2, 2011 1 Introduction to a L A TEX file Welcome to LaTeX. Let s start learning how to use the software by going over this document piece by piece. We ll read the output

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Introduction to L A TEX for MCS-236

Introduction to L A TEX for MCS-236 Introduction to L A TEX for MCS-236 Max Hailperin, based on a version by Tom LoFaro September 14, 2011 1 Why L A TEX? L A TEX is a very strange document formatting system. Actually, it is a combination

More information

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

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

More information

Guide to using L A TEX

Guide to using L A TEX Guide to using L A TEX Andrew Stevens, UC Berkeley 1 What is L A TEX, and why use it? L A TEX (pronounced LAH-tekh or LAY-tekh) is a language and document preparation system for typesetting. L A TEX is

More information

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number.

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number. Using L A TEX About these notes These notes give some starting tips on using L A TEX to typeset mathematical documents. To learn the system at all fully you ll need a proper L A TEX manual, but you can

More information

Chapter 5: Character and Paragraph Formatting in MS Word

Chapter 5: Character and Paragraph Formatting in MS Word Chapter 5: Character and Paragraph Formatting in MS Word 5.0 Learning Objectives At the end of this unit, you should be able to: 1. Perform character formatting 2. Change font size and color. 3. Paragraph

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Outline. Installing LaTeX. Opening TeXShop. Intro to LaTeX. Intro to LaTeX interface Working with text Tabbing and tables Figures Math and equations

Outline. Installing LaTeX. Opening TeXShop. Intro to LaTeX. Intro to LaTeX interface Working with text Tabbing and tables Figures Math and equations Outline UCLA Department of Statistics Statistical Consulting Center interface Working with text Tabbing and tables Figures Math and equations April 23, 2009 Installation Installing LaTeX Opening TeXShop

More information

Lesson 1 Introduction to PowerPoint

Lesson 1 Introduction to PowerPoint Lesson 1 Introduction to PowerPoint What It Is-- Presentation tool that allows you to view slides Can include text, graphics, animation, sound, video, charts, and transitions Can create handouts, speaker

More information

Math 235: Introduction to LaTeX

Math 235: Introduction to LaTeX Math 235: Introduction to LaTeX The LaTeX word processing system was built to do mathematical typesetting. It is different than word processors; in LaTeX you type in text and typesetting commands, then

More information

Introduction to MCS 220 and L A TEX

Introduction to MCS 220 and L A TEX Introduction to MCS 220 and L A TEX Tom LoFaro August 28, 2009 1 Introduction to MCS 220 MCS 220, Introduction to Analysis, carries a WRITD (writing in the discipline) designation. What this means to you

More information

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass.

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass. TUTORIAL 3: MY FIRST L A TEX DOCUMENT CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to produce a very basic L A TEX document. This tutorial will introduce the

More information

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps:

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps: Simple Math Adam Dishaw 2011 September 21 Suppose you want to include some math in your documents. Just follow these basics steps: 1. Create a new TEX document with the basic requirements (the documentclass

More information

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

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

More information

An Interactive Introduction to L A TEX

An Interactive Introduction to L A TEX An Interactive Introduction to L A TEX Part 1: The Basics Dr John D. Lees-Miller December 2, 2017 Why L A TEX? It makes beautiful documents Especially mathematics It was created by scientists, for scientists

More information

Math 395 Homework #1 Due Wednesday, April 12

Math 395 Homework #1 Due Wednesday, April 12 Math 395 Homework #1 Due Wednesday, April 12 LaTex is a typesetting system that is widely used by mathematicians. It has the ability to typeset just about any mathematical notation, as well as complex

More information

A Document Created By Lisa Diner Table of Contents Western Quebec School Board October, 2007

A Document Created By Lisa Diner Table of Contents Western Quebec School Board October, 2007 Table of Contents A Document Created By Lisa Diner Western Quebec School Board October, 2007 Table of Contents Some Basics... 3 Login Instructions... 4 To change your password... 6 Options As You Login...

More information

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS By Carolyn H. Brown This document is created with PowerPoint 2013/15 which includes a number of differences from earlier versions of PowerPoint. GETTING

More information

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX An Interactive Introduction to L A TEX Part 1: The Basics John Lees-Miller writel A TEX Why L A TEX? I It makes beautiful documents I Especially mathematics I It was created by scientists, for scientists

More information

Outlook Web Access. In the next step, enter your address and password to gain access to your Outlook Web Access account.

Outlook Web Access. In the next step, enter your  address and password to gain access to your Outlook Web Access account. Outlook Web Access To access your mail, open Internet Explorer and type in the address http://www.scs.sk.ca/exchange as seen below. (Other browsers will work but there is some loss of functionality) In

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Helen Scharber 1 Introduction In this workshop, we ll be looking at how to create a basic document in L A TEXthat includes some math. There are a few important things to mention

More information

Getting ready for L A TEX. Alexis Dimitriadis. Version: March 28, 2013

Getting ready for L A TEX. Alexis Dimitriadis. Version: March 28, 2013 Getting ready for L A TEX Alexis Dimitriadis Version: March 28, 2013 LaTeX is a great system, but it takes some work to learn. Unfortunately, it also takes some work to set up the necessary software. This

More information

Introduction to Scientific Typesetting Lesson 11: Foreign Languages, Columns, and Section Titles

Introduction to Scientific Typesetting Lesson 11: Foreign Languages, Columns, and Section Titles Introduction to Scientific Typesetting Lesson 11: Foreign Languages,, and Ryan Higginbottom January 19, 2012 1 Ð The Package 2 Without Ð What s the Problem? With Ð Using Another Language Typing in Spanish

More information

Basic Concepts 1. For this workshop, select Template

Basic Concepts 1. For this workshop, select Template Basic Concepts 1 When you create a new presentation, you re prompted to choose between: Autocontent wizard Prompts you through a series of questions about the context and content of your presentation not

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2007 Email User s Guide Revision 1.1 3/9/2009 This document covers how to use Microsoft Outlook 2007 for accessing your email with the NCMail Exchange email system. The syntax

More information

Developing successful posters using Microsoft PowerPoint

Developing successful posters using Microsoft PowerPoint Developing successful posters using Microsoft PowerPoint PRESENTED BY ACADEMIC TECHNOLOGY SERVICES University of San Diego Goals of a successful poster A poster is a visual presentation of your research,

More information

[Type text] Windows Quick Start Guide Version 3.5

[Type text] Windows Quick Start Guide Version 3.5 [Type text] Windows Quick Start Guide Version 3.5 PRO-STUDY QUICK START GUIDE Contents The Pro-Study Toolbar... 2 Getting Started with a Project... 3 Selecting Different Projects... 4 Categories... 4 Collecting

More information

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options OneNote Training When you open OneNote for the first time there will be notebooks already started and you can see them on the left hand side. There is an introduction section that you can go through, if

More information

Create and edit word processing. Pages.

Create and edit word processing. Pages. Create and edit word processing documents with Pages. In this chapter, we begin to get work done on the ipad by using Pages to create and format documents. Creating a New Document Styling and Formatting

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2003 Email User s Guide Revision 1.0 11/10/2007 This document covers how to use Microsoft Outlook 2003 for accessing your email with the NCMail Exchange email system. The syntax

More information

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100 Introduction to Multimedia MMP100 Spring 2016 profehagan@gmail.com thiserichagan.com/mmp100 Troubleshooting Check your tags! Do you have a start AND end tags? Does everything match? Check your syntax!

More information

Square cells: an array cooking lesson

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

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 1 Set up your project This lesson aims to teach you how to: Import images Set up the stage Place and size images Draw shapes Make

More information

NETZONE CMS User Guide Copyright Tomahawk

NETZONE CMS User Guide Copyright Tomahawk NETZONE CMS User Guide Copyright 2015. Tomahawk 1 Phone: + 64 9 522 2333 Email: getintouch@tomahawk.co.nz Tomahawk 2015 www.tomahawk.co.nz 2 NETZONE CMS USER GUIDE WHAT YOU LL FIND INSIDE LOGGING IN 4

More information

CREATING CONTENT WITH MICROSOFT POWERPOINT

CREATING CONTENT WITH MICROSOFT POWERPOINT CREATING CONTENT WITH MICROSOFT POWERPOINT Simple Tips And Tricks Presented by TABLE OF CONTENTS Introduction... 2 Design Tips... 3 Advanced Tips... 4 ShortCut Keys for Microsoft PowerPoint... 5 How-Tos...

More information

Script for Interview about LATEX and Friends

Script for Interview about LATEX and Friends Script for Interview about LATEX and Friends M. R. C. van Dongen July 13, 2012 Contents 1 Introduction 2 2 Typography 3 2.1 Typeface Selection................................. 3 2.2 Kerning.......................................

More information

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type

What is T E X? T E X and L A T E X Document preparation tools. Setting and casting type. What Knuth was setting. Setting and casting type T E X and L A T E X Document preparation tools This lecture will introduce software necessary to produce documents using L A T E X in the School of Computer Science. It will also show the basics of producing

More information

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013 Copyright This ebook is Copyright 2013 Teresa Miller (the Author ). All Rights Reserved. Published in the United States of America. The legal notices, disclosures, and disclaimers in the front and back

More information

Sample A2J Guided Interview & HotDocs Template Exercise

Sample A2J Guided Interview & HotDocs Template Exercise Sample A2J Guided Interview & HotDocs Template Exercise HotDocs Template We are going to create this template in HotDocs. You can find the Word document to start with here. Figure 1: Form to automate Converting

More information

Let s Make a Front Panel using FrontCAD

Let s Make a Front Panel using FrontCAD Let s Make a Front Panel using FrontCAD By Jim Patchell FrontCad is meant to be a simple, easy to use CAD program for creating front panel designs and artwork. It is a free, open source program, with the

More information

There are two basic designs of the new logo. They are professionally developed graphic files and the use of them must be strictly controlled.

There are two basic designs of the new logo. They are professionally developed graphic files and the use of them must be strictly controlled. LOGO There are two basic designs of the new logo. They are professionally developed graphic files and the use of them must be strictly controlled. If a Chapter wishes to develop promotional materials or

More information

Chapter One Modifying Your Fonts

Chapter One Modifying Your Fonts Chapter One Modifying Your Fonts Steps to Modifying Fonts Opening Fonts Changing Character Weight About Font Piracy Creating Oblique Fonts Creating Fractions Creating Ligatures Creating Condensed Characters

More information

Microsoft Excel 2007

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

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

8.25 x Standard Perfect Binding

8.25 x Standard Perfect Binding 8.25 x 10.75 Standard Perfect Binding Instructions for Adobe Photoshop Learn More: www.adobe.com/photoshop 8.25 x 10.75 Standard Perfect Binding Page Count: 20 pages min, 384 pages max, multiple of 2 PDF

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

More information

Science One CS : Getting Started

Science One CS : Getting Started Science One CS 2018-2019: Getting Started Note: if you are having trouble with any of the steps here, do not panic! Ask on Piazza! We will resolve them this Friday when we meet from 10am-noon. You can

More information

HAPPY HOLIDAYS PHOTO BORDER

HAPPY HOLIDAYS PHOTO BORDER HAPPY HOLIDAYS PHOTO BORDER In this Photoshop tutorial, we ll learn how to create a simple and fun Happy Holidays winter photo border! Photoshop ships with some great snowflake shapes that we can use in

More information

Introduction to the MODx Manager

Introduction to the MODx Manager Introduction to the MODx Manager To login to your site's Manager: Go to your school s website, then add /manager/ ex. http://alamosa.k12.co.us/school/manager/ Enter your username and password, then click

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge, 11/26/2018 First think about your audience and purpose, then design your poster! Here are instructions for setting up your poster using

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

5. Canvas overview. Cricut Design Space User Manual. Design Panel

5. Canvas overview. Cricut Design Space User Manual. Design Panel 5. Canvas overview The Canvas is where you ll design your projects. On the Canvas, you can add and edit projects, images, and text. You can also set a project template, which doesn t cut but helps you

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to LATEX Mathematics 23a, Fall 2012 By: Isabel Vogt, Will Rafey, and Neil Gat Last Updated: 13 September, 2012 1 Introduction The simplest way to learn TeX is by example. Copy the heading

More information

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay.

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay. Welcome Back! Now that we ve covered the basics on how to use templates and how to customise them, it s time to learn some more advanced techniques that will help you create outstanding ebay listings!

More information

Template Tidbits. Q How do I get the places I can enter copy to show up? (Highlight Fields Bar)

Template Tidbits. Q How do I get the places I can enter copy to show up? (Highlight Fields Bar) Template Tidbits This document is not intended to replace the individual guidance documents that accompany each template. Instead, it is a general document that addresses questions frequently asked by

More information

Pedigree Power Pack Instructions Prepared May 21, 2003

Pedigree Power Pack Instructions Prepared May 21, 2003 Pedigree Power Pack Instructions Prepared May 21, 2003-1 - I. Installing the Pedigree Power Pack: You can download the Pedigree Power Pack from http://www.mbfs.com/trials.asp Start the download and save

More information

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg

How to Use Google. Sign in to your Chromebook. Let s get started: The sign-in screen. https://www.youtube.com/watch?v=ncnswv70qgg How to Use Google Sign in to your Chromebook https://www.youtube.com/watch?v=ncnswv70qgg Use a Google Account to sign in to your Chromebook. A Google Account lets you access all of Google s web services

More information

Introduction to Microsoft Office 2016: Word

Introduction to Microsoft Office 2016: Word Introduction to Microsoft Office 2016: Word Last Updated: September 2018 Cost: $2.00 Microsoft Word is a word processing software. You can use it to type letters, reports, and other documents. This class

More information

Formatting with LaTeX

Formatting with LaTeX Formatting with LaTeX Zuyuan Wang School of Mechanical Engineering Purdue University wang1707@purdue.edu June 23, 2016 Seminar @ SURF 2016 About the SURF GAs Formatting with LaTeX (02/35) 06/23/2016 Purdue

More information

How to use CSS text styles

How to use CSS text styles How to use CSS text styles Web typography is an important creative tool web designers use to express style and emotion that enhances the goal and overall message of a website. Image-based text gives you

More information

Imagery International website manual

Imagery International website manual Imagery International website manual Prepared for: Imagery International Prepared by: Jenn de la Fuente Rosebud Designs http://www.jrosebud.com/designs designs@jrosebud.com 916.538.2133 A brief introduction

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

Word: Print Address Labels Using Mail Merge

Word: Print Address Labels Using Mail Merge Word: Print Address Labels Using Mail Merge No Typing! The Quick and Easy Way to Print Sheets of Address Labels Here at PC Knowledge for Seniors we re often asked how to print sticky address labels in

More information

Form into function. Getting prepared. Tutorial. Paul Jasper

Form into function. Getting prepared. Tutorial. Paul Jasper Tutorial Paul Jasper TABLE OF CONTENTS 1 Getting prepared 2 Adding a button to the form design 2 Making the button add tasks 3 Sending the XML data 4 Tidying up 5 Next time In the first episode, I showed

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

FolderView DMXzone.com FolderView Manual

FolderView DMXzone.com FolderView Manual FolderView Manual Copyright 2007 All Rights Reserved To get more go to Page 1 of 32 Index FolderView Manual... 1 Index... 2 About FolderView... 3 Features in Detail... 4 Before you begin... 9 Installing

More information

Intermediate Word by Alan Weaver

Intermediate Word by Alan Weaver Intermediate Word by Alan Weaver Outline/Table of Contents Introduction... 1 Set default font... 2 Create Random Text... 2 Download a special font... 2 Create/Modify a Style... 3 Widows/Orphans... 3 Table

More information

Chapter 1. Getting Started

Chapter 1. Getting Started Chapter 1. Hey, Logy, whatcha doing? What s it look like I m doing. I m cleaning the windows so we can get started on our new adventure. Can t you leave the housekeeping until later. We ve got Logo work

More information

Introduction to Microsoft Word 2010

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

More information

Click on the words Click to add subtitle and begin typing out your subtitle. You may also choose to add your name here rather than a subtitle.

Click on the words Click to add subtitle and begin typing out your subtitle. You may also choose to add your name here rather than a subtitle. PowerPoint Step-by-Step Sections: Getting Started Creating a Title Page Creating a Picture Page Creating a Bulleted Page Creating a Mixed Media Page Other General Notes Getting Started Open PowerPoint:

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

- Is the process of combining texts and graphics layout to produce publications e.g. cards,

- Is the process of combining texts and graphics layout to produce publications e.g. cards, DESKTOP PUBLISHING (DTP) - Is the process of combining texts and graphics layout to produce publications e.g. cards, newspapers, catalogues etc. - A special DTP software is always used. PURPOSE OF DTP

More information

The Institute for the Future of the Book presents. Sophie. Help. 24 June 2008 Sophie 1.0.3; build 31

The Institute for the Future of the Book presents. Sophie. Help. 24 June 2008 Sophie 1.0.3; build 31 The Institute for the Future of the Book presents Sophie Help 1 24 June 2008 Sophie 1.0.3; build 31 1. Contents Working with Sophie 4 Sophie s interface 4 Halos and HUDs 4 Flaps, tabs, and palettes 9 The

More information

Shorthand for values: variables

Shorthand for values: variables Chapter 2 Shorthand for values: variables 2.1 Defining a variable You ve typed a lot of expressions into the computer involving pictures, but every time you need a different picture, you ve needed to find

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Introduction to Microsoft Publisher Day One Agenda: Introduction Templates Layout Inserting and Formatting Text Inserting and Formatting Pictures Practice, Questions Day Two Agenda: Review Day One Tables

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Absolute L A TEX Beginner

Absolute L A TEX Beginner Latest version of this document at http://liantze.googlepages.com/latextypesetting#beginner Absolute L A TEX Beginner Lim Lian Tze liantze@gmail.com Abstract Most people use the ubiquitous Word TM for

More information

[Type text] Quick Start Guide Version 3

[Type text] Quick Start Guide Version 3 [Type text] Quick Start Guide Version 3 PRO-STUDY QUICK START GUIDE Contents The Pro-Study Toolbar... 2 Getting Started with a Project... 3 Selecting Different Projects... 4 Categories... 4 Collecting

More information

Intro to LATEX I. Aaron Erlich POLS/CSSS 510, Why LATEX? Programming Document Structure Floats Tables Lists Math

Intro to LATEX I. Aaron Erlich POLS/CSSS 510, Why LATEX? Programming Document Structure Floats Tables Lists Math Intro to LATEX I 1 1 POLS/CSSS 510, 2012 Intro to LATEX I 1 / 32 Outline 1 Why L A TEX? 2 Programming 3 Document Structure 4 Floats 5 Tables 6 Lists 7 Math Intro to LATEX I 2 / 32 The Complaint This sucks

More information

InDesign Tools Overview

InDesign Tools Overview InDesign Tools Overview REFERENCE If your palettes aren t visible you can activate them by selecting: Window > Tools Transform Color Tool Box A Use the selection tool to select, move, and resize objects.

More information

infogr.am -- getting started

infogr.am -- getting started Infogr.am Basics What is infogr.am? It s a great resource for when you need to visualize data - make simple infographics or make individual charts (bar graphs, pie charts, tables, pictoral charts, etc.).

More information

Student Guide Updated February 22, 2018

Student Guide Updated February 22, 2018 Student Guide Updated February 22, 2018 1 Table of Contents Getting Started with Moodle... 3 Browser Requirements... 3 How do I log in to Moodle?... 3 How do I retrieve my Moodle password?... 4 Where do

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

L A TEX for psychological researchers

L A TEX for psychological researchers Kahoot! L A TEX for psychological researchers Lecture 1: Introducton Sacha Epskamp University of Amsterdam Department of Psychological Methods 27-01-2015 Contact Details Workshop website: http://sachaepskamp.com/latex-workshop

More information

Introduction. Creating an Account. Prezi.com Getting Started

Introduction. Creating an Account. Prezi.com Getting Started Introduction offers a way to create presentations that engage the audience in an interesting and non-traditional way. It is a virtual whiteboard that transforms presentations from monologues into conversation:

More information

Homework # (Latex Handout) by Laura Parkinson

Homework # (Latex Handout) by Laura Parkinson 1 Latex Homework # (Latex Handout) by Laura Parkinson Latex helps you make your homework pretty. It makes us happy when you use it. The best way to learn is by example, so here are some examples of pretty

More information

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved.

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved. 4D Write User Reference Mac OS and Windows Versions 4D Write 1999-2002 4D SA/4D, Inc. All Rights reserved. 4D Write User Reference Version 6.8 for Mac OS and Windows Copyright 1999 2002 4D SA/4D, Inc.

More information

Section 3 Formatting

Section 3 Formatting Section 3 Formatting ECDL 5.0 Section 3 Formatting By the end of this Section you should be able to: Apply Formatting, Text Effects and Bullets Use Undo and Redo Change Alignment and Spacing Use Cut, Copy

More information

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More.

Word Introduction SBCUSD IT Training Program. Word Introduction. Page Setup, Paragraph Attributes, Printing and More. SBCUSD IT Training Program Word Introduction Page Setup, Paragraph Attributes, Printing and More Revised 2/15/2018 SBCUSD IT Training Page 1 CONTENTS Cursor Movement... 4 Selecting Text... 5 Font/Typeset

More information

edoc Builder Templates SPECIFIC CARD TUTORIAL

edoc Builder Templates SPECIFIC CARD TUTORIAL edoc Builder Templates SPECIFIC CARD TUTORIAL 1. The files you need are located: J:\Customers Files\D\DocketManager\Templates\MOSH_Tutorial 2. Open the Corel File. If you need to install the fonts on your

More information

Using Functions in Alice

Using Functions in Alice Using Functions in Alice Step 1: Understanding Functions 1. Download the starting world that goes along with this tutorial. We will be using functions. A function in Alice is basically a question about

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

The original image. Let s get started! The final result.

The original image. Let s get started! The final result. Vertical Photo Panels Effect In this Photoshop tutorial, we ll learn how to create the illusion that a single photo is being displayed as a series of vertical panels. It may look complicated, but as we

More information

TABLE OF CONTENTS PART I: BASIC MICROSOFT WORD TOOLS... 1 PAGE BREAKS... 1 SECTION BREAKS... 3 STYLES... 6 TABLE OF CONTENTS... 8

TABLE OF CONTENTS PART I: BASIC MICROSOFT WORD TOOLS... 1 PAGE BREAKS... 1 SECTION BREAKS... 3 STYLES... 6 TABLE OF CONTENTS... 8 TABLE OF CONTENTS PART I: BASIC MICROSOFT WORD TOOLS... 1 PAGE BREAKS... 1 SECTION BREAKS... 3 STYLES... 6 TABLE OF CONTENTS... 8 LIST OF TABLES / LIST OF FIGURES... 11 PART II: FORMATTING REQUIREMENTS:

More information

Table of Contents- How to Quickly Format CANS in Word 2010, PC

Table of Contents- How to Quickly Format CANS in Word 2010, PC CAN Formatting Tips Table of Contents- How to Quickly Format CANS in Word 2010, PC Table of Contents... 1 1. An Introduction to Styles... 1 Default Styles in Word 2010... 1 Editing Styles in Word 2010...

More information