Make an ebook in an Afternoon

Size: px
Start display at page:

Download "Make an ebook in an Afternoon"

Transcription

1 Make an ebook in an Afternoon How to make ebooks in the epub and MOBI (KF8 compatible) formats using free software. These instructions are intended as a how-to guide for making ebooks using free and widely available software. If you devote a couple of hours to following them, you should have a properly formatted, glitch-free ebook ready for publication. This lesson will show you how to make ebooks in the most widely used ebook format (epub) and then convert this to the Amazon Kindle format (MOBI). We ll be looking at the example of making an ebook version of a novel, but the same principles apply for books of short stories, poetry, non-fiction, etc. Before you start, you ll need to have the following things ready: The text of your book in rft (rich text) format. You can choose to save a document in rtf format from MS Word. Another rtf document containing the text of the jacket blurb and any review quotes. A high-res jpeg image of the book s cover (minimum 600x800 pixels). And you ll need to download and install these two software applications: Sigil. This is an open-source WYSIWYG (What You See Is What You Get) epub editing application. It's basically a split-screen xhtml editor that lets you see what your book's pages will look like as you make changes to the xhtml code. Download it from Get the latest stable version you can run on your machine, as the later versions have more time-saving functionality. Kindle Previewer. This converts epub files to the newest version of MOBI (which is compatible with Kindle eink readers, the Kindle Fire and the ipad) and allows you to view them more or less as they will appear on a Kindle device. Download it at

2 Part One. Open the Sigil application. This will automatically open a new epub file. Save the file as the title of your book, e.g. Novel. Open the.rtf file of your book in either Text Editor (on a Mac) or Wordpad (on a PC). Copy the text of your book, excluding the title page, prelims and table of contents. and paste it into the Sigil page (which will automatically have been named Section 1 ). It should now look like this:

3 Now highlight the name of the first chapter, and from the drop-down menu at the top left of the menu bar, select Heading 2. The text should now look like this: Then go through the text, highlighting each chapter title and formatting it as Heading 2. You ll see the following 3 buttons at the top of the Sigil window: = Book view. This lets you see what the formatting will look like in the finished book = Split view. Click this button to see both the finished page and the xhtml code behind it. = Code view. Click this button to view the xhtml only. If you toggle to code view, and look closely a the xhtml, you ll see that tags have been attached to the text Chapter One, so it reads <h2>chapter One</h2>. This is because you formatted it as Heading 2.

4 It s worth noting at this stage that Sigil automatically generates a table of contents (TOC) for your book using the header tags you apply. The table of contents allows someone viewing an epub file on a reading device to navigate through the text. Sigil will look for the <h> </h> tags in the xhtml code, and add whatever text is between them to the table of contents. It does this on a hierarchical basis, with Header 1 being the top level, and Header 6 being the bottom level. E.g.: Chapter One (set in Header 2) Chapter Two (set in Header 2) Chapter Three (set in Header 2) Chapter Four (set in Header 2) Sub-chapter 1 (set in Header 3) Sub-chapter 2 (set in Header 3) Chapter Five (set in Header 2) and so on. Now toggle back to book view, using this button. At the moment, the chapter titles are aligned to the left, but you ll want to centre them. To do this, highlight your first chapter heading (e.g. Chapter One ) and click the centre text button on the menu bar: Now your book should look like this: If you toggle to code view, you ll see that some new code has appeared, as if by magic. The first bit to pay attention to is near the top of the page. It ll appear in khaki. <style type="text/css"> h2.sgc-3 {text-align: center;} </style>

5 This is CSS code. CSS stands for Cascading Style Sheets, and it s essentially a labour-saving way of implementing complex formatting throughout a document, by setting out some rules at the start. The CSS rule that has just been written is, as you might expect, about centring. The buttons on the menu at the top of your Sigil window will each implement different CSS rules. But to make a really nice looking ebook, it s useful to understand enough about CSS to be able to write it yourself. CSS rules have 3 components. The selector, the property and the value. In the rule: h2.sgc-3 {text-align: center;} h2.sgc-3 is the selector, text-align is the property, and center is the value. These rules are then imposed on the text itself using tags, like this: <h2 class="sgc-3">chapter One</h2> Because the text Chapter One is tagged with the selector <h2 class="sgc-3"> the corresponding CSS rule at the top of the document is applied, and the text is centred. Why use CSS? Well, you might want to implement formatting changes on multiple sections of text. It would take forever to write out all the different styles in tags around each bit of text you want to change. Instead, you can compile them as one CSS rule. The next section will require you to write some actual code. But don t be daunted! Yes, it looks like squiggles at first, but soon it will start to make sense, and once you ve learned a bit, you ll be in command of the formatting of your book. Now we re going to amend the CSS rule so that it centres not just the first chapter heading, but all text tagged in the Heading 2 style. To do this, go into code view and change the CSS rule: h2.sgc-3 {text-align: center;} to this: h2{text-align: center;} (all you re doing is deleting the code:.sgc-3) Now toggle back to book view and look at the page. All the chapter headings should now be centred. If it hasn t worked, go back into code view and check you ve got the CSS exactly right. In page view, you ll notice the body text is all left-justified, each paragraph is separated by a line break, and there are no indents. Yuk!

