MATH36032 Problem Solving by Computer. Publishable Quality Graphics

Size: px
Start display at page:

Download "MATH36032 Problem Solving by Computer. Publishable Quality Graphics"

Transcription

1 MATH36032 Problem Solving by Computer Publishable Quality Graphics

2 Which format of figures (images) do you know?

3 Which format of figures (images) do you know? Raster formats: png, jpeg, tiff, gif, bmp,... Vector formats: svg,... Container formats (for special graphic softwares): cpt (Corel Photo Paint), psd (Adobe PhotoShop), psp (Corel Paint Shop Pro), xcf (GIMP),... Different formats for different usage: jpeg/jpg for photo; gif for animation;... Other differences: Lossy/lossless compression

4 Raster Image vs Vector Image Any difference between the two logos? (keep on zooming in) Use vector images (eps,svg,...) whenever possible!

5 Exporting jpg directly from MATLAB x = linspace(0,5,101); plot(x,erf(x),x,airy( 5*x)) % Save as "jpg" figure What could be improved for this figure?

6 The improved figure Error Function Airy Function 0.5 f(x) x More points for Airy Function ; increase line width; better resolution; less ticks in horizontal axis(?); extend the vertical axis (above one); legend explaining the curves; different styles for the two functions;...

7 Compare them together Error Function Airy Function 0.5 f(x) x

8 Know the names first Error Function Airy Function 0.5 legend f(x) XTick < xlabel x

9 Default setting and its improvement Narrow line width? plot(..., Linewidth,2) Small font size? (gca : get current axis) set(gca, fontsize,18); Axis label xlabel( x, fontsize,14, fontname, times roman ) Axis Tick set(gca, XTick,0:1:5) More complicated legend? lg = legend( Error Function, Airy Function ); set(lg, Position,[ ],... box, off );

10 Finally, save the right format (for Latex) print -depsc2 myfig.eps print -deps2 myfig.eps % c for color % for black white Warning: What you see on screen may not exactly be the resulting eps or pdf file, need fine tuning of the parameters DO NOT print (or save) to pdf directly (will be a figure in a full A4 paper, too much unwanted space above and below the figure) Figures may look different on different devices (screen, printer, projector,..) or even different viewer.

11 In Microsoft Word, it is done differently... Edit Copy Figure and then Paste (or shortcut Ctrl+V).

12 Color vs Black-white University Printing Costs: A4 mono single-sided 5p A4 mono double-sided (duplex) 8p

13 Color vs Black-white University Printing Costs: A4 mono single-sided 5p A4 mono double-sided (duplex) 8p A4 colour single-sided 21p A4 colour double-sided (duplex) 40p Many publications (journal articles, textbooks,...) are still only black-white.

14 Color, black-white, or does not matter? Two exactly the same figures (using print -depsc2 colorfig.eps and print -deps2 grayfig.eps) x 1 x r r

15 Which color to use? You may never use certain color(s). To differentiate different curves using line styles instead: plot(x,y1, --,x,y2, -*,x,y3, -d, MarkerSize,6);

16 Other vector graphics: Asymptote The footbal The Sierpinski Sponge

17 Other vector graphics: tikz/pgf Editors Pro TEXt TEX MiKTEX pdftex 3 Systems TEX Engines 4 2 TEXLive Mac TEX LuaTEX X TEX E 5 1 Formats 9 ConTEXt L ATEX The mindmap A complete graph

18 Gallery made by me (using Asymptote) Branch point 0.1 p=1.25 p=1.50 p=1.80 p=1.95 R F Branch cut z = x + iǫ W(r) z = x iǫ r ρ F on x R F y v w = f(z) r = r(θ) x u dθ θ τw 1 τw 1 τw 2 τw k x j 1 x j x j+1 x j+2 x j+k b z = z(x) U

