How to edit custom layouts in Blurb *

Size: px
Start display at page:

Download "How to edit custom layouts in Blurb *"

Transcription

1 OpenStax-CNX module: m How to edit custom layouts in Blurb * David Waldo This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Blurb BookSmart software allows you to create custom books and make your own layouts. However, there are limitations to the layout editor. This module shows you how to dig into the XML code that BookSmart uses and x some of these limitations. 1 How to edit custom layouts in Blurb This module is written for Blurb BookSmart Version This version allows editing of Layouts but still has some limitations on its use. This module describes how to edit the XML le that contains custom Layouts for BookSmart. I take no responsibility if BookSmart quits working or if you lose data. I am supplying this information so that you will know what I did. Use this information at your own risk. 1.1 Reasons for editing the custom layouts Blurb has added the ability to edit custom layouts in its BookSmart software. However, there are a couple of things that it does not allow you to do that would make editing layouts much nicer. The rst drawback to the layout editor is it does not allow you to make a layout that works for both right and left pages. The second drawback to the layout editor is it does not allow you to have text boxes that ow text from one box to the next when you paste into them. As an example, after making a new Small Square blank book in BookSmart I will add several pages and then look at one of the built in Text Layouts. Here are two pages in the book, a left and a right page. Notice that the margin in the center is bigger than the ones on the left and right even though the same page layout is used. Also, the text ows from one text box to the other when text is pasted into the left box. * Version 1.2: Aug 9, :47 pm

2 OpenStax-CNX module: m Figure 1 Now let's make our own layout using the same built in layout. First I will make a blank right page using the Text Layout above.

3 OpenStax-CNX module: m Figure 2 Now select Edit Layout. The layout editor opens with this view:

4 OpenStax-CNX module: m Figure 3 Notice that the text boxes are locked. The reason is the text can ow from one to the other. If we want to edit them they must rst be unlocked.

5 OpenStax-CNX module: m Figure 4 Now hit the Apply & Save to My Layouts button and the layout shows up in the new custom layouts. I will name it CustomLayout0. Now after making the same two pages with the new layout I see this.

6 OpenStax-CNX module: m Figure 5 Notice that the text does not ow to the second text box and the boxes do not change position for the right page. Looking at the middle of the book you can see that the text box for the right page will be too close to the gutter. The header and footer move but the other boxes do not. These "problems" can be xed by editing the document where the custom layouts are stored. 1.2 XML Editor To edit the custom layouts you can either use a simple text editor or an XML editor. I use XML Notepad from Microsoft. Pick an editor that works good for you. You should be familiar with XML or other markup languages like HTML. 1.3 Custom Layouts in BookSmart When you make a custom layout in BookSmart the layout information gets added to a le with the name CustomLayouts.layout. This can be found in the library location directory in the subdirectory BookSmartData\CustomLayouts. You may have to search around for this le on your computer. Opening this le in XML Notepad shows the following. 1

7 OpenStax-CNX module: m Figure 6 The dierent TrimSize items are the dierent book sizes. Since I made a book of the type Small Square above I will look for the layout that I made. It has the TrimSize:Square. Figure 7 Notice that there are some pagelayouts in this TrimSize. Opening up the pagelayouts shows the layout I made above.

8 OpenStax-CNX module: m Figure 8 Let's look at the items in this layout. Notice the title is CustomLayout0. This is the name I gave the layout when I created it. The dimensions of the page (and other dimensions) are given in the units of points. So when you edit in the layout editor, the units of points should be used. Since the page is square, notice that the width and height of the page are the same, 495 points. BookSmart measures from the upper left corner so that the point (x,y)=(0,0) is the upper left corner of the page. Also, the true on the hasheader and hasfooter mean this page will have a header and a footer. The id is probably generated randomly, but each pagelayout needs to have a unique id. Now let's look at the containers.