6 Let s fix that in the CSS. Copy these CSS rules (you should be able to copy and paste them from this pdf document): h2 {text-align: center;} p.sgc-2 {text-align: center;} h1.sgc-1 {text-align: center;} p.sgc-4 {text-align: center;} h4.sgc-2 {text-align: center;} h2.drop {margin em 0;} p {text-indent: 2em; margin:0 0.2em 0;} p.noindent {text-indent: 0; } and paste them over the line of CSS in the code view of your Sigil book. so it looks like this: Now toggle to book view. The text should look like this: Great! We have indents! However, the first line of body text is still indented and we don t want it to be (according to most publishers house-styles, there should be no indentation after a line-break).

7 There s a quick fix for this. Toggle to code view. Find this bit of code, which appears right at the start of the first line of body text, and copy it from the code view page (not from this document): <p><br /></p> <p> Now open the find & replace tool, using this button on the menu bar: Paste the code into the find field. Then paste in the following code into the replace field. <p><br /></p> <p class=noindent> And click replace all. This should locate all line breaks and ensure that the proceeding paragraph is not indented. Tip Sigil sometimes reverts find-and-replace changes when you switch back to book view. If this happens, click your cursor onto the page of code before you switch to book view. We also want to justify the body text. Highlighting all the sections of text that need to be justified and hitting the justify button is time consuming, especially if it s a long book. Using CSS will save time. So, toggle to code view and find this CSS rule: p {text-indent: 2em; margin:0 0.2em 0;} and add this code, before the closing brace: text-align: justify; So the whole rule now reads: p {text-indent: 2em; margin:0 0.2em 0; text-align: justify;} If you toggle to book view, the body text should now be justified throughout the book, so it looks like this:

8 That s Part One finished! Save what you ve done so far before continuing to Part Two. Part Two The chapters of your book will be listed in the Table of Contents (TOC) because of the way you ve formatted the chapter titles with h2 tags. If you re using a recent version of the Sigil software, there ll be a pane on the right hand side of your window displaying all the items in the TOC. If you have an earlier version of Sigil, you ll need to go to Menu/Tools/TOC Editor to view it. Here you can see the TOC items and uncheck any you don t want to include. Now we re going to divide up the book, so that each chapter begins on a dedicated page. Here s how: In book view, click your cursor just after the body text at the end of the first chapter. Then on the menu, select Insert/Chapter Break. This will split the book into 2 distinct sections, which you ll see listed in the left hand pane as Section0001.xhtml and Section0002.xhtml. Continue through the text, adding new Chapter Breaks for each chapter (but with care you can t undo this!). Tip It doesn t really matter what the pages within an ebook are called, i.e. Section0001.xhtml, Section0001.xhtml, etc. These page names are for the book s internal reference only the reader will never see them. So far, so good. You ve laid out and formatted the novel, and separated it into chapters, which have automatically been added to the TOC. Unfortunately, this is the point where epub and MOBI (the Kindle format) compatibility issues raise their heads. For ebook readers using the epub file format, the TOC you

9 already have should make the ebook perfectly navigable. But for Kindle devices, you need to build a dedicated Contents page. Here s how: 1) First of all, in the left hand pane, right click on one of the existing pages (e.g. Section0001.xhtml) and select Add New Item. A new page will be created. Rename this page Contents.xhtml (by right clicking on it and selecting rename ). Then right click on it again and select Add Semantics ; then Table of Contents. You can drag and drop this page in the left hand pane so it s at the top of the list, and will appear as the first page in the book. 2) Now go back to the original rtf document of the book, copy the text from the contents page. Paste it into the ebook page you just created. 3) Write Contents at the top of the page, format it as Heading 2, and centre it. 4) As ebooks don t use page numbers, the next thing you need to do is delete the page numbers listed on the page. By now, your contents page should look something like this: 5) Now you need to make it navigable. Toggle to code view. To link the text Chapter One to that page within the ebook, you ll need to insert some code. Pasting in the following code will link the text Chapter One with the xhtml page called Section0001.xhtml. <a href="../text/section0001.xhtml">chapter One</a> If you now toggle to book view, and click on the text Chapter One (which will appear in blue), you should navigate to the xhtml page Section001. To build the table of contents, repeat this step for each chapter. When you ve finished, check that the hyperlinks are correct by clicking on each chapter name on the Contents Page to see if it links to the right chapter.

10 Tip the old Kindle eink devices will sometimes arbitrarily indent some items on a contents page. To avoid this, highlight your all chapter headings on the contents page and left justify them using the button on the menu. Prelims Some publishers don t consider it necessary to add a prelims page to an ebook, as copyright and publisher information will be included in the metadata (more about this later). However, if you want to add a prelims page, here s how to do it. 1) First, right click on one of the existing pages (e.g. Section0001.xhtml) and select Add New Item. A new page will be created. Rename this page Prelims.xhtml (by right clicking on it and selecting rename ). Then right click on it again and select Add Semantics ; then select Copyright Page. 2) Paste in your prelims text and centre it. 3) You may well want the prelims text to appear smaller than normal-sized text. There are two ways of achieving this. a) In code view, paste this CSS over the existing CSS code in the Prelims page: p.sgc-1 {font-size: 50%; text-align: center} That should make the text 50% smaller. Tip Kindle devices, particularly the eink Kindle readers, have limited support for different sized text within an ebook. This was essentially because the vision of these devices was to give the user control over this aspect of the reading experience setting the text size themselves. Amazon have revised this with the Kindle Fire, which allows publishers to have more control over font sizes. The upshot is, before publication of your ebook, you must road-test your ebook on a range of devices, old and new (not just the Kindle Previewer software), to see whether your prelims text appears in the size you want. Cover Image Here s how to insert a cover image. 1) Make sure you have the cover image saved somewhere on your computer. It should be a jpeg of at least 600 x 800 pixels resolution.

11 2) Right click on the folder Images in the left hand pane. Select Add Existing Item. This will prompt you to import an image file. 3) Once imported, right click on the image file and select Add Semantics ; then select Cover Image. Metadata Metadata is information about the book, including the title, the author s name, copyright information, a description of the contents, a blurb, press quotes, a list of territories in which the ebook will be available (which will depend on the rights specified in your contract with the book s author), and in some cases, an ISBN*. You can find much of this information on the jacket of a book, or on the prelims pages. Metadata doesn t appear within the pages of an ebook, but is included as part of the epub file. Metadata is important when it comes to having your book sold by ebook retailers. Crucially, it s what allows customers find your book when they search online (and remember, they might not search for the book s title or the author s name, but by topic, theme or genre). Without the right metadata, a retailer may not accept your ebook, or it might not be very visible when people search for your book. *Technically, there s no requirement for an ebook to carry an ISBN. EBooks sold on Amazon, for example, don t need one. However, some ebook retailers demand it, so allocating it one now could save you hassle in the future. It should not be the same ISBN as the hard-copy edition, as this leads to confusion when customers search for the book using the ISBN. How to add metadata 1) In the top menu, select Tools/Meta Editor. 2) Add the book s name and the author s name. 3) Click Add Basic. As a bare minimum, I d recommend adding a Description (use your blurb text for this), the Publisher, the Publication Date, the ISBN if you re allocating it one, and Rights. In Rights, list the territories in which you have the right or license to sell the ebook. 4) Click Add Advanced. Here, as a minimum, I d add Copyright Holder, Designer, Editor (if an anthology), and Translator (if applicable).

12 Checking the first round First of all, have a quick scroll through each chapter of the book in Sigil. Obvious things to check are: Are the chapter headings centered and correctly formatted as h2? If the body text uses numbers, asterixes or other symbols to divide subsections of a chapter, are these centered? Is the body text correctly indented on the first line of each new paragraph? When there s a line break, is the proceeding paragraph unindented? If not, replace the opening <p> tag of the proceeding paragraph with <p class= noindent > Do the chapter titles on the Contents Page hyperlink to the corresponding chapter in the book? Are the prelims the correct size? And obviously, look for any miscellaneous typos that may have crept in. Pay particular attention to any text you have added or altered by hand while making the epub (as opposed to text imported from the rtf). Conversion to MOBI format. 1) Save the Sigil epub file. 2) Then open the Kindle Previewer application. 3) From the main menu, select Open and then choose your epub file from the dialogue box. At this point, you ll see a message box telling you the file is being converted. After a moment, you should get the message Kindle Previewer has Successfully Compiled the Book. The Output File has been generated here. If this is what you see, click OK and carry on to stage 4 below. If you see a message that says Kindle Previewer has Successfully Compiled the Book. But there are warnings! this, as you might expect, means something isn t quite right. Click on Compilation Details, and scroll down to see what the warning is for. It s most likely to be one of 2 things, which you ll need to fix in Sigil before you proceed: a) The cover image is too small. b) There s a navigation problem in the Table of Contents, which usually means a hyperlink on the contents page directs to a page that doesn t exist in the book, or visa versa.

13 4) The Kindle Previewer will automatically open in Kindle Fire mode. But as the older Kindle eink reader is the device most prone to formatting problems, it makes sense to start with that. So on the top menu, select Devices/Kindle. 5) Now navigate from chapter to chapter, using this button: to check that the formatting and alignment of the chapter titles looks okay. 6) Click this button to see the contents page. Check that all the links to chapters on the contents page work. 7) From the first Chapter, use this button to scroll back through the pages to the prelims. Check they look okay. 8) Now scroll forward through every page of the book. It s probably not necessary (or a good use of your time) to proof read it. But do at least scan the formatting and alignment of the text on every page. 9) Now repeat the process in Kindle Fire and ipad modes. Once you re satisfied it s all looking good (and, if you ve gone back to make any changes in Sigil, you ve re-checked it in the Kindle Previewer) you re ready to check it on the Kindle itself. 1) Kindle Previewer will have automatically created a new folder in the same location as your epub was saved. The MOBI file of your ebook will be saved in here. 2) If you ve opened your ebook in Previewer more than once, you ll have several MOBI files in here. Make sure you select the latest version. 3) Plug your kindle device into your computer. 4) Drag and drop this MOBI file into the documents folder of your Kindle. 5) Disconnect (by safely ejecting it!), then check how the ebook looks on the Kindle, using the same checklist as above. Kindle eink and Kindle Fire compatibility. As noted above, the older Kindle eink devices do not support some formatting commonly used in epub files. Many of these glitches have been ironed out with the introduction of the Kindle Fire device and the new, KF8-compatible updated MOBI file format. But it s worth bearing in mind that many of your customers will have older Kindle eink reading devices, so it makes sense to check how your book looks in the Kindle Previewer in Kindle mode, and on an actual Kindle eink device prior to publishing it. To learn more about compatibility issues, you can find a full list of the xhtml tags supported by different Kindle devices on page 52 of this document:

14 If you don t have a Kindle, you can drop into the Literature Northwest office to test your ebook files on our Kindle. Please ra.page@commapress.co.uk to arrange this in advance. Now you re ready to publish! It s really straightforward to sell a book on Amazon. You can set-up an account on the Amazon Kindle Direct Publishing website:

A Short Guide To Preparing Your Files for ebookit.com s Free epub Conversion Service

A Short Guide To Preparing Your Files for ebookit.com s Free epub Conversion Service Introduc9on A Short Guide To Preparing Your Files for ebookit.com s Free epub Conversion Service Here at ebookit.com, we ve been offering professional conversion services since day one. While there s no

More information

Kindle Formatting Guide

Kindle Formatting Guide Kindle Formatting Guide Contents Introduction... 2 How about doing your own formatting?... 2 About the Kindle Format... 2 What file formats can you submit to Kindle?... 2 Stage 1 Format Your Headings...

More information

FORMATTING INSTRUCTIONS FOR KINDLE. You will need to download the free programs Sigil, Calibre and Amazon Previewer.

FORMATTING INSTRUCTIONS FOR KINDLE. You will need to download the free programs Sigil, Calibre and Amazon Previewer. FORMATTING INSTRUCTIONS FOR KINDLE You will need to download the free programs Sigil, Calibre and Amazon Previewer. While you can upload a Word document directly to Amazon and convert it to Mobi, you may

More information

How to Export Your Book as epub and Mobi file formats with Microsoft Word and Calibre

How to Export Your Book as epub and Mobi file formats with Microsoft Word and Calibre How to Export Your Book as epub and Mobi file formats with Microsoft Word and Calibre This basic tutorial will offer you some guidance on how to prepare your Microsoft Word fi le for export to the epub

More information

Moving from FrameMaker to Blaze: Best Practices

Moving from FrameMaker to Blaze: Best Practices Moving from Adobe FrameMaker to MadCap Blaze is easy, although to get the best results you need to do some planning before you start. This document discusses suggestions and issues to make the import result

More information

How to Prepare a Digital Edition PDF Book With Adobe InDesign

How to Prepare a Digital Edition PDF Book With Adobe InDesign How to Prepare a Digital Edition PDF Book With Adobe InDesign This tutorial will offer you some advice on how to use Adobe InDesign to prepare an optimized digital edition PDF book. There are two ways

More information

Kindle Create User Guide

Kindle Create User Guide Kindle Create User Guide v1.5 English Feb. 27, 2018 Copyright 2018 Amazon.com, Inc. or its affiliates. All rights reserved. Revision History Revision Number Revision Notes 1.5 Added section 1.1, Changing

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

Site Owners: Cascade Basics. May 2017

Site Owners: Cascade Basics. May 2017 Site Owners: Cascade Basics May 2017 Page 2 Logging In & Your Site Logging In Open a browser and enter the following URL (or click this link): http://mordac.itcs.northwestern.edu/ OR http://www.northwestern.edu/cms/

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

Page design and working with frames

Page design and working with frames L E S S O N 2 Page design and working with frames Lesson objectives Suggested teaching time To a learn about designing web pages and creating framesets in your web, you will: 35-45 minutes a b c Discuss

More information

KINDLE CREATE USER GUIDE

KINDLE CREATE USER GUIDE KINDLE CREATE USER GUIDE Version 0.98 Beta (6/29/17) Contents 1. Welcome to Kindle Create!... 3 2. The Kindle Create Workspace... 3 2.1. Contents Pane... 4 2.2. Edit Pane... 5 2.2.1. Rulers and Guide Lines...

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

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

FILE TYPES & SIZES BOOK COVER

FILE TYPES & SIZES BOOK COVER Content Conversion Guidelines Revised August 2017 Welcome to Kobo Writing Life! These guidelines are intended to help you format your book so that it uploads smoothly into our store and displays beautifully

More information

Graduate Health Sciences Word Topics

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

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Microsoft Word Part 3 Office 2013

Microsoft Word Part 3 Office 2013 Microsoft Word Part 3 Office 2013 Hyperlinks When a document is sent as an electronic copy, hyperlinks can be added to direct the reader to a web page. To add a hyperlink: Highlight the word, phrase, paragraph,

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

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 Word 2010 Level 2 Table of Contents INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 PAGE LAYOUT BREAKS... 2 Section break examples... 2 Inserting Section Breaks... 3 Deleting

More information

Microsoft Word 2011 Tutorial

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

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme Introduction Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme In this Getting Started Guide, you can follow along as a website is built using the MIT DLC Theme. Whether you

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

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 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

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

How to Prepare a Digital Edition PDF Book With Microsoft Word

How to Prepare a Digital Edition PDF Book With Microsoft Word How to Prepare a Digital Edition PDF Book With Microsoft Word This tutorial will offer you some advice on how to use Microsoft Word, Photoshop Elements, and Adobe Acrobat to prepare an optimized digital

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Creating tables of contents

Creating tables of contents Creating tables of contents A table of contents (TOC) can list the contents of a book, magazine, or other publication; display a list of illustrations, advertisers, or photo credits; or include other information

More information

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed.

Karlen Communications Track Changes and Comments in Word. Karen McCall, M.Ed. Karlen Communications Track Changes and Comments in Word Karen McCall, M.Ed. Table of Contents Introduction... 3 Track Changes... 3 Track Changes Options... 4 The Revisions Pane... 10 Accepting and Rejecting

More information

In the fourth unit you will learn how to upload and add images and PDF files.

In the fourth unit you will learn how to upload and add images and PDF files. Introduction Here at SUNY New Paltz, we use the Terminal Four (T4) web content management system (CMS). This puts the power of editing content on our college s webpage in the hands of our authorized users.

More information

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images.

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images. Creating the Newsletter Overview: You will be creating a cover page and a newsletter. The Cover page will include Your Name, Your Teacher's Name, the Title of the Newsletter, the Date, Period Number, an

More information

Lutheran High North Technology The Finder

Lutheran High North Technology  The Finder Lutheran High North Technology shanarussell@lutheranhighnorth.org www.lutheranhighnorth.org/technology The Finder Your Mac s filing system is called the finder. In this document, we will explore different

More information

CONVERSION TRACKING PIXEL GUIDE

CONVERSION TRACKING PIXEL GUIDE Conversion Tracking Pixel Guide A Step By Step Guide to Installing a conversion tracking pixel for your next Facebook ad. Go beyond clicks, and know who s converting. PRESENTED BY JULIE LOWE OF SOCIALLY

More information

Tips & Tricks Making Accessible MS Word Documents

Tips & Tricks Making Accessible MS Word Documents Use Headings Why? Screen readers do not read underline and bold as headings. A screen reader user will not know that text is a heading unless you designate it as such. When typing a new section heading,

More information

Website Updates Made Easy

Website Updates Made Easy Built by Packerland Websites, Managed by You You will learn: How to log into your website to make changes How to update the Home, About Us & other pages Quick tips for success How to add photos, links,

More information

This book will help you quickly create your first documents, spreadsheets, and slideshows.

This book will help you quickly create your first documents, spreadsheets, and slideshows. Getting Started Welcome to iwork 08 Preface This book will help you quickly create your first documents, spreadsheets, and slideshows. iwork 08 includes three applications that integrate seamlessly with

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

TekTalk Word 2007 Notes

TekTalk Word 2007 Notes TekTalk Word 2007 Notes Karen McCall i, M.Ed. Karlen Communications ii February 1, 2008 Table of Contents Change the Application Colour Scheme... 2 Split Page Breaks from Paragraph Marks... 2 Turn off

More information

Exploring the Interface

Exploring the Interface 2 Exploring the Interface Touring the Interface 13 Setting a Default Workspace 26 Saving Workspace Layouts 26 Defining a Default Browser 27 Using Shortcut Keys 28 One of the most daunting aspects of working

More information

Teach Yourself Microsoft Word Topic 12 - Multipage Document Features Part 1

Teach Yourself Microsoft Word Topic 12 - Multipage Document Features Part 1 http://www.gerrykruyer.com Teach Yourself Microsoft Word Topic 12 - Multipage Document Features Part 1 In this class and the next few you will find out how to use MS Word features that make it easier to

More information

Bonus Lesson: Working with Code

Bonus Lesson: Working with Code 15 Bonus Lesson: Working with Code In this lesson, you ll learn how to work with code and do the following: Select code elements in new ways Collapse and expand code entries Write code using code hinting

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 10/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template...1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

MAXQDA and Chapter 9 Coding Schemes

MAXQDA and Chapter 9 Coding Schemes MAXQDA and Chapter 9 Coding Schemes Chapter 9 discusses how the structures of coding schemes, alternate groupings are key to moving forward with analysis. The nature and structures of the coding scheme

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

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

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

TLMC SHORT CLASS: THESIS FORMATTING

TLMC SHORT CLASS: THESIS FORMATTING Table of Contents Introduction... 2 Getting Help... 2 Tips... 2 Working with Styles... 3 Applying a Style... 3 Creating A New Style... 3 Setting Margins... 4 Adding Page Numbers... 5 Step 1: Using Sections

More information

HEADINGS & TOCS IN WORD 2007

HEADINGS & TOCS IN WORD 2007 HEADINGS & TOCS IN WORD 2007 MODUS OPERANDI WORD TRAINING Prepared by: Karen Dyson 07-August-2009 ABSTRACT: This training session teaches you how to control how headings look and how to use automatic features

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

How to get ebooks on to your Kindle

How to get ebooks on to your Kindle How to get ebooks on to your Kindle *These instructions assume that you have already registered your Kindle and have set up an Amazon account. * If you are using the Kindle Fire you can do this directly

More information

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display.

Word Tips & Tricks. Status Bar. Add item to Status Bar To add an itme to the status bar, click on the item and a checkmark will display. Status Bar The status bar is located on the bottom of the Microsoft Word window. The status bar displays information about the document such as the current page number, the word count in the document,

More information

Pathway: Configuration Tool & Print Via dialog box

Pathway: Configuration Tool & Print Via dialog box 1 Pathway: Configuration Tool & Print Via dialog box Student Manual Copyright 2014 SIL International 2 Contents Contents 2 Introduction 3 Pathway Configuration Tool 3 Export Through Pathway dialog box

More information

Word Processing: Basic Skills

Word Processing: Basic Skills Word Processing: Basic Skills Name: Main: The purpose of this exercise is to practice the word processing skills that you will need to use each time you produce a "best effort" draft of writing on the

More information

UAccess ANALYTICS Next Steps: Creating Report Selectors

UAccess ANALYTICS Next Steps: Creating Report Selectors UAccess ANALYTICS Arizona Board of Regents, 2015 THE UNIVERSITY OF ARIZONA created 08.10.2015 v.1.00 For information and permission to use our PDF manuals, please contact uitsworkshopteam@list.arizona.edu

More information

HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF)

HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF) HOW TO UTILIZE MICROSOFT WORD TO CREATE A CLICKABLE ADOBE PORTABLE DOCUMENT FORMAT (PDF) This tutorial expects a basic familiarity with Word 2010. If you can open a document, navigate tabs within a document,

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information

A Guide to Blogging on Wordpress

A Guide to Blogging on Wordpress A Guide to Blogging on Wordpress Below is a written guide with pictures for using the WordPress blogging platform. If you re more of a visual person, there are videos here: http://wordpress.tv/category/howto/

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

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Taking the Mystery Out of E-book Production. Larry Edwards Author, Editor, Publisher

Taking the Mystery Out of E-book Production. Larry Edwards Author, Editor, Publisher Taking the Mystery Out of E-book Production Larry Edwards Author, Editor, Publisher Polishing Your Prose What Authors Should Know Format word doc properly: For ebook conversion and layout To expedite conversion

More information

Pathway: Configuration Tool & Export Through Pathway dialog box

Pathway: Configuration Tool & Export Through Pathway dialog box 1 Pathway: Configuration Tool & Export Through Pathway dialog box Student Manual Copyright 2014 SIL International 2 Contents Contents 2 Introduction 3 Pathway Configuration Tool 3 Export Through Pathway

More information

ebooks at the Library Computers and ereaders

ebooks at the Library Computers and ereaders ebooks at the Library Computers and ereaders One of the newest developments in reading is the electronic book, or ebook. An ebook is a digital copy of a book that can be read on a computer, dedicated ebook

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

More information

Microsoft FrontPage 2002 Tutorial. Contents

Microsoft FrontPage 2002 Tutorial. Contents Microsoft FrontPage 2002 Tutorial Contents Introduction... 1 Before You Begin... 2 Overview... 2 If you have Web server software installed... 2 FrontPage and Microsoft Internet Explorer... 3 If you are

More information

Sitefinity Manual. Webmasters. University of Vermont College of Medicine. Medical Communications

Sitefinity Manual. Webmasters. University of Vermont College of Medicine. Medical Communications Sitefinity Manual Webmasters University of Vermont College of Medicine Medical Communications Table of Contents Basics... 2 Navigating to the Website... 3 Actions.. 4 Titles & Properties. 5 Creating a

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

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

WYSIWYG Editor: Users Manual

WYSIWYG Editor: Users Manual WYSIWYG Editor: Users Manual Table of Contents WYSIWYG Editor Overview.... 3 Adding Text... 4 Inserting an Image.... 7 Inserting a File.... 15 Embedding Media.... 21 Inserting an Email Link.... 25 Captiva

More information

eportfolio GENERAL USER

eportfolio GENERAL USER eportfolio GENERAL USER Startup Guide [2016-17] Table of Contents Page 2: Introduction Logging in to your Digication account Page 3: Page 4: Steps to create an eportfolio from course template Steps to

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 12/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template... 1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

Karlen Communications Word 2007 Settings. Karen McCall, M.Ed.

Karlen Communications Word 2007 Settings. Karen McCall, M.Ed. Karlen Communications Word 2007 Settings Karen McCall, M.Ed. Table of Contents Change the Application Colour Scheme... 4 Split Page Breaks from Paragraph Marks... 4 Turn off Click and Type... 5 Turning

More information

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Your Thesis Drive (T:\) Each student is allocated space on the Thesis drive. Any files on this drive are accessible from

More information

epub Finishing Touches

epub Finishing Touches epub Finishing Touches Fixing Errors, Adding Metadata, and Tweaking Formatting Introduction Our Goal: Our Path: ????????????????? ebookarchitects.com/resources.php Top 5 Misconceptions Publishers have

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

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at

GOOGLE APPS. If you have difficulty using this program, please contact IT Personnel by phone at : GOOGLE APPS Application: Usage: Program Link: Contact: is an electronic collaboration tool. As needed by any staff member http://www.google.com or http://drive.google.com If you have difficulty using

More information

Section 1. How to use Brackets to develop JavaScript applications

Section 1. How to use Brackets to develop JavaScript applications Section 1 How to use Brackets to develop JavaScript applications This document is a free download from Murach books. It is especially designed for people who are using Murach s JavaScript and jquery, because

More information

Word Processing for Dissertations

Word Processing for Dissertations Word Processing for Dissertations Microsoft Office 2016 Word Processing for dissertations Contents: Steps in Writing a Dissertation... 2 Writing Dissertations on a PC... 3 Getting Started... 4 What is

More information

Basic CMS User Guide

Basic CMS User Guide "We create exceptional business solutions for cash-pay healthcare professionals that enable them to realize their full potential." Basic CMS User Guide Version 1.2 3/28/2012 1 Table of Contents Table of

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

m ac romed ia D r e a mw e av e r Curriculum Guide

m ac romed ia D r e a mw e av e r Curriculum Guide m ac romed ia D r e a mw e av e r Curriculum Guide 1997 1998 Macromedia, Inc. All rights reserved. Macromedia, the Macromedia logo, Dreamweaver, Director, Fireworks, Flash, Fontographer, FreeHand, and

More information

SlickEdit Gadgets. SlickEdit Gadgets

SlickEdit Gadgets. SlickEdit Gadgets SlickEdit Gadgets As a programmer, one of the best feelings in the world is writing something that makes you want to call your programming buddies over and say, This is cool! Check this out. Sometimes

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

Photoshop and Lightroom for Photographers

Photoshop and Lightroom for Photographers Photoshop and Lightroom for Photographers Topic 8 Introduction to Lightroom Learning Outcomes In this lesson, I want to introduce you to Lightroom, another very useful photo editing tool from Adobe. By

More information

Microsoft Office Word 2010

Microsoft Office Word 2010 Microsoft Office Word 2010 Content Microsoft Office... 0 A. Word Basics... 4 1.Getting Started with Word... 4 Introduction... 4 Getting to know Word 2010... 4 The Ribbon... 4 Backstage view... 7 The Quick

More information

Project Managers Specialty Guide to MS Project Issues

Project Managers Specialty Guide to MS Project Issues Project Managers Specialty Guide to MS Project Issues Editing the Plan Always remember that almost anything you do can IMMEDIATELY be UNDONE. If you make a mistake, go to EDIT menu, pick UNDO if available.

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format our web site. Just

More information

Starting Microsoft FrontPage 2003

Starting Microsoft FrontPage 2003 Creating a Web Page and Web Site Using Microsoft FrontPage 2003 Starting Microsoft FrontPage 2003 In this tutorial we ll first create a single web page using Microsoft FrontPage 2003. Then, we ll create

More information

Learn Dreamweaver CS5 in a Day

Learn Dreamweaver CS5 in a Day Learn Dreamweaver CS5 in a Day Topic File Used Page Number Instructions...1 Chapter 1 Tutorial 1. Introduction... 3 2. Previewing finished site in your web browser...als_portfolio... 7 3. Starting Up Dreamweaver...

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

MadCap Software. Index Guide. Flare 2017 r2

MadCap Software. Index Guide. Flare 2017 r2 MadCap Software Index Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Using Tab Stops in Microsoft Word

Using Tab Stops in Microsoft Word Using Tab Stops in Microsoft Word U 720 / 1 How to Set Up and Use Tab Stops to Align and Position Text on a Page If you ve tried to use tab stops to align text in Microsoft Word, there s every chance you

More information

1.0 Overview For content management, Joomla divides into some basic components: the Article

1.0 Overview For content management, Joomla divides into some basic components: the Article Joomla! 3.4.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Hands-on Session. Styles Tool. Bullets & Numbering

Hands-on Session. Styles Tool. Bullets & Numbering Styles Tool 1. The Styles tool gives the ability to define a pre-set collection of font styles that make it easy and automatic to use branding throughout a document. 2. The Styles tool is located on the

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information