The MathWorks - MATLAB Digest June Exporting Figures for Publication

Size: px
Start display at page:

Download "The MathWorks - MATLAB Digest June Exporting Figures for Publication"

Transcription

1 Page 1 of 5 Exporting Figures for Publication by Ben Hinkle This article describes how to turn figures into publication-ready Encapsulated Postscript (EPS) files using a new MATLAB script called exportfig.m. In the past, getting your plots and graphs into journal articles and professional publications was time consuming and tedious. Generally, what looked good on the screen would often look bad on paper. Exportfig.m was designed to help users specify four key properties of an exported figure: size, color, line widths and font sizes. The following table summarizes the typical problems you might encounter with these properties when exporting. Property Size Color Line widths Font sizes Typical problem when exporting Exported plots are typically too large and need to be scaled down in the document Exported plots typically should be in black and white, grayscale or the CMYK color space Lines in exported plots typically are too thin Text in exported plots is typically the wrong size By using exportfig.m you can avoid these problems with ease Issues January 2002 Issues November July May January 2001 Issues November June 2000 Issues December June Archived Articles Subscribe Now Before we illustrate the use of exportfig.m, let's first plot a sin-wave. Launch MATLAB and execute x=0:.1:20; y=sin(x); plot(x,y); On the screen the plot looks like

2 Page 2 of 5 Adjust the axis bounds and add a grid with the commands axis([ ]); grid on; and adjust the x-y ratio by resizing the window so that the plot looks like Let's use this plot for our publication-ready document. Without using exportfig.m, you would

3 Page 3 of 5 attempt to export the plot with the command print -deps pic1.eps and include the file "pic1.eps" into our document: Note that we are exporting to an EPS format. We could choose other formats, but EPS is the most common format to include in publication-quality documents. One of the first problems you notice with the above picture is that the aspect ratio is not as it looks on the screen. The plot's aspect ratio is the ratio of the width to the height. When exporting or printing, it is very common to want the exported plot to have the same aspect ratio as the plot on the screen. To fix the aspect ratio of the exported plot we first try to resize the plot in the document:

4 Page 4 of 5 But now the fonts are unreadable and the linewidths are very thin, though it might not be visible on the screen. Normally to fix this problem we would try setting the PaperPosition property of the figure before exporting as follows set(gcf, 'PaperPosition', [ ]); print -deps pic2.eps and export the figure again into the document: As you can see, the fonts look much better, but the aspect ratio is still not quite correct. We can either guess again or compute it exactly from the screen position of the figure. But we would still not have control over the font sizes unless we explicitly set the font sizes of all text objects. Suppose we wanted all our font sizes to be 8 points when we export. We would have to remember the old font sizes, set the new sizes to 8 points, export and set the old values back. These sorts of tedious transformations and computations are exactly what exportfig.m does for you. To export the figure with a width of 6 inches, an aspect ratio the same as on-screen, and text objects with a fixed fontsize of 8 points, we execute the following command exportfig(gcf,'pic3.eps', 'width',6, 'fontmode','fixed', 'fontsize',8);

5 Page 5 of 5 Exportfig.m requires two parameters followed by a list of optional parameters. The first parameter is the handle to the figure to export. In the example above we are exporting the current figure, so we pass it the result of the get-current -figure command gcf. The second parameter is the name of the file to create. Exportfig can only produce output to a file. After the file parameter there are any number of optional parameter-value pairs. In the example above we passed three optional parameters, width, fontmode and fontsize with corresponding values. For more details about the capabilities of exportfig.m, type help exportfig to read the script?s documentation. News & Notes I Using MathWorks Products For... I MATLAB Based Books I Third-Party Products The MathWorks, Inc. Trademarks Privacy Policy

Matlab Plots in Microsoft Word

Matlab Plots in Microsoft Word Matlab Plots in Microsoft Word Peter Kabal Department of Electrical & Computer Engineering McGill University March 2000 http://www.tsp.ece.mcgill.ca Matlab Plots in Microsoft Word 1 Matlab Plots in Microsoft

More information

Introduction to Simulink

Introduction to Simulink Introduction to Simulink There are several computer packages for finding solutions of differential equations, such as Maple, Mathematica, Maxima, MATLAB, etc. These systems provide both symbolic and numeric

More information

Submission Guideline Checklist

Submission Guideline Checklist Submission Guideline Checklist Please use this checklist as a guide to ensure that files are correctly prepared for submission. Please ensure that you have read the detailed Instructions for Authors before

More information

10.4 Areas in Polar Coordinates

10.4 Areas in Polar Coordinates CHAPTER 0. PARAMETRIC AND POLAR 9 0.4 Areas in Polar Coordinates Example. Find the area of the circle defined by r.5sin( ) (seeexample ). Solution. A Z 0.5 (.5sin( )) d sin( )cos( ).5 (.5/) (r where r.5/)

More information

Fall 2015 Math 337. Basic MatLab

Fall 2015 Math 337. Basic MatLab Fall 215 Math 337 Basic MatLab MatLab is a powerful software created by MathWorks, which is used extensively in mathematics, engineering, and the sciences. It has powerful numerical and graphic capabilities,

More information

HOW TO SAVE YOUR DESIGN FILES

HOW TO SAVE YOUR DESIGN FILES HOW TO SAVE YOUR DESIGN FILES READ YOUR BOOK. ART-2423 > raster > vector > holds both raster and layered o Can work in whatever color mode preferred. o Platform-specific (PC vs. Mac) and often version-specific

More information

ASUKABOOK InDesign Tool ABId

ASUKABOOK InDesign Tool ABId ASUKABOOK InDesign Tool ABId The AsukaBook InDesign Tool (ABId) has been created to offer an alternative AsukaBook design option and a more efficient workflow to design layouts for an AsukaBook in Adobe

More information

Press-Ready Cookbook Page Guidelines

Press-Ready Cookbook Page Guidelines Press-Ready Cookbook Page Guidelines table of contents These instructions are for all pages of your cookbook: Title Page, Special Pages, Table of Contents, Dividers, Recipe Pages, etc. WHAT IS PRESS-READY?

More information

Both transferring content to a template or re-formatting an existing Word document are similar in terms of time and effort.

Both transferring content to a template or re-formatting an existing Word document are similar in terms of time and effort. Open the Template in MS Word You can use one of our templates as a fresh document and transfer over your text, images, and content. This guide will also help you format an existing Word document. Both

More information

MATH36032 Problem Solving by Computer. Publishable Quality Graphics

MATH36032 Problem Solving by Computer. Publishable Quality Graphics MATH36032 Problem Solving by Computer Publishable Quality Graphics Which format of figures (images) do you know? Which format of figures (images) do you know? Raster formats: png, jpeg, tiff, gif, bmp,...

More information

Style guide.

Style guide. Style guide www.nam.org Logo Orientation The orientation of the Manufacturing Institute logo is shown below. The base line of the logo mark and typography should be aligned. The logo mark and typography

More information

print and printopt produce hardcopy output. All arguments to the print command are optional. You can use them in any combination or order.

print and printopt produce hardcopy output. All arguments to the print command are optional. You can use them in any combination or order. MATLAB Function Reference print, printopt Create hardcopy output Syntax print print filename print ddriver print dformat print dformat filename print smodelname print... options [pcmd,dev] = printopt Description

More information

Advertising rates. Full page Type area 225x330 mm. Bleed 258 x mm around, total 268x374 mm. Price. Color :- Free format.

Advertising rates. Full page Type area 225x330 mm. Bleed 258 x mm around, total 268x374 mm. Price. Color :- Free format. Advertising rates Resumé Weekly paper rates 2010 advertiser pages Lookup 480x330 mm Bleed 516 x 364 + 5 mm around, total 526 x 375 Color 81 427:- Half page 225x160 mm Color 27 499:- classifieds Full page

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Matlab (MATrix LABoratory) will be the programming environment of choice for the numerical solutions developed in this textbook due to its wide availability and its ease of use.

More information

Controlling the Control Palette

Controlling the Control Palette Controlling the Control Palette By Olav Martin Kvern Presented at the PageMaker Conference, Dallas November 11 13, 1996 Click here to return to the Thunder Lizard Productions home page. www.thunderlizard.com

More information

Basic plotting commands Types of plots Customizing plots graphically Specifying color Customizing plots programmatically Exporting figures

Basic plotting commands Types of plots Customizing plots graphically Specifying color Customizing plots programmatically Exporting figures Basic plotting commands Types of plots Customizing plots graphically Specifying color Customizing plots programmatically Exporting figures Matlab is flexible enough to let you quickly visualize data, and

More information

Enjoy upgrading to Microsoft Word Author: Christine Kent. Web address Blog address

Enjoy upgrading to Microsoft Word Author: Christine Kent. Web address   Blog address Enjoy upgrading to Microsoft Word 2007 Copyright Christine Kent, April 2008, revised September 08 Author: Christine Kent Web address www.christinekent.net Blog address http://christinekent.blogspot.com/

More information

Managing custom montage files Quick montages How custom montage files are applied Markers Adding markers...

Managing custom montage files Quick montages How custom montage files are applied Markers Adding markers... AnyWave Contents What is AnyWave?... 3 AnyWave home directories... 3 Opening a file in AnyWave... 4 Quick re-open a recent file... 4 Viewing the content of a file... 5 Choose what you want to view and

More information

12 whereas if I terminate the expression with a semicolon, the printed output is suppressed.

12 whereas if I terminate the expression with a semicolon, the printed output is suppressed. Example 4 Printing and Plotting Matlab provides numerous print and plot options. This example illustrates the basics and provides enough detail that you can use it for typical classroom work and assignments.

More information

Chapter 5. Presenting Data

Chapter 5. Presenting Data Chapter 5. Presenting Data Copyright McGraw-Hill Education. Permission required for reproduction or display. 5-1 Map Design Process 5-2 1 About ArcGIS Chapter 5. Presenting Data 5-3 Page layouts and map

More information

QUICK INTRODUCTION TO MATLAB PART I

QUICK INTRODUCTION TO MATLAB PART I QUICK INTRODUCTION TO MATLAB PART I Department of Mathematics University of Colorado at Colorado Springs General Remarks This worksheet is designed for use with MATLAB version 6.5 or later. Once you have

More information

APPM 2460 PLOTTING IN MATLAB

APPM 2460 PLOTTING IN MATLAB APPM 2460 PLOTTING IN MATLAB. Introduction Matlab is great at crunching numbers, and one of the fundamental ways that we understand the output of this number-crunching is through visualization, or plots.

More information

File Preparation & Design considerations

File Preparation & Design considerations File Preparation & Design considerations A Guide to Creating Proper Files for Print UGS Design Guide Page 1 table of contents document Setup document dimensions bleeds Creating a New document photoshop

More information

EEE161 Applied Electromagnetics Laboratory 1

EEE161 Applied Electromagnetics Laboratory 1 EEE161 Applied Electromagnetics Laboratory 1 Instructor: Dr. Milica Marković Office: Riverside Hall 3028 Email: milica@csus.edu Web:http://gaia.ecs.csus.edu/ milica This laboratory exercise will introduce

More information

Using the IMfig program.

Using the IMfig program. Using the IMfig program. IMfig is a program for generating a figure of an isolation-with-migration model from the output file generated by running the IMa2 program. IMfig generates an eps (encapsulated

More information

The Text group on the Text Box Tools contextual menu contains three options:

The Text group on the Text Box Tools contextual menu contains three options: To use these tools you will always need to click on a text box to activate the Text Box Tools contextual menu. Text Group The Text group on the Text Box Tools contextual menu contains three options: Text

More information

Scouting Assistant v1.x Release Notes

Scouting Assistant v1.x Release Notes Scouting Assistant Build 1.6.0.1 January 3, 2014 Implemented a new feature for the Professional edition for Stamping Photos using Date/Time, Moon Phase, Custom Caption, and Custom Logo. There is a new

More information

Designing the Layout of External Content Using the Widgets Tool

Designing the Layout of External Content Using the Widgets Tool Designing the Layout of External Content Using the Widgets Tool First Published: August 2, 2012 This module describes how to design the layout for display of the data that you have integrated and mapped

More information

Retirement Income Scenario Matrices. William F. Sharpe. 11. Analysis

Retirement Income Scenario Matrices. William F. Sharpe. 11. Analysis Retirement Income Scenario Matrices William F. Sharpe 11. Analysis Overview The previous chapter provided methods for producing income and fee scenario matrices for different types of fixed annuities,

More information

AMS 27L LAB #2 Winter 2009

AMS 27L LAB #2 Winter 2009 AMS 27L LAB #2 Winter 2009 Plots and Matrix Algebra in MATLAB Objectives: 1. To practice basic display methods 2. To learn how to program loops 3. To learn how to write m-files 1 Vectors Matlab handles

More information

Flexmail Software SET UP with DS1000/DS1200 Inserters

Flexmail Software SET UP with DS1000/DS1200 Inserters Flexmail Software SET UP with DS1000/DS1200 Inserters Written By: Colin Langridge Issue: Draft Date: N/A 1 Date: 22 nd June 2007 2 Date: 03 rd December 2008 3 Date: 22 nd January 2009 Inserters v3.doc

More information

Section 4.4: Parabolas

Section 4.4: Parabolas Objective: Graph parabolas using the vertex, x-intercepts, and y-intercept. Just as the graph of a linear equation y mx b can be drawn, the graph of a quadratic equation y ax bx c can be drawn. The graph

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

Rack Card Holder. Have a question or want us to do it for you? Give us a call

Rack Card Holder. Have a question or want us to do it for you? Give us a call Rack Card Holder To produce a rack card holder, please provide us with a digital layout file that looks like this: Have a question or want us to do it for you? Give us a call. 1.800.930.6040 Figure 1 Instructions

More information

What you will learn 2. Converting to PDF Format 15 Converting to PS Format 16 Converting to HTML format 17 Saving and Updating documents 19

What you will learn 2. Converting to PDF Format 15 Converting to PS Format 16 Converting to HTML format 17 Saving and Updating documents 19 What you will learn 2 Creating Text 3 Inserting a CAD Graphic 5 Inserting images from CorelDraw or Designer 8 Inserting Photos or Scanned pages 10 Inserting Objects from Excel or Project 11 Cropping or

More information

Format Type Support Thru. vector (with embedded bitmaps)

Format Type Support Thru. vector (with embedded bitmaps) 1. Overview of Graphics Support The table below summarizes the theoretical support for graphical formats within FOP. In other words, within the constraints of the limitations listed here, these formats

More information

Special Topics II: Graphical User Interfaces (GUIs)

Special Topics II: Graphical User Interfaces (GUIs) Special Topics II: Graphical User Interfaces (GUIs) December 8, 2011 Structures Structures (structs, for short) are a way of managing and storing data in most programming languages, including MATLAB. Assuming

More information

ELEN E3084: Signals and Systems Lab Lab II: Introduction to Matlab (Part II) and Elementary Signals

ELEN E3084: Signals and Systems Lab Lab II: Introduction to Matlab (Part II) and Elementary Signals ELEN E384: Signals and Systems Lab Lab II: Introduction to Matlab (Part II) and Elementary Signals 1 Introduction In the last lab you learn the basics of MATLAB, and had a brief introduction on how vectors

More information

Text & Design 2015 Wojciech Piskor

Text & Design 2015 Wojciech Piskor Text & Design 2015 Wojciech Piskor www.wojciechpiskor.wordpress.com wojciech.piskor@gmail.com All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means,

More information

RAD Posters & Preparation Overview. Research Appreciation Day Education Session February 2017

RAD Posters & Preparation Overview. Research Appreciation Day Education Session February 2017 RAD Posters & Preparation Overview Research Appreciation Day Education Session February 2017 By this point December 19 January 23 February 14 February 23 February 28 March 23 March 30 Abstract Submission

More information

Step-by-Step Guide to. Creating High Resolution Adobe Acrobat PDFs from your Desktop Applications

Step-by-Step Guide to. Creating High Resolution Adobe Acrobat PDFs from your Desktop Applications Step-by-Step Guide to Creating High Resolution Adobe Acrobat PDFs from your Desktop Applications This guide has been created in-house at GAM to better help you, the client, with creating an easy to print;

More information

MAT 343 Laboratory 4 Plotting and computer animation in MATLAB

MAT 343 Laboratory 4 Plotting and computer animation in MATLAB MAT 4 Laboratory 4 Plotting and computer animation in MATLAB In this laboratory session we will learn how to. Plot in MATLAB. The geometric properties of special types of matrices (rotations, dilations,

More information

MATLAB Modul 3. Introduction

MATLAB Modul 3. Introduction MATLAB Modul 3 Introduction to Computational Science: Modeling and Simulation for the Sciences, 2 nd Edition Angela B. Shiflet and George W. Shiflet Wofford College 2014 by Princeton University Press Introduction

More information

Lecture 5 of AMS 200 LaTeX Typesetting, Writing and

Lecture 5 of AMS 200 LaTeX Typesetting, Writing and Lecture 5 of AMS 200 LaTeX Typesetting, Writing and Hongyun Wang hongwang@soe.ucsc.edu November 3, 2014 1 LaTeX Typesetting LaTeX is a computer program for typesetting journals, manuscripts, reports It

More information

Quite Imposing Plus 4 (QI+4)

Quite Imposing Plus 4 (QI+4) Quite Imposing Plus 4 (QI+4) 27 April 2015 Beta 2 Release Notes This is a beta version offered WITHOUT WARRANTY. Please report any problems to help@quite.com Compatibility This beta is compatible with

More information

How To Test Your Code A CS 1371 Homework Guide

How To Test Your Code A CS 1371 Homework Guide Introduction After you have completed each drill problem, you should make it a habit to test your code. There are good ways of testing your code and there are bad ways of testing your code. This guide

More information

File Backup Windows Live Mail And

File Backup Windows Live Mail And File Backup Windows Live Mail 2011 Email And Contacts Like what you see here? Subscribe to the Tech Tips newsletter! Email: Step 1: Exporting Contacts from Windows Live Mail Once you have chosen the name

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

COLLEGE OF EDUCATION FACULTY RESEARCH CENTER. Professional Poster Tutorial

COLLEGE OF EDUCATION FACULTY RESEARCH CENTER. Professional Poster Tutorial COLLEGE OF EDUCATION FACULTY RESEARCH CENTER Professional Poster Tutorial Written By Amy Prosser, M.A. and Janet Rinker, B.S. Graduate Research Assistants Revised Fall 2009 By Amy Prosser, M.A. and Sami

More information

File Preparation for Eagle Print. PLEASE NOTE:If you are an IBM based customer, we can only accept PDF files!

File Preparation for Eagle Print. PLEASE NOTE:If you are an IBM based customer, we can only accept PDF files! Eagle Print File Preparation for Eagle Print PLEASE NOTE:If you are an IBM based customer, we can only accept PDF files! 1. All pages should be built to correct size, for both final size and live image

More information

Data Analysis in Geophysics ESCI Class 17. Bob Smalley. More Matlab.

Data Analysis in Geophysics ESCI Class 17. Bob Smalley. More Matlab. Data Analysis in Geophysics ESCI 7205 Class 17 Bob Smalley More Matlab. Final project selection due soon. Saving & Exporting Graphics The default graphics file is a Matlab Figure or.fig formatted file.

More information

International Clarinet Association Rev. 09/01/2018 The Clarinet Advertising Rates and Specifications

International Clarinet Association Rev. 09/01/2018 The Clarinet Advertising Rates and Specifications Rev. 09/01/2018 2018-19 Advertising Rates and Specifications GENERAL INFORMATION is published four times annually and contains approximately 80 pages, full color, printed offset on 70 lb. gloss stock.

More information

QuarkXPress Server 2015 Known and Resolved Issues. Last updated: 10/13/2015

QuarkXPress Server 2015 Known and Resolved Issues. Last updated: 10/13/2015 Last updated: 10/13/2015 Table of Contents Resolved Issues: QuarkXPress Server 2015 October Update (11.1)... 3 Resolved Issues: QuarkXPress Server 2015... 3 Known Issues as of QuarkXPress Server 2015...

More information

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker

VHSE - COMPUTERISED OFFICE MANAGEMENT MODULE III - Communication and Publishing Art - PageMaker INTRODUCTION : It is one Adobe PageMaker 7.0 software is the ideal page layout program for business, education, and small- and home-office professionals who want to create high-quality publications such

More information

COPYRIGHT & TRADEMARKS... I

COPYRIGHT & TRADEMARKS... I Microsoft Excel XP Level 3 ABOUT VICON... I COPYRIGHT & TRADEMARKS... I DISCLAIMER... I LESSON 1 - WORKING WITH DATABASES...1 Using a Database...2 Creating a Database...2 Modifying a Database...4 Sorting

More information

Ad Creation Guide. Table of Contents

Ad Creation Guide. Table of Contents Ad Creation Guide Table of Contents BEST PRACTICES 2 INDESIGN USERS 4 QUARKXPRESS 4, 5, AND 6 USERS 5 QUARKXPRESS 7, 8, AND 9 USERS 7 DISTILLING 9 INDESIGN PRESET DETAILS 10 QUARKXPRESS PRINT STYLE DETAILS

More information

Department of Chemical Engineering ChE-101: Approaches to Chemical Engineering Problem Solving MATLAB Tutorial Vb

Department of Chemical Engineering ChE-101: Approaches to Chemical Engineering Problem Solving MATLAB Tutorial Vb Department of Chemical Engineering ChE-101: Approaches to Chemical Engineering Problem Solving MATLAB Tutorial Vb Making Plots with Matlab (last updated 5/29/05 by GGB) Objectives: These tutorials are

More information

Check your document s safe margin, bleeds and trim marks before uploading.

Check your document s safe margin, bleeds and trim marks before uploading. TAKE A SECOND LOOK AT YOUR DOCUMENT. A CLOSER LOOK. Check your document s safe margin, bleeds and trim marks before uploading. Please note: Business cards have been used as an example throughout the PDF

More information

RAD Posters & Preparation Overview. Research Appreciation Day Education Session February & March 2018

RAD Posters & Preparation Overview. Research Appreciation Day Education Session February & March 2018 RAD Posters & Preparation Overview Research Appreciation Day Education Session February & March 2018 By this point December 18 January 23 February 13 February 22 February 26 March 6 March 27 March 29 Abstract

More information

PDF Specification for IEEE Xplore (Part A-Core Requirements)

PDF Specification for IEEE Xplore (Part A-Core Requirements) PDF Specification for IEEE Xplore (Part A-Core Requirements) VERSION 4.12 MAY 2013 IEEE CONTENT ENGINEERING TABLE OF CONTENTS 1. INTRODUCTION... 1 2. MINIMUM PDF REQUIREMENTS... 1 3. PDF SEARCHING... 2

More information

How to Create Greeting Cards using LibreOffice Draw

How to Create Greeting Cards using LibreOffice Draw by Len Nasman, Bristol Village Ohio Computer Club If you want to create your own greeting cards, but you do not want to spend a lot of money on special software, you are in luck. It turns out that with

More information

Splash G630 Service Pack 5 Release Notes

Splash G630 Service Pack 5 Release Notes Splash G630 Service Pack 5 Release Notes Service Pack Contents Revised 10/9/02 The Splash G630 Service Pack 5 contains fixes for some problems with the G630 software. It includes all of the fixes from

More information

Text on a CCR Matrix using the SuperStar Sequence Editor. What we will learn

Text on a CCR Matrix using the SuperStar Sequence Editor. What we will learn Text on a CCR Matrix using the SuperStar Sequence Editor Brian Bruderer What we will learn Colors Fonts Direction of movement Rotation Masks 1 Horizontal Layout Tools / Layout will launch the Layout dialog

More information

Modeling and Simulating Social Systems with MATLAB

Modeling and Simulating Social Systems with MATLAB Modeling and Simulating Social Systems with MATLAB Lecture 2 Statistics and Plotting in MATLAB Olivia Woolley, Tobias Kuhn, Dario Biasini, Dirk Helbing Chair of Sociology, in particular of Modeling and

More information

Designing & Creating your GIS Poster

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

More information

Brand Style Guide. updated

Brand Style Guide. updated Brand Style Guide updated 12.19.18 Why Brand Identity Matters Effective January 1, 2019, KHA will begin using a new logo. We can all take pride in what it signifies: The well-known hospital H emblem in

More information

Mac. Logo Guidelines March 2018

Mac. Logo Guidelines March 2018 Mac Logo Guidelines March 2018 Contents Overview 3 Basics 4 Graphic Standards 5 Using the Mac Logo 6 Avoid Mistakes 7 Legal Requirements 8 2 Overview These guidelines explain the correct use of the Mac

More information

Texas School for the Blind and Visually Impaired. Using The Drawing Tools in Microsoft Word 2007 for Tactile Graphic Production

Texas School for the Blind and Visually Impaired. Using The Drawing Tools in Microsoft Word 2007 for Tactile Graphic Production Texas School for the Blind and Visually Impaired Outreach Programs 1100 West 45 th Street Austin, Texas, 78756 Using The Drawing Tools in Microsoft Word 2007 for Tactile Graphic Production Developed by:

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

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

More information

III-6Exporting Graphics (Windows)

III-6Exporting Graphics (Windows) Chapter III-6 III-6Exporting Graphics (Windows) Overview... 96 Metafile Formats... 96 BMP Format... 97 PDF Format... 97 Blurry Images in PDF... 97 Encapsulated PostScript (EPS) Format... 97 SVG Format...

More information

Basic statistical operations

Basic statistical operations COSC 6397 Big Data Analytics Fundamental Analytics Edgar Gabriel Spring 2014 Basic statistical operations Calculating minimum, maximum, mean, median, standard deviation Data typically multi-dimensional

More information

Here is the data collected.

Here is the data collected. Introduction to Scientific Analysis of Data Using Spreadsheets. Computer spreadsheets are very powerful tools that are widely used in Business, Science, and Engineering to perform calculations and record,

More information

Poster-making 101 for 1 PowerPoint slide

Poster-making 101 for 1 PowerPoint slide Poster-making 101 for 1 PowerPoint slide Essential information for preparing a poster for the poster printer 1. Poster size: You will be creating a single large slide in PowerPoint. 2. Before adding any

More information

ENED 1090: Engineering Models I Homework Assignment #2 Due: Week of September 16 th at the beginning of your Recitation Section

ENED 1090: Engineering Models I Homework Assignment #2 Due: Week of September 16 th at the beginning of your Recitation Section ENED 1090: Engineering Models I Homework Assignment #2 Due: Week of September 16 th at the beginning of your Recitation Section Instructions: 1. Before you begin editing this document, you must save this

More information

Phonetics Incorporated

Phonetics Incorporated Visual Identity Guidelines e Phonetics Incorporated r The logo/wordmark and all visual identity artwork represented in this booklet belongs entirely to Phonetics Incorporated. All other content and layout

More information

Project #1 Seam Carving

Project #1 Seam Carving Project #1 Seam Carving Out: Fri, Jan 19 In: 1 Installing, Handing In, Demos, and Location of Documentation 1. To install, type cs016 install seamcarve into a shell in the directory in which you want the

More information

The official magazine of the Association of Anaesthetists

The official magazine of the Association of Anaesthetists The official magazine of the Association of Anaesthetists September 2018 ISSN 0959-2962 No. 374 The Association gets a makeover: our rebrand The future of wearable technology in anaesthesia Musings of

More information

Guidelines for Prepress File Submission

Guidelines for Prepress File Submission Guidelines for Prepress File Submission 1. Use Only PostScript Type 1 Fonts (Using on Mac platform) Edition: February 2015 We support the PostScript Type 1 font format and strongly recommended that you

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

1 of 9 8/27/2014 10:53 AM Units: Teacher: MOExcel/Access, CORE Course: MOExcel/Access Year: 2012-13 Excel Unit A What is spreadsheet software? What are the parts of the Excel window? What are labels and

More information

Michael Florrimell. Art Land. Parallel Universe. Artlink Art Land. Artlink Parallel Universe OF AUSTRALIA & ASIA-PACIFIC OF AUSTRALIA & ASIA-PACIFIC

Michael Florrimell. Art Land. Parallel Universe. Artlink Art Land. Artlink Parallel Universe OF AUSTRALIA & ASIA-PACIFIC OF AUSTRALIA & ASIA-PACIFIC Media Kit 2018/2019 CONTEMPORARY ART OF AUSTRALIA & ASIA-PACIFIC Issue 36:3 September 2016 Quarterly AUS $15 NZ $16.50 CONTEMPORARY ART OF AUSTRALIA & ASIA-PACIFIC Issue 36:4 December 2016 Quarterly AUS

More information

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS There are different options that may be used to adjust columns and rows in a table. These will be described in this document. ADJUST COLUMN WIDTHS Select

More information

Tracker Design Guidelines

Tracker Design Guidelines s..0 Copyright Samsung Electronics, Co., Ltd. All rights reserved. Overview This document includes design guidelines for the Samsung Digital Health SDK s tracker and tracker tile. Tracker The tracker is

More information

Logo & Icon. Fit Together Logo (color) Transome Logo (black and white) Quick Reference Print Specifications

Logo & Icon. Fit Together Logo (color) Transome Logo (black and white) Quick Reference Print Specifications GRAPHIC USAGE GUIDE Logo & Icon The logo files on the Fit Together logos CD are separated first by color model, and then by file format. Each version is included in a small and large size marked by S or

More information

BUSINESS BUSINESS BUSINESS MEDIA KIT BUSINESS. The Lincoln. Journal. The Lincoln. Journal COVER STORY. Bison Inc. s. The Lincoln. Journal COVER STORY

BUSINESS BUSINESS BUSINESS MEDIA KIT BUSINESS. The Lincoln. Journal. The Lincoln. Journal COVER STORY. Bison Inc. s. The Lincoln. Journal COVER STORY 2012 MEDIA KIT February 15, 2012 Vol. 15 No. 4 $2.00 Vol. 15 No. 5 $2.00 March 1, 2012 COVER STORY COVER STORY Bison Inc. s Elmer Wessel & Nick Cusick Airgas Doug Keitges Page 5 Page 5 February 1, 2012

More information

Hello, Visual Brand Guidelines. ACR Homes

Hello, Visual Brand Guidelines. ACR Homes Brand Guidelines ACR Homes Visual Brand Guidelines Hello, Introduction 01 The ACR Logo The Basics 02 Space, Size, Orientation 03 Color 04 Misuse 05 Colors 06 Typeface 07 Social Presence and Flyers 08 Trademark

More information

XYZ Mesh. Product. Gray Technical, LLC Copyright Gray Technical All Rights Reserved

XYZ Mesh. Product. Gray Technical, LLC  Copyright Gray Technical All Rights Reserved Product XYZ Mesh Company Copyright License Gray Technical, LLC http://www.graytechnical.com/ XYZ Mesh Copyright Copyright 2015-2017 Gray Technical All Rights Reserved SOFTWARE LICENSE SOFTWARE REPRODUCTION:

More information

A Mini-Manual for GNUPLOT

A Mini-Manual for GNUPLOT A Mini-Manual for GNUPLOT John E Floyd University of Toronto January 5, 2002 GNUPLOT is a useful program for creating charts of data for publication, frequently producing better quality charts than can

More information

The official magazine of the Association of Anaesthetists

The official magazine of the Association of Anaesthetists The official magazine of the Association of Anaesthetists September 2018 ISSN 0959-2962 No. 374 The Association gets a makeover: our rebrand The future of wearable technology in anaesthesia Musings of

More information

What is Matlab? A software environment for interactive numerical computations

What is Matlab? A software environment for interactive numerical computations What is Matlab? A software environment for interactive numerical computations Examples: Matrix computations and linear algebra Solving nonlinear equations Numerical solution of differential equations Mathematical

More information

Getting Started. Chapter 1. How to Get Matlab. 1.1 Before We Begin Matlab to Accompany Lay s Linear Algebra Text

Getting Started. Chapter 1. How to Get Matlab. 1.1 Before We Begin Matlab to Accompany Lay s Linear Algebra Text Chapter 1 Getting Started How to Get Matlab Matlab physically resides on each of the computers in the Olin Hall labs. See your instructor if you need an account on these machines. If you are going to go

More information

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved.

ABBYY FineReader 14. User s Guide ABBYY Production LLC. All rights reserved. ABBYY FineReader 14 User s Guide 2017 ABBYY Production LLC All rights reserved Information in this document is subject to change without notice and does not bear any commitment on the part of ABBYY The

More information

2017 Media Information

2017 Media Information 2017 Media Information Introduction Electrical Wholesaler is the only monthly electrical trade title that is exclusively dedicated to the wholesale and bulk-buying sector of the electrical market. Providing

More information

Chartered Professional Accountants of British Columbia. Guidelines for the Licensed Use of the CPA Logo (Mark)

Chartered Professional Accountants of British Columbia. Guidelines for the Licensed Use of the CPA Logo (Mark) Chartered Professional Accountants of British Columbia Guidelines for the Licensed Use of the CPA Logo (Mark) The CPA Logo is available for download and use by Members and Firms in professional practice

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2008 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Welcome to CreateSpace. Please log in, or if you're a new user, create a new account.

Welcome to CreateSpace. Please log in, or if you're a new user, create a new account. 1 of 6 Welcome to CreateSpace. Please log in, or if you're a new user, create a new account. Book Help > Black & White Submission Requirements This guide is for ready to publish (print-ready) PDF file

More information

Contemporary art quarterly. Themed editions on topics of currency. Reviews and online archive at artlink.com.au

Contemporary art quarterly. Themed editions on topics of currency. Reviews and online archive at artlink.com.au Media Kit 2018 Contemporary art quarterly. C Themed editions on topics of currency. Reviews and online archive at artlink.com.au With a loyal subscriber base and significant reach into gallery bookshops,

More information

Start > All Programs > OpenGrADS 2.0 > Grads Prompt

Start > All Programs > OpenGrADS 2.0 > Grads Prompt 1. GrADS TUTORIAL This document presents a brief tutorial for Brian Doty's Grid Analysis and Display System (GrADS). The following sample session will give you a feeling for how to use the basic capabilities

More information

40. Sim Module - Common Tools

40. Sim Module - Common Tools HSC Sim Common Tools 15021-ORC-J 1 (33) 40. Sim Module - Common Tools Table of Contents 40.1. Drawing flowsheets and adding tables to flowsheets... 2 40.1.1. Drawing units... 2 40.1.2. Drawing streams...

More information