9 OpenStax-CNX module: m Figure 9 Remember that the page layout had three containers, two text containers and one image container. Notice that the left most text container starts at the x position 45 points. The other two containers both line up at x=237 points. 1.4 Editing Custom Layouts When you start BookSmart it loads the custom layouts for the CustomLayouts.layout le. So, if you edit the le at the same time BookSmart is open you can overwrite your edits. To make and edit custom layouts you should 1. Open BookSmart and the book you want to edit 2. Make a Left side page and select a built in layout 3. Edit the layout and save the layout in your custom layouts 4. Quit BookSmart 5. Open XML Notepad and the le CustomLayouts.layout 6. Edit the layouts and save the le 7. Quit XML Notepad 8. Open BookSmart and the book you want to edit 9. If you edited your layout correctly the changes should be in the custom layouts

10 OpenStax-CNX module: m Correcting layout for Left/Right pages The two "problems" I will describe how to correct are how to make a layout work for both the left and right pages and how to get the text boxes to ow the text from one to another. In order for this to work correctly you must make a layout for the LEFT PAGE rst. Make everything line up the way you want the left page to look like and save the layout. Let's change the layout we made earlier so that it works for both the left and right pages. I made the layout using the left page. If you examine the built in layouts in BookSmart for the layout we are using you will see that for a right page the left container has x=78 points. The left container for the left page has the same container at x=45 points. Subtracting these gives 78-45=33 points. This is the amount that the containers are translated for the right page relative to the left. This will be dierent for the dierent book sizes so you will need to gure out this number for each book size. Each container in the custom layout has a property called xtranslate. This tells BookSmart how far to move containers for the right side page. This number can be negative if you wish. For this example we will just make them 33 points. In XML Notepad the edits look like this. Figure 10

11 OpenStax-CNX module: m I changed the xtranslate values to 33. If I save these changes, open the book in BookSmart and apply these changes to the pages, they will look like the following. Figure 11 In order to apply the changes to the pages I have to click on another layout and then on the layout we edited. If you just click on the same layout BookSmart thinks it doesn't have to apply the layout since it is already applied to the page. See now that the containers for the right page have now moved over 33 points so that the center looks right. 1.6 Correcting Text Flow Now let's x the automatic text owing from one container to the next. There are two text containers in our layout and we will make the text ow from the left container to the right container. The text containers have two properties that we will need to change, owsorder and contenttype. I must say at this point that I do not know exactly what the values are for these properties. However, I do know how to set them to get them to work for me. Here is what I do. The owsorder property is a numbering of the containers to determine the order of the text ow. They are set to -1 now so we will number them starting from 0. The left box will be 0 and the right box will be 1. Right now the contenttype property for the text boxes is 0. I have noticed that the contenttype property for the text boxes that ow can be 1. So, I change the value of the contenttype to 1. I am not sure what this means but it seems to work. Here is what the changes look like.

12 OpenStax-CNX module: m Figure 12 After applying these changes to the pages the book looks like this.

13 OpenStax-CNX module: m Figure Mirror Pages When making pages that are mirror images there are a few things to keep in mind. First, text still needs to ow from left to right so be careful not to make it exactly mirror image. Let's make a mirror image of a page with only one text box and one image. Suppose we want to make a version of this built in layout but with the image on the outside rather than the inside.

14 OpenStax-CNX module: m Figure 14 Edit the layout for the LEFT page and swap the location of the boxes. Save the layout.

15 OpenStax-CNX module: m Figure 15 Open the layout in XML Notepad. Here is the layout.

16 OpenStax-CNX module: m Figure 16 When you edit the layout, look at the size of the header since we will want to line things up with the header/footer. The x location and size for the header is width=372, x=45 points. When it is moved by 33 points for the right page it will have x=78. The right side of the header will be at =450. Lets gure out the xtranslate for the ImageContainer. The width is 244. After it is translated we want the right side to be at 450. Therefore we want the left side to be at =206. Right now it is at 45. So we need it to translate =161 points. Set the xtranslate to 161. Lets gure out the xtranslate for the TextContainer. The left side is at x=301. After it is translated we want the left side to be at 78. So we need it to translate =-223 points. Set the xtranslate to -223.

17 OpenStax-CNX module: m Figure 17 After applying the changes to the pages we have the layout we want.

18 OpenStax-CNX module: m Figure 18