19 How the source code looks like? Asymptote code for Football import graph3; size(400); currentlight.background=palegreen; dtrender=render(compression=zero,merge=true); real c=(1+sqrt(5))/2; triple[] x={(0,c,1),(0,-c,1),(0,-c,-1)}; triple[] y={(1,0,c),(1,0,-c),(-1,0,-c)}; triple[] z={(c,1,0),(-c,1,0),(-c,-1,0)}; triple[][] Q= { {z[0],y[1],x[3],x[0],y[0],z[3]}, {z[1],x[0],x[3],y[2],z[2],y[3]}, {z[2],z[1],y[2],x[2],x[1],y[3]}, {z[3],z[0],y[0],x[1],x[2],y[1]}, {x[0],x[3],z[1],y[3],y[0],z[0]}, {x[1],x[2],z[2],y[3],y[0],z[3]}, {x[2],x[1],z[3],y[1],y[2],z[2]}, {x[3],x[0],z[0],y[1],y[2],z[1]}, {y[0],y[3],x[1],z[3],z[0],x[0]}, {y[1],y[2],x[2],z[3],z[0],x[3]}, {y[2],y[1],x[3],z[1],z[2],x[2]}, {y[3],y[0],x[0],z[1],z[2],x[1]} }; path3 p=arc(o,q[0][0],q[0][1]); real R=abs(point(p,reltime(p,1/3)));. Tikz/PGF code for Mindmap \begin{tikzpicture} \path [ mindmap, text = white, level 1 concept/.append style = {font=\large\bfseries, sibling angle=90}, level 2 concept/.append style = {font=\normalsize\bfseries}, level 3 concept/.append style = {font=\small\bfseries}, tex/.style = {concept, ball color=blue, font=\huge\bfseries}, engines/.style = {concept, ball color=green!50!black}, formats/.style = {concept, ball color=blue!50!black}, systems/.style = {concept, ball color=red!90!black}, editors/.style = {concept, ball color=orange!90!black} ] node [tex] {TEX} [clockwise from=0] child[concept color=green!50!black, nodes={engines}] { node {Engines} [clockwise from=90] child { node {\TeX} } child { node {pdf\tex} } child { node {\XeTeX} } child { node {Lua\TeX} }} Much more complicated than a programming language!.

20 Summary Use vector graphics if possible Use the right format Fine tuning the parameters, and pay attention to small details Figures should complement your writing, and should be referred in the main text You can invest your time in more advanced graphics (Asymptote, Tikz/PGF, SVG,xfig,...) in the future.

DIS: Design and imaging software