Measurement and Geometry: Area and Volume of Geometric Figures and Objects *

Measurement and Geometry: Area and Volume of Geometric Figures and Objects * OpenStax-CNX module: m35023 1 Measurement and Geometry: and Volume of Geometric Figures and Objects * Wade Ellis Denny Burzynski This work is produced by OpenStax-CNX and licensed under the Creative Commons

More information

How To Remove Header From First Two Pages In Word 2007

How To Remove Header From First Two Pages In Word 2007 How To Remove Header From First Two Pages In Word 2007 When I first wrote this blog post, Word 2003 was still the predominant version of the program, more commonly used than Word 2007. This will close

More information

How to Make a Book Interior File

How to Make a Book Interior File How to Make a Book Interior File These instructions are for paperbacks or ebooks that are supposed to be a duplicate of paperback copies. (Note: This is not for getting a document ready for Kindle or for

More information

Double Stub Matching *

Double Stub Matching * OpenStax-CNX module: m11396 1 Double Stub Matching * Bill Wilson This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 1.0 There is one last technique we can

More information

MathML Editor: The Basics *

MathML Editor: The Basics * OpenStax-CNX module: m26312 1 MathML Editor: The Basics * Natalie Weber This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract This module provides

More information

Java OOP: Java Documentation

Java OOP: Java Documentation OpenStax-CNX module: m45117 1 Java OOP: Java Documentation R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn to use

More information

Using Flex 3 in a Flex 4 World *

Using Flex 3 in a Flex 4 World * OpenStax-CNX module: m34631 1 Using Flex 3 in a Flex 4 World * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn how

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Authoring OpenStax Documents in Apache OpenOffice Writer *

Authoring OpenStax Documents in Apache OpenOffice Writer * OpenStax-CNX module: m60462 1 Authoring OpenStax Documents in Apache OpenOffice Writer * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

Java4340r: Review. R.G. (Dick) Baldwin. 1 Table of Contents. 2 Preface

Java4340r: Review. R.G. (Dick) Baldwin. 1 Table of Contents. 2 Preface OpenStax-CNX module: m48187 1 Java4340r: Review R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract This module contains review

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) *

Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) * OpenStax-CNX module: m39305 1 Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) * Free High School Science Texts Project This work is produced by OpenStax-CNX

More information

Chapter 2 The Design Window

Chapter 2 The Design Window Chapter 2 Objectives Chapter 2 The Design Window Learn about Crystal sections Move objects Use Toolbars, Icons, and Menus Format fields Add Special Fields Change a Group Use the Crystal Field Explorer

More information

Creating a Template in WordPerfect

Creating a Template in WordPerfect 1. File a. New From Project Creating a Template in WordPerfect b. Go to Options 2. Create A Category 1 3. Name it Family History (or a title of your choice) 4. Find Family History in the Drop down list

More information

Graph Quadratic Functions Using Properties *

Graph Quadratic Functions Using Properties * OpenStax-CNX module: m63466 1 Graph Quadratic Functions Using Properties * OpenStax This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 By the end of this

More information

INTRODUCTION (1) Recognize HTML code (2) Understand the minimum requirements inside a HTML page (3) Know what the viewer sees and the system uses

INTRODUCTION (1) Recognize HTML code (2) Understand the minimum requirements inside a HTML page (3) Know what the viewer sees and the system uses Assignment Two: The Basic Web Code INTRODUCTION HTML (Hypertext Markup Language) In the previous assignment you learned that FTP was just another language that computers use to communicate. The same holds

More information

HTMLDOC On Line Help

HTMLDOC On Line Help HTMLDOC On Line Help HTMLDOC On Line Help Table of Contents HTMLDOC On Line Help...1 Loading and Saving Books...2 The Input Tab...3 Setting the Document Type...3 Adding HTML Input Files...3 Adding URLs...3

More information

Compare quadrilaterals for similarities and differences *

Compare quadrilaterals for similarities and differences * OpenStax-CNX module: m31291 1 Compare quadrilaterals for similarities and differences * Siyavula Uploaders This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

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

Excel Level Three. You can also go the Format, Column, Width menu to enter the new width of the column.

Excel Level Three. You can also go the Format, Column, Width menu to enter the new width of the column. Introduction Excel Level Three This workshop shows you how to change column and rows, insert and delete columns and rows, how and what to print, and setting up to print your documents. Contents Introduction

More information

GAP CLOSING. Integers. Intermediate / Senior Facilitator s Guide

GAP CLOSING. Integers. Intermediate / Senior Facilitator s Guide GAP CLOSING Integers Intermediate / Senior Facilitator s Guide Topic 3 Integers Diagnostic...5 Administer the diagnostic...5 Using diagnostic results to personalize interventions solutions...5 Using Intervention

More information

Introduction. Headers and Footers. Word 2010 Working with Headers and Footers. To Insert a Header or Footer: Page 1

Introduction. Headers and Footers. Word 2010 Working with Headers and Footers. To Insert a Header or Footer: Page 1 Word 2010 Working with Headers and Footers Introduction Page 1 You can make your document look professional and polished by utilizing the header and footer sections. The header is a section of the document

More information

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016 Microsoft Word Part 3 Office 2016 Open Book Format.docx Headers and Footers If your document has a page number, you already have a header or footer (and can double click on it to open it). If you did not

More information

The Inverse Discrete Wavelet Transform *

The Inverse Discrete Wavelet Transform * OpenStax-CNX module: m18987 1 The Inverse Discrete Wavelet Transform * Mark Eastaway This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 2.0 1 Introduction

More information

ITEM ToolKit Technical Support Notes

ITEM ToolKit Technical Support Notes ITEM ToolKit Notes Reports Tutorial, Inc. 2875 Michelle Drive Suite 300 Irvine, CA 92606 Phone: +1.240.297.4442 Fax: +1.240.297.4429 http://www.itemsoft.com Page 1 of 13 Copyright, Inc., All Rights Reserved

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

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

1.2 - Introduction to the IAR Workbench IDE *

1.2 - Introduction to the IAR Workbench IDE * OpenStax-CNX module: m13621 1 1.2 - Introduction to the IAR Workbench IDE * Naren Anand Based on Introduction to CrossStudio MSP430 IDE by Kileen Cheng This work is produced by OpenStax-CNX and licensed

More information

Introduction to Microsoft Office 2007

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

More information

GAP CLOSING. Grade 9. Facilitator s Guide

GAP CLOSING. Grade 9. Facilitator s Guide GAP CLOSING Grade 9 Facilitator s Guide Topic 3 Integers Diagnostic...5 Administer the diagnostic...5 Using diagnostic results to personalize interventions solutions... 5 Using Intervention Materials...8

More information

Chapter 1 Operations With Numbers

Chapter 1 Operations With Numbers Chapter 1 Operations With Numbers Part I Negative Numbers You may already know what negative numbers are, but even if you don t, then you have probably seen them several times over the past few days. If

More information

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance Good Practice Guide No 8 An Introduction to Spreadsheets for Finance WYCAS provides a range of specialist services designed to meet the needs of the third sector One to one support and training Preparation

More information

CSCI 111 First Midterm Exam Spring Solutions 09.05am 09.55am, Wednesday, March 14, 2018

CSCI 111 First Midterm Exam Spring Solutions 09.05am 09.55am, Wednesday, March 14, 2018 QUEENS COLLEGE Department of Computer Science CSCI 111 First Midterm Exam Spring 2018 03.14.18 Solutions 09.05am 09.55am, Wednesday, March 14, 2018 Problem 1 Write a complete C++ program that asks the

More information

Get JAVA. I will just tell you what I did (on January 10, 2017). I went to:

Get JAVA. I will just tell you what I did (on January 10, 2017). I went to: Get JAVA To compile programs you need the JDK (Java Development Kit). To RUN programs you need the JRE (Java Runtime Environment). This download will get BOTH of them, so that you will be able to both

More information

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0 User Manual Administrator s guide for mass managing VirtueMart products using VM Mass Update 1.0 The ultimate product management solution for VirtueMart! Contents Product Overview... 3 Feature List...

More information

WebQuest. Question-File Quick-Start Instructions

WebQuest. Question-File Quick-Start Instructions Contents WebQuest Question-File Quick-Start Instructions 1 Introduction 1 2 Where to Start 2 2.1 Questionnaire on Paper............................. 2 2.2 Questionnaire in Electronic Format (Word, PDF,

More information

Hs01006: Language Features, Arithmetic Operators *

Hs01006: Language Features, Arithmetic Operators * OpenStax-CNX module: m37146 1 Hs01006: Language Features, Arithmetic Operators * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0

More information

Unit D Lecture Notes Word 2003

Unit D Lecture Notes Word 2003 Unit D Lecture Notes Word 2003 Objectives: In this project you will learn: Set document margins Divide a document into sections Insert page breaks Insert page numbers Add headers and footers Edit headers

More information

c122jan2714.notebook January 27, 2014

c122jan2714.notebook January 27, 2014 Internet Developer 1 Start here! 2 3 Right click on screen and select View page source if you are in Firefox tells the browser you are using html. Next we have the tag and at the

More information

How to make a "hello world" program in Java with Eclipse *

How to make a hello world program in Java with Eclipse * OpenStax-CNX module: m43473 1 How to make a "hello world" program in Java with Eclipse * Hannes Hirzel Based on How to make a "hello world" program in Java. by Rodrigo Rodriguez This work is produced by

More information

HTMLnotesS15.notebook. January 25, 2015

HTMLnotesS15.notebook. January 25, 2015 The link to another page is done with the

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

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

More information

The Default Application Container - Flex 3 and Flex 4 *

The Default Application Container - Flex 3 and Flex 4 * OpenStax-CNX module: m34604 1 The Default Application Container - Flex 3 and Flex 4 * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation Designing and Creating your GIS Poster Revised by Carolyn Talmadge 1/20/2015 First think about your audience and purpose then design your poster! Here are instructions for setting up your poster using

More information

MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i

MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i MarkMagic 6 Bar Code Labels, RFID Tags, and Electronic Forms Software for IBM System i Tutorial 3: Version 6 Graphic Concepts Tutorial 3: Graphics Concepts Pg. 1 Welcome Welcome to Part 3 of the MarkMagic

More information

15-122: Principles of Imperative Computation, Spring 2016

15-122: Principles of Imperative Computation, Spring 2016 15-122 Programming 3 Page 1 of 8 15-122: Principles of Imperative Computation, Spring 2016 Programming 3: Images Due: Thursday 4 th February, 2016 by 22:00 This programming assignment will have you using

More information

Functions and Graphs: Graphs of Inverse Functions (Grade 12) *

Functions and Graphs: Graphs of Inverse Functions (Grade 12) * OpenStax-CNX module: m39282 1 Functions and Graphs: Graphs of Inverse Functions (Grade 12) * Free High School Science Texts Project This work is produced by OpenStax-CNX and licensed under the Creative

More information

CMPSCI 145 Spring 2014 Lab #1. Professor William T. Verts

CMPSCI 145 Spring 2014 Lab #1. Professor William T. Verts CMPSCI 145 Spring 2014 Lab #1 Setting Up This project must be performed on a Microsoft Windows-based PC, and not on an Apple Macintosh, unless you have installed Windows through Boot Camp, Parallels 9

More information

Copyright Notice - Please read and understand the following: This software is licensed to one single user only

Copyright Notice - Please read and understand the following: This software is licensed to one single user only Copyright Notice - Please read and understand the following: This software is licensed to one single user only; unless you have a group license purchase. It is strictly prohibited to loan a "free" copy

More information

Introduction to Spreadsheets

Introduction to Spreadsheets Introduction to Spreadsheets Spreadsheets are computer programs that were designed for use in business. However, scientists quickly saw how useful they could be for analyzing data. As the programs have

More information

Title and Modify Page Properties

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

More information

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen.

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen. SIMPLE TEXT LAYOUT FOR COREL DRAW When you start Corel Draw, you will see the following welcome screen. A. Start a new job by left clicking New Graphic. B. Place your mouse cursor over the page width box.

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

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel

Survey Design, Distribution & Analysis Software. professional quest. Whitepaper Extracting Data into Microsoft Excel Survey Design, Distribution & Analysis Software professional quest Whitepaper Extracting Data into Microsoft Excel WHITEPAPER Extracting Scoring Data into Microsoft Excel INTRODUCTION... 1 KEY FEATURES

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

Reference Services Division Presents. Microsoft Word 2

Reference Services Division Presents. Microsoft Word 2 Reference Services Division Presents Microsoft Word 2 Welcome to Word 2. This handout includes step-by-step instructions for each of the tasks we will be covering in class. Changes to Word 2007 There are

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

Table of Laplace Transforms

Table of Laplace Transforms Table of Laplace Transforms 1 1 2 3 4, p > -1 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 Heaviside Function 27 28. Dirac Delta Function 29 30. 31 32. 1 33 34. 35 36. 37 Laplace Transforms

More information

Optimization in One Variable Using Solver

Optimization in One Variable Using Solver Chapter 11 Optimization in One Variable Using Solver This chapter will illustrate the use of an Excel tool called Solver to solve optimization problems from calculus. To check that your installation of

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Time series in html Canvas

Time series in html Canvas Time series in html Canvas In this tutorial, we will create an html document and use it to animate a time series. html html (Hypertext Markup Language) is used to make web pages. No software is needed

More information

Pro Users Guide Pro Desktop Signmaking Software

Pro Users Guide Pro Desktop Signmaking Software SignWord T Pro Users Guide Sign Systems Since 1966 For use with Microsoft Windows 9x, Windows NT Windows 2000, XP, ME operating systems Copyright 2003, APCO Graphics, Inc. Atlanta, GA. USA All rights reserved.

More information

How To Get Your Word Document. Ready For Your Editor

How To Get Your Word Document. Ready For Your Editor How To Get Your Word Document Ready For Your Editor When your document is ready to send to your editor you ll want to have it set out to look as professional as possible. This isn t just to make it look

More information

The Law of Reflection *

The Law of Reflection * OpenStax-CNX module: m42456 1 The Law of Reflection * OpenStax This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Explain reection of light from

More information

Some (semi-)advanced tips for LibreOffice

Some (semi-)advanced tips for LibreOffice Some (semi-)advanced tips for LibreOffice by Andy Pepperdine Introduction We cover several tips on special things in Writer and Calc and anything else that turns up. Although I use LibreOffice, these should

More information

A TUTORIAL ON WORD. Katie Gregory

A TUTORIAL ON WORD. Katie Gregory A TUTORIAL ON WORD Katie Gregory First, CLICK HERE Then, find Microsoft Word under programs and the Microsoft Office 2013 Folder This is what the document should look like when opened. SAVING A WORD DOCUMENT

More information

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop 205CDE: Developing the Modern Web Assignment 1: Designing a Website Scenario: D Bookshop Introduction I decided to make a second hand bookshop website. There are some reasons why I made this choice. Mainly

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Investigate and compare 2-dimensional shapes *

Investigate and compare 2-dimensional shapes * OpenStax-CNX module: m30563 1 Investigate and compare 2-dimensional shapes * Siyavula Uploaders This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 1 MATHEMATICS

More information

Lab 2. CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word.

Lab 2. CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word. Lab 2 CSE 3, Summer 2010 In this lab you will learn about file structures and advanced features of Microsoft Word. A. Create a basic File Structure Let s start by opening up the My Documents folder on

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

Grade Point Scales Standard Honors AP/College A B C D F Sample file

Grade Point Scales Standard Honors AP/College A B C D F Sample file 64 Transcripts Weighted Cumulative GPA When your student works extra hard and takes honors or college courses, they deserve a little credit. The best way to reflect this is through their GPA. They deserve

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

End User Enterprise File Services Guide

End User Enterprise File Services Guide End User Enterprise File Services Guide This guide has been developed for the purpose of providing insight to users on how to best leverage the Enterprise File Service offerings and to maximize data protection

More information

Easy Match QC Lesson 9. Setting Up a Print Job

Easy Match QC Lesson 9. Setting Up a Print Job Easy Match QC Lesson 9 Setting Up a Print Job To choose to print data to a specific format, use the following lesson. The first will configure a print job containing two pages of data, the first displaying

More information

Access Forms Masterclass 5 Create Dynamic Titles for Your Forms

Access Forms Masterclass 5 Create Dynamic Titles for Your Forms Access Forms Masterclass 5 Create Dynamic Titles for Your Forms Published: 13 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Add a

More information

Black & White Graphic Novel Guide

Black & White Graphic Novel Guide Black & White Graphic Novel Guide So You re Working on a Black & White Graphic Novel? Great! This guide is designed to help you prepare your print-ready PDF for submission. If you have any questions about

More information

Chapter 15 Printing Reports

Chapter 15 Printing Reports Chapter 15 Printing Reports Introduction This chapter explains how to preview and print R&R reports. This information is presented in the following sections: Overview of Print Commands Selecting a Printer

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

OpenStax-CNX module: m Quadratic Functions. OpenStax OpenStax Precalculus. Abstract

OpenStax-CNX module: m Quadratic Functions. OpenStax OpenStax Precalculus. Abstract OpenStax-CNX module: m49337 1 Quadratic Functions OpenStax OpenStax Precalculus This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 In this section, you

More information

Section 7.3 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the

Section 7.3 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the Section 7.3 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website. It is used under a Creative Commons

More information

Estimating Reports: Easy Tips to Create a Great Report. Presented by Matt Carr

Estimating Reports: Easy Tips to Create a Great Report. Presented by Matt Carr Estimating Reports: Easy Tips to Create a Great Report Presented by Matt Carr See how reporting in Timberline Estimating can be modified so you get professional looking reports. The four most important

More information

Microsoft Access 2016 Intro to Forms and Reports

Microsoft Access 2016 Intro to Forms and Reports Microsoft Access 2016 Intro to Forms and Reports training@health.ufl.edu Access 2016: Intro to Forms and Reports 2.0 hours Topics include using the AutoForm/AutoReport tool, and the Form and Report Wizards.

More information

Strategic Series-7001 Introduction to Custom Screens Version 9.0

Strategic Series-7001 Introduction to Custom Screens Version 9.0 Strategic Series-7001 Introduction to Custom Screens Version 9.0 Information in this document is subject to change without notice and does not represent a commitment on the part of Technical Difference,

More information

Videos...31 Training Videos...32 Webinar recording: Monday 5th December

Videos...31 Training Videos...32 Webinar recording: Monday 5th December GATORCREATOR Table of Contents Articles... 3 Drag and Drop Email Editor (Overview)... 4 Hidden Elements...15 Tracked Mailto: Links...18 Template Restrictions Custom Templates...21 Nifty Images User Guide...22

More information

Custom Fields in QuickBooks

Custom Fields in QuickBooks Custom Fields in QuickBooks November 20, 2013 By Charlie Russell 41 Replies Every business has some sort of unique information that is important to its operation. While QuickBooks Desktop provides the

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

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 Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS Introduction and conversion program overview... 1 Conversion considerations and recommendations... 1 Conversion procedures... 2 Data

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

More information

Title and Modify Page Properties

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

More information

15-122: Principles of Imperative Computation

15-122: Principles of Imperative Computation 15-122: Principles of Imperative Computation Lab 0 Navigating your account in Linux Tom Cortina, Rob Simmons Unlike typical graphical interfaces for operating systems, here you are entering commands directly

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

COGO-50 v1.81 User Manual By Jacob Wall

COGO-50 v1.81 User Manual By Jacob Wall COGO-50 v1.81 User Manual By Jacob Wall COGO-50 is a (mostly) UserRPL program written for the HP 49g+/50g using ROM Version 2.09 (also tested with ROM Version 2.15). It is a land surveying program capable

More information

LawTrust Manual Updated May 19, 2018

LawTrust Manual Updated May 19, 2018 LawTrust Manual Updated May 19, 2018 Every question we have ever been asked is found answered in this manual or under the Support link on our website. Purchase is by subscription via PayPal. See details

More information