DIS: Design and imaging software Using IT productivity tools and applications This is the ability to use a software application designed to create, modify and layout artwork or images for display in print or on a screen (eg vector graphics

More information

Presenta(on Tools Adobe Illustrator. November 6, 2017

Presenta(on Tools Adobe Illustrator. November 6, 2017 Presenta(on Tools Adobe Illustrator November 6, 2017 Today s Lab Adobe Illustrator on Macs in 345 Need to stagger afendance 5 students from 2 3:30 5 students from 3:30 5 Graphics SoNware Computer sonware

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

Image Types Vector vs. Raster

Image Types Vector vs. Raster Image Types Have you ever wondered when you should use a JPG instead of a PNG? Or maybe you are just trying to figure out which program opens an INDD? Unless you are a graphic designer by training (like

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

R.L. HAMMETTE & ASSOCIATES

R.L. HAMMETTE & ASSOCIATES R.L. HAMMETTE & ASSOCIATES PHONE 863-299-3901 a division of H A M M E T T E I N T E R N A T I O N A L, I N C. 1625 U.S. HWY. 17, N. PO BOX 846 EAG LE LAK E, FL 33839-0846 w w w. h a m m e t t e. c o m

More information

Final Study Guide Arts & Communications

Final Study Guide Arts & Communications Final Study Guide Arts & Communications Programs Used in Multimedia Developing a multimedia production requires an array of software to create, edit, and combine text, sounds, and images. Elements of Multimedia

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

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

**** Digitization. Pictures are important

**** Digitization. Pictures are important **** 1 Digitization by Paul.Nieuwenhuysen@vub.ac.be Prepared to support a tutorial presentation in the framework of OceanTeacher Academy at UNESCO-IOC-IODE in Oostende, Belgium 2011-09 http://www.iode.org/

More information

Tools Course: Part 2

Tools Course: Part 2 Tools Course: Part 2 Christoph M. Kanzler Slides adapted from Dominik Wyser/Jean- Claude Metzger christoph.kanzler@hest.ethz.ch http://www.relab.ethz.ch 22.02.2017 Zürich, 20.02.2019 Overview Theory Recap:

More information

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons The Inkscape Program Inkscape is a free, but very powerful vector graphics program. Available for all computer formats

More information

The MathWorks - MATLAB Digest June Exporting Figures for Publication

The MathWorks - MATLAB Digest June Exporting Figures for Publication 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.

More information

DOWNLOAD OR READ : THE IMAGE THE ICON AND THE COVENANT PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THE IMAGE THE ICON AND THE COVENANT PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THE IMAGE THE ICON AND THE COVENANT PDF EBOOK EPUB MOBI Page 1 Page 2 the image the icon and the covenant the image the icon pdf the image the icon and the covenant Any to Icon converter

More information

User Guide. DrawAnywhere.com: User Guide

User Guide. DrawAnywhere.com: User Guide DrawAnywhere.com: User Guide DrawAnywhere.com is an online diagramming & flow charting application with the look & feel of a desktop application! User Guide http://www.drawanywhere.com August, 2007 Table

More information

MULTIMEDIA DESIGNING AND AUTHORING

MULTIMEDIA DESIGNING AND AUTHORING UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION D M A MULTIMEDIA DESIGNING AND AUTHORING QUESTION BANK 1. A multimedia authoring software. A. PageMaker B. Director C. Excel 2. Tool used to increase

More information

HGSBulletin. HGS Bulletin Digital Guidelines for Advertisers. Houston Geological Society. Volume 53

HGSBulletin. HGS Bulletin Digital Guidelines for Advertisers. Houston Geological Society. Volume 53 Volume 53 HGSBulletin Houston Geological Society HGS Bulletin 2010 2011 Digital Guidelines for Advertisers HGS Bulletin 2010 2011 Advertising Rates COMPLETE and mail ad material and full payment to: Houston

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

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

SCHOOL OF DISTANCE EDUCATION UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION D M A INTRODUCTION TO MULTIMEDIA QUESTION BANK

SCHOOL OF DISTANCE EDUCATION UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION D M A INTRODUCTION TO MULTIMEDIA QUESTION BANK UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION D M A INTRODUCTION TO MULTIMEDIA QUESTION BANK 1. Compression a. Reduces the picture clarity for storage b. Reduces the number of bytes required to store

More information

Vector Bitmap EPS Encapsulated PostScript Vector EPS EPS CDR CMX CGM DXF WMF scalable objects independent of resolution (unlimited)

Vector Bitmap EPS Encapsulated PostScript Vector EPS EPS CDR CMX CGM DXF WMF scalable objects independent of resolution (unlimited) Image File Formats There are two major graphic types; Vector and Bitmap. Bitmap images (also known as raster images) are made up of pixels on a screen. Pixels are picture elements; tiny dots of individual

More information

Publication-quality figures with Inkscape

Publication-quality figures with Inkscape Publication-quality figures with Inkscape In Lab 3 we briefly learnt about the different formats available to save the plots we create in R and how to modify them in PowerPoint and Adobe Illustrator. Today

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.  Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 9A0-035 Title : Adobe Illustrator CS ACE Exam Vendors : Adobe Version : DEMO Get Latest & Valid 9A0-035

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

Art Department Specs.

Art Department Specs. Art Department Specs www.whitlam.com Submitting Art Files Fonts All fonts should be supplied. All fonts should be converted to OUTLINES. This will eliminate any font requirements. Graphic Format Vector

More information

W1005 Intro to CS and Programming in MATLAB. Plo9ng & Visualiza?on. Fall 2014 Instructor: Ilia Vovsha. hgp://www.cs.columbia.

W1005 Intro to CS and Programming in MATLAB. Plo9ng & Visualiza?on. Fall 2014 Instructor: Ilia Vovsha. hgp://www.cs.columbia. W1005 Intro to CS and Programming in MATLAB Plo9ng & Visualiza?on Fall 2014 Instructor: Ilia Vovsha hgp://www.cs.columbia.edu/~vovsha/w1005 Outline Plots (2D) Plot proper?es Figures Plots (3D) 2 2D Plots

More information

DOWNLOAD OR READ : WHATS THE DIFFERENCE IN PROTESTANT AND ROMAN CATHOLIC BELIEFS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WHATS THE DIFFERENCE IN PROTESTANT AND ROMAN CATHOLIC BELIEFS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WHATS THE DIFFERENCE IN PROTESTANT AND ROMAN CATHOLIC BELIEFS PDF EBOOK EPUB MOBI Page 1 Page 2 whats the difference in protestant and roman catholic beliefs whats the difference in

More information

Graphics and plotting techniques

Graphics and plotting techniques Davies: Computer Vision, 5 th edition, online materials Matlab Tutorial 5 1 Graphics and plotting techniques 1. Introduction The purpose of this tutorial is to outline the basics of graphics and plotting

More information

Brand guide template. A few things to note: Remove this page. This is an example guideline for a made up company called ACME CO.

Brand guide template. A few things to note: Remove this page. This is an example guideline for a made up company called ACME CO. Brand guide template A few things to note: This is an example guideline for a made up company called ACME CO. Add your own images that capture the client s personality. text and colors based on branding.

More information

Publication Quality Graphics

Publication Quality Graphics Publication Quality Graphics Biochemistry Boot Camp 2018 Session #6 Nick Fitzkee nfitzkee@chemistry.msstate.edu Why Quality Graphics? Clarity of Presentation Sharp-looking Posters, Presentations, Papers

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

Web Design, 5 th Edition

Web Design, 5 th Edition Typography and Images Web Design, th Edition Chapter Objectives Explain webpage typography issues Discuss effective use of webpage images Describe image file formats Discuss how to prepare web-ready images

More information

User Guide Belltech Systems, LLC

User Guide Belltech Systems, LLC User Guide Belltech Systems, LLC http://www.belltechsystems.com May, 2006 1. Introducing Belltech CaptureXT 2. Installation and Uninstallation Installation Running the Application Uninstallation 3. User

More information

MATH 2221A Mathematics Laboratory II

MATH 2221A Mathematics Laboratory II MATH A Mathematics Laboratory II Lab Assignment 4 Name: Student ID.: In this assignment, you are asked to run MATLAB demos to see MATLAB at work. The color version of this assignment can be found in your

More information

3 x 5 CHOCOLATE RECTANGLE item number 3019

3 x 5 CHOCOLATE RECTANGLE item number 3019 for Chocolate Items If you do not use our template, let us know what type of item you are sending 3 x 5 CHOCOLATE RECTANGLE item number 3019 vector art in order to make custom chocolate. VECTOR ART usually

More information

Art Requirements for CHOCOLATE ITEMS

Art Requirements for CHOCOLATE ITEMS Art Requirements for CHOCOLATE ITEMS When you send us your art make sure to include your company name! If you do not use our template, let us know what type of item you are sending art for (chocolate,

More information

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE IMAGE EDITING

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE IMAGE EDITING EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE IMAGE EDITING The European Computer Driving Licence Foundation Ltd. Portview House Thorncastle Street Dublin 4 Ireland Tel: +

More information

QUICK GUIDE: HOW TO CREATE MEDIA FILES FOR THE ESPRECIOUS

QUICK GUIDE: HOW TO CREATE MEDIA FILES FOR THE ESPRECIOUS QUICK GUIDE: HOW TO CREATE MEDIA FILES FOR THE ESPRECIOUS This quick guide explains you in a few steps how you can create media files for the Esprecious. Appendix 1 shows how you can import the media files

More information

Adobe InDesign Notes. Adobe InDesign CS3

Adobe InDesign Notes. Adobe InDesign CS3 Adobe InDesign Notes Adobe InDesign CS3 Page 2 Introduction These notes have been put together for basic and advanced methods, features and language. I have also created notes on other Adobe products.

More information

WE NEED THE FOLLOWING ORDER INFORMATION FROM YOU

WE NEED THE FOLLOWING ORDER INFORMATION FROM YOU DATA DELIVERY TIPS High-quality printed materials are only possible if produced based on the right underlying data. To guarantee the correct and optimal import of your print data, we have compiled a list

More information

SUGAR COOKIE item number 4006

SUGAR COOKIE item number 4006 for Chocolate Items SUGAR COOKIE item number 4006 vector art in order to make custom chocolate. VECTOR ART usually looks clean and crisp at any size - zoom in or out. It can look simple or very complex

More information

Tutorial 1 Engraved Brass Plate R

Tutorial 1 Engraved Brass Plate R Getting Started With Tutorial 1 Engraved Brass Plate R4-090123 Table of Contents What is V-Carving?... 2 What the software allows you to do... 3 What file formats can be used?... 3 Getting Help... 3 Overview

More information

Data Representation From 0s and 1s to images CPSC 101

Data Representation From 0s and 1s to images CPSC 101 Data Representation From 0s and 1s to images CPSC 101 Learning Goals After the Data Representation: Images unit, you will be able to: Recognize and translate between binary and decimal numbers Define bit,

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

PC Printing Instructions

PC Printing Instructions PennDesign IT Services PC Printing Instructions Printing & Plotting Nate Cosgrove 6/12/2015 Contents Preparing Your Document... 2 Using an Illustrator AI... 2 Using an InDesign INDD... 3 Using a Photoshop

More information

Adobe EXAM - 9A Adobe InDesign CS5 ACE Exam. Buy Full Product.

Adobe EXAM - 9A Adobe InDesign CS5 ACE Exam. Buy Full Product. Adobe EXAM - 9A0-142 Adobe InDesign CS5 ACE Exam Buy Full Product http://www.examskey.com/9a0-142.html Examskey Adobe 9A0-142 exam demo product is here for you to test the quality of the product. This

More information

Experiments in Mathematical Web Animation

Experiments in Mathematical Web Animation Experiments in Mathematical Web Animation Steven Bellenot Mathematics Florida State University bellenot@math.fsu.edu http://www.math.fsu.edu/ bellenot/class/f0/web/anim.pdf Mathematics and the Web Sep,

More information

CREATING A BANNER IN PHOTOSHOP

CREATING A BANNER IN PHOTOSHOP CREATING A BANNER IN PHOTOSHOP 1 This tutorial will take you through how to create your own basic banner in Photoshop. We will go: A. Creating a background 1. Launch (Open) Photoshop CS5 The interface

More information

L Y X for many purposes

L Y X for many purposes LYX for many purposes Opportunities with LYX June 16, 2015 Outline Documents in general 1 Documents in general 2 3 4 5 LYX is useful for writing many kinds of documents Letters Reports Books can make camera-ready

More information

4 x 4 COMBO BAR with CIRCLE CENTER item number 2002

4 x 4 COMBO BAR with CIRCLE CENTER item number 2002 for Chocolate Items 4 x 4 COMBO BAR with CIRCLE CENTER item number 2002 vector art in order to make custom chocolate. VECTOR ART usually looks clean and crisp at any size - zoom in or out. It can look

More information

KillTest. 半年免费更新服务

KillTest.   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 9A0-035 Title : Adobe Illustrator CS ACE Exam Version : DEMO 1 / 7 1. Which Illustrator feature allows you to export Illustrator layers to

More information

WCSD/NUES Educational Technology Animation

WCSD/NUES Educational Technology Animation Animation verification for you and your peer reviewer Animation (Frames, Flash, or Edge) Animation: Understand and control the timeline Explain the makeup of the objects (fill and line) Import graphics

More information

Understanding file formats

Understanding file formats Understanding file formats When you save files from Elements, you need to pick a file format in the Format drop-down menu found in both the Save and Save As dialog boxes. When you choose from the different

More information

16 Sunset Hill Hattiesburg, MS

16 Sunset Hill Hattiesburg, MS 16 Sunset Hill Hattiesburg, MS 39402 601.329.6463 Mission Statement Engaging customers in your business is imperative to creating a unique and unforgettable experience. When it comes to creating a one-of-a-kind

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

ADOBE 9A Adobe Acrobat Professional 8.0 ACE.

ADOBE 9A Adobe Acrobat Professional 8.0 ACE. ADOBE Adobe Acrobat Professional 8.0 ACE http://killexams.com/exam-detail/ QUESTION: 95 You are using PDFMaker to create PDF documents. You do NOT want the PDF documents to open automatically after they

More information

Dr. Iyad Jafar. Adapted from the publisher slides

Dr. Iyad Jafar. Adapted from the publisher slides Computer Applications Lab Lab 6 Plotting Chapter 5 Sections 1,2,3,8 Dr. Iyad Jafar Adapted from the publisher slides Outline xy Plotting Functions Subplots Special Plot Types Three-Dimensional Plotting

More information

E-LEARNING FOUNDATIONS INTENSIVE. Flash, Authorware, and Other Authoring and Development Tools

E-LEARNING FOUNDATIONS INTENSIVE. Flash, Authorware, and Other Authoring and Development Tools E-LEARNING FOUNDATIONS INTENSIVE Flash, Authorware, and Other Authoring and Development Tools INTRODUCTION Harry Mellon, VP/COO USN Over 26 Years Training Development Experience Instructional Design Development

More information

Graphics #1. R Graphics Fundamentals & Scatter Plots

Graphics #1. R Graphics Fundamentals & Scatter Plots Graphics #1. R Graphics Fundamentals & Scatter Plots In this lab, you will learn how to generate customized publication-quality graphs in R. Working with R graphics can be done as a stepwise process. Rather

More information

(Printer HP LaserJet Pro Model (M125a

(Printer HP LaserJet Pro Model (M125a (Printer HP LaserJet Pro Model (M125a (Measured using ISO/IEC 24734, excludes first set of test documents. For more Normal: Up to 20 ppm Print speed black: Print, copy, scan information see hp.com/products1/iso/mmdpp/index.html.

More information

Photo Gallery. Photo Gallery. Photo Gallery Name. Photo Gallery Body Text. Images. Image Title. Page 1 of 5

Photo Gallery. Photo Gallery. Photo Gallery Name. Photo Gallery Body Text. Images. Image Title. Page 1 of 5 Name Body Text Images Image Page 1 of 5 Create a New To create a new, sign into your website. Navigate to Structure Taxonomy Image Galleries Add Term. Name Description Name Name of the gallery. Description

More information

DIRECTV Message Board

DIRECTV Message Board DIRECTV Message Board DIRECTV Message Board is an exciting new product for commercial customers. It is being shown at DIRECTV Revolution 2012 for the first time, but the Solid Signal team were lucky enough

More information

DOWNLOAD OR READ : NEW IMAGE FOR THE POLICE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : NEW IMAGE FOR THE POLICE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : NEW IMAGE FOR THE POLICE PDF EBOOK EPUB MOBI Page 1 Page 2 new image for the police new image for the pdf new image for the police Image Archive Program: The Image Archive Program maintained

More information

CMPT 165 Graphics Part 2. Nov 3 rd, 2015

CMPT 165 Graphics Part 2. Nov 3 rd, 2015 CMPT 165 Graphics Part 2 Nov 3 rd, 2015 Key concepts of Unit 5-Part 1 Image resolution Pixel, bits and bytes Colour info (intensity) vs. coordinates Colour-depth Color Dithering Compression Transparency

More information

2014 MECHANICAL SPECS

2014 MECHANICAL SPECS PRINT AD SPECS PDF Materials Ready For Print: Resolution: 300 ppi (pixels per inch) Color: CMYK Fonts: Subset Embedded 100% OPI: Do not use OPI (Open Prepress Interface). Native Files: Fonts: The native

More information

drawing tools and illustration features of PowerPoint

drawing tools and illustration features of PowerPoint drawing tools and illustration features of PowerPoint The$Harvard$Medical$School$is$accredited$by$the Accreditation$Council$for$Continuing$Medical$Education to$provide$continuing$medical$education$for$physicians.$

More information

fplot Syntax Description Examples Plot Symbolic Expression Plot symbolic expression or function fplot(f) fplot(f,[xmin xmax])

fplot Syntax Description Examples Plot Symbolic Expression Plot symbolic expression or function fplot(f) fplot(f,[xmin xmax]) fplot Plot symbolic expression or function Syntax fplot(f) fplot(f,[xmin xmax]) fplot(xt,yt) fplot(xt,yt,[tmin tmax]) fplot(,linespec) fplot(,name,value) fplot(ax, ) fp = fplot( ) Description fplot(f)

More information

Name: Math Analytic Geometry and Calculus III - Spring Matlab Project - due on Wednesday, March 30

Name: Math Analytic Geometry and Calculus III - Spring Matlab Project - due on Wednesday, March 30 Name: Math 275 - Analytic Geometry and Calculus III - Spring 2011 Solve the following problems: Matlab Project - due on Wednesday, March 30 (Section 14.1 # 30) Use Matlab to graph the curve given by the

More information

Kiosk Release Station User Guide Version 4

Kiosk Release Station User Guide Version 4 Kiosk Release Station User Guide Version 4 eprintit Campus Solutions a division of St. Joseph Communications Page 1 Table of contents 1 Print Your Documents... 3 USB or Memory Card... 3 Cloud Files...

More information

Frequently Asked Questions about Text and Graphics

Frequently Asked Questions about Text and Graphics 1 Frequently Asked Questions about Text and Graphics 1. What is a font? A font is a set of printable or displayable text characters that are in a specific style and size. The type design for a set of fonts

More information

Topic 0b Graphics for Science & Engineering

Topic 0b Graphics for Science & Engineering Course Instructor Dr. Raymond C. Rumpf Office: A 337 Phone: (915) 747 6958 E Mail: rcrumpf@utep.edu Topic 0b Graphics for Science & Engineering EE 4386/5301 Computational Methods in EE Outline What are

More information

Supplementary Materials of canvasdesigner

Supplementary Materials of canvasdesigner Supplementary Materials of canvasdesigner Contents Web URLs to tools and online user guide... 2 SVG (Scalable Vector Graphics) files generated by canvasxpress... 3 Layout multiple SVG files by canvasdesigner...

More information

Tutorial Tracing and Machining Images

Tutorial Tracing and Machining Images Getting Started With Tutorial Tracing and Machining Images VCarve Pro Disclaimer All CNC machines (routing, engraving, and milling) are potentially dangerous and because Vectric Ltd has no control over

More information

ViewONE User Manual !"##$$$

ViewONE User Manual !##$$$ ViewONE User Manual!"##$$$ Contents Introduction 3 Features 4 The User interface 5 Toolbars 6 Menus 19 The Keyboard 29 ViewONE is a Java applet that extends your web browser so that you can view, zoom,

More information

Bricks'n'Tiles. Tutorial Creating a brick file and texturing a medieval tower. Easy Creation of Architectural Textures.

Bricks'n'Tiles. Tutorial Creating a brick file and texturing a medieval tower. Easy Creation of Architectural Textures. Bricks'n'Tiles Easy Creation of Architectural Textures www.bricksntiles.com Tutorial Creating a brick file and texturing a medieval tower 1 Introduction Welcome this this Bricks'n'Tiles Tutorial. Brick'n'Tiles

More information

Designing effective scientific figures Introduction to Inkscape to finalise figures

Designing effective scientific figures Introduction to Inkscape to finalise figures Designing effective scientific figures Introduction to Inkscape to finalise figures Aiora Zabala, based on slides by Simon Andrews and Boo Virk Please, find and click on this icon on your computer: What

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

creating figures Research Imaging Solutions

creating figures Research Imaging Solutions Research Imaging Solutions it.med.harvard.edu creating figures a basic recipe for building scientific figures using Photoshop and PowerPoint grants journals posters presentations Research Imaging Solutions

More information

INSTRUCTIONS FOR CREATING PDF/A-COMPLIANT FILES FOR ONLINE PUBLISHING AT THE TU BERLIN.

INSTRUCTIONS FOR CREATING PDF/A-COMPLIANT FILES FOR ONLINE PUBLISHING AT THE TU BERLIN. INSTRUCTIONS FOR CREATING PDF/A-COMPLIANT FILES FOR ONLINE PUBLISHING AT THE TU BERLIN. We only accept PDF documents meeting the criteria for one of following archiving formats: PDF/A-1b:2005 (RGB) or

More information

Lecture #3. MATLAB image processing (cont.) Histograms Mathematics of image processing Geometric transforms Image Warping.

Lecture #3. MATLAB image processing (cont.) Histograms Mathematics of image processing Geometric transforms Image Warping. Lecture #3 MATLAB image processing (cont.) vectorization Histograms Mathematics of image processing Geometric transforms Image Warping Pixel Indexing in MATLAB For loops in Matlab are inefficient, whereas

More information

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and save it directly into Microsoft Word (pg 8 9) 4. How to

More information

INFORMATION FOR AUTHORS

INFORMATION FOR AUTHORS INFORMATION FOR AUTHORS GENERAL GUIDELINES All accepted manuscripts must be accompanied by a signed copyright transfer form as they are transmitted to the University of Chicago Press (UCP) for publication.

More information

Chapter 1 Introduction to Photoshop CS3 1. Exploring the New Interface Opening an Existing File... 24

Chapter 1 Introduction to Photoshop CS3 1. Exploring the New Interface Opening an Existing File... 24 CONTENTS Chapter 1 Introduction to Photoshop CS3 1 Exploring the New Interface... 4 Title Bar...4 Menu Bar...5 Options Bar...5 Document Window...6 The Toolbox...7 All New Tabbed Palettes...18 Opening an

More information

PopInGraphics.com. 285 Cowbridge Road West, Cardiff, CF5 5TD

PopInGraphics.com. 285 Cowbridge Road West, Cardiff, CF5 5TD These artwork guidelines are published to allow our clients to supply us with artwork that will be reproduced to the highest standards and to minimise problems encountered during conversion / production.

More information

How to Prepare Your Cards for Press Using Scribus

How to Prepare Your Cards for Press Using Scribus How to Prepare Your Cards for Press Using Scribus This Tutorial is Divided into Sections: 1. What is Scribus? 2. What Do I Need to Get Started? 3. Setting Up Your Scribus Document 4. Creating Master Pages

More information

creating figures Research Imaging Solutions

creating figures Research Imaging Solutions Research Imaging Solutions goo.gl/yp8j3c creating figures a basic recipe for building scientific figures using Photoshop and PowerPoint grants journals posters presentations Research Imaging Solutions

More information

21st-Century Image and Data Exchange Standards

21st-Century Image and Data Exchange Standards Course IN22-1 21st-Century Image and Data Exchange Standards Peter Sheerin Dec 3, 2003 02:00 PM 03:30 PM 1 2 Why do Formats Matter? Image quality Interoperability Capabilities/features Alpha channel/transparency

More information

Posters, Flyers and Programme or Web Image content will look much better (and be printed more easily) if some basic design guidelines are followed.

Posters, Flyers and Programme or Web Image content will look much better (and be printed more easily) if some basic design guidelines are followed. This Guide Posters, Flyers and Programme or Web Image content will look much better (and be printed more easily) if some basic design guidelines are followed. The aim is to make help produce good quality

More information

HOW TO PREPARE PROJECT / PRINTING MATERIALS. Offset / Digital printing

HOW TO PREPARE PROJECT / PRINTING MATERIALS. Offset / Digital printing HOW TO PREPARE PROJECT / PRINTING MATERIALS Offset / Digital printing Works for printing are accepted in vector formats or as bitmaps. Accepted file formats: Vector files (they ensure the highest quality

More information

manual 3D STELL WERK.COM

manual 3D STELL WERK.COM manual 3D STELL WERK.COM CONTENTS MY ACCOUNT 03 LOGIN 03 PASSWORD FORGOTTEN 03 START SUMMARY 03 UPDATE TO ANOTHER PACKAGE 04 CHANGE PASSWORD AND REGISTRATION DATA 04 CANCEL CONTRACT 06 IMAGES 07 SUMMARY

More information

I give you the opportunity to learn from my experience on how to work professionally as a,

I give you the opportunity to learn from my experience on how to work professionally as a, ABOUT ME Hi! My name is Irfan and I am a well experienced multimedia design professional for over 13 years of work experience working as a Communication Visual Designer with leading Gaming, Broadcasting

More information

Page 1 of 16 CONTENTS:

Page 1 of 16 CONTENTS: Page 1 of 16 CONTENTS: HOME-BOX -- (PG.2) o PROPERTY OWNERSHIP o ADDRESS SEARCH o I WANT TO AERIAL IMAGERY AND BASE MAPS -- (PG.2) o IMAGERY WITH LABELS ON/OFF o TOPOGRAPHY ON/OFF o TRANSPARENCY ZOOM IN

More information

Author Guide. Thieme Medical Publishers Inc. Editorial Department 333 Seventh Avenue New York, New York Important Notes:

Author Guide. Thieme Medical Publishers Inc. Editorial Department 333 Seventh Avenue New York, New York Important Notes: Author Guide Thieme Medical Publishers Inc. Editorial Department 333 Seventh Avenue New York, New York 10001 Important Notes: Your Contributor Agreement with Thieme states the maximum page length allowance

More information

Digital Graphics Primer

Digital Graphics Primer Vector Graphics, Raster Graphics, and Their Associated Image File Types Ed Brandt AI PSD BMP EPS GIF JPG PDF PNG SVG TIF Vector Graphics, Raster Graphics, and Their Associated Image File Types Introduction

More information

ExpertCAD 2014 Release Summary October 2014

ExpertCAD 2014 Release Summary October 2014 Overview ExpertCAD 2014 Release Summary October 2014 ExpertCAD 2014 is major release that includes enhancements as well as customer requested software modifications and corrections. This release summary

More information

Welcome to Desktop Publishing with InDesign!

Welcome to Desktop Publishing with InDesign! Welcome to Desktop Publishing with InDesign! What We ll Cover Today What is InDesign? Preparing a print project Creating a new document InDesign interface Working with layers and links Formatting and managing

More information

Word-to-L A TEX specification

Word-to-L A TEX specification Word-to-L A TEX specification Michal Kebrt April 19, 2005 Contents 1 Introduction 1 1.1 Text processors................................... 2 1.2 TEX and L A TEX................................... 2 1.3

More information

Scientific Illustrations by H. Adam Steinberg

Scientific Illustrations by H. Adam Steinberg Scientific Illustrations 101 2007 by H. Adam Steinberg Intestine diet Enterocytes PL E Macrophage scavenger receptors modified LDL NP1L1 PL ABA1 AB G5/G8 apical ABA1 Blood basolateral Tangier disease HDL

More information

Transient Stability Analysis with PowerWorld Simulator

Transient Stability Analysis with PowerWorld Simulator Transient Stability Analysis with PowerWorld Simulator T8: Viewing Transient Stability Results 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com

More information

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