Topic 0b Graphics for Science & Engineering

Size: px
Start display at page:

Download "Topic 0b Graphics for Science & Engineering"

Transcription

1 Course Instructor Dr. Raymond C. Rumpf Office: A 337 Phone: (915) E Mail: rcrumpf@utep.edu Topic 0b Graphics for Science & Engineering EE 4386/5301 Computational Methods in EE Outline What are good graphics? Typefaces & Fonts Pictures Labels Color Layouts Graphics Software Topic 0b Graphics 2 1

2 What are Good Graphics? Topic 0b Graphics 3 1D Graphics BAD FIGURE! Should not show windows background. Gray background is ugly and not necessary. Topic 0b Graphics 4 2

3 1D Graphics STILL BAD FIGURE! Lines too thin. X axis limits producing white space Y axis scaling is poor Topic 0b Graphics 5 1D Graphics STILL BAD FIGURE! Not enough points along x to get a smooth line. Axes not labeled Topic 0b Graphics 6 3

4 1D Graphics STILL BAD FIGURE! Fonts are too small. Might want a little more space on the y axis Need labels Topic 0b Graphics 7 1D Graphics STILL BAD FIGURE! f(x) label on y axis might look silly rotated Not enough tick marks along axes Topic 0b Graphics 8 4

5 1D Graphics f(x) Angle, STILL BAD FIGURE! Inconsistent number of digits on y axis Topic 0b Graphics 9 1D Graphics f(x) Angle, STILL BAD FIGURE! The two lines cannot be distinguished Topic 0b Graphics 10 5

6 1D Graphics 1.0 Color Figure Color Figure Displayed in b/w 0.5 f(x) Angle, STILL BAD FIGURE! Two lines should be labeled. Red/blue cannot be distinguished when printed in b/w Topic 0b Graphics 11 1D Graphics cos( ) sin( ) Color Figure Color Figure Displayed in b/w f(x) Angle, STILL BAD FIGURE! Legend is covering the data Topic 0b Graphics 12 6

7 1D Graphics Color Figure cos( ) sin( ) Color Figure Displayed in b/w f(x) Angle, STILL BAD FIGURE! Equations and math symbols do not have correct formatting. Topic 0b Graphics 13 1D Graphics Color Figure Color Figure Displayed in b/w GOOD FIGURE! Topic 0b Graphics 14 7

8 1D Graphics Be very careful about copy/pasting your diagrams!! It is easy to lose resolution and produce pixelated images. Topic 0b Graphics cos( ) sin( ) f(x) Angle, Topic 0b Graphics 16 8

9 Full Page Diagrams are Usually BAD Diagrams should be made as small as possible so that they are still easily viewed and understandable cos( ) sin( ) f(x) Angle, (rad) Topic 0b Graphics 17 1D Graphics % CALCULATE DATA phi = linspace(0,2*pi,1000); f1 = cos(phi); f2 = sin(phi); % OPEN FIGURE WINDOW figure('color','w'); % PLOT DATA h = plot(phi,f1,'-b','linewidth',3); hold on; plot(phi,f2,'--r','linewidth',3); hold off; % SET AXIS LIMITS xlim([0 2*pi]); ylim([ ]); % MAKE LINES THICK AND FONTS BIGGER h2 = get(h,'parent'); set(h2,'linewidth',3,'fontsize',18); % SET TICK MARKS L = {'-1.0' '-0.5' '0' '0.5' '1.0'}; set(h2,'xtick',[0:6],'ytick',[-1:0.5:1],'yticklabel',l); % LABEL AXES xlabel('$ \textrm{angle, } \theta $','Interpreter','latex'); ylabel('$ f(x) $','Interpreter','latex'); % ADD LEGEND h = legend('cos(\theta)','sin(\theta)','location','northoutside'); set(h,'linewidth',2); Topic 0b Graphics 18 9

10 2D Graphics BAD FIGURE! Color scale cannot be interpreted. Topic 0b Graphics 19 2D Graphics Solution #1: Print in color Solution #2: Use grayscale coloring Solution #3: Use special colormaps STILL BAD FIGURE! Colorbar not provided. Line still not visible. Still no axis labeling. Topic 0b Graphics 20 10

11 2D Graphics STILL BAD FIGURE! Font size is too small. Line probably too thin. No axis labeling. Topic 0b Graphics 21 2D Graphics STILL BAD FIGURE! Line difficult to see against dark background. Inconsistent number of digits on colorbar. x and y axis labels should be done as math symbols. Topic 0b Graphics 22 11

12 2D Graphics y axis GOOD FIGURE! x axis Topic 0b Graphics 23 Horizontal Vs. Vertical f(x) cos( ) sin( ) Angle, (rad) 1.0 cos( ) sin( ) f(x) Angle, (rad) Unless you have a special reason to do otherwise, horizontal graphics are preferred. Topic 0b Graphics Slide 24 12

13 General Advice for Diagrams Diagrams should always be as small as possible so that they are still easily read and interpreted. Bigger is not better! Ensure diagram is clear, easily read, and easily interpreted. Label everything. Fonts and lines should be thick enough to be easily seen yet not awkwardly large. There should be a comfortable amount of white space separating entities in your diagram without being awkwardly large. Good diagrams take a lot of work to produce. Diagrams should stay within the same margins as the text. Diagrams should not be pixelated. Your diagrams should be of professional quality and publication ready. Topic 0b Graphics Slide 25 Typefaces & Fonts Topic 0b Graphics 26 13

14 Typeface Vs. Fonts Fonts A complete set of characters that share a common weight, width, and style. Typeface A collection of fonts sharing an overall appearance that are designed to be used together. Typeface 1 Typeface 2 Font 1a Font 1b Font 1c Font 1d Font 1e Font 1f Font 2a Font 2b Font 2c Font 2d Font 2e Font 2f Topic 0b Graphics 27 Typefaces Serif Strokes help guide eyes along sentences. Sans Serif No strokes. More pleasing to eye. DISPLAY Large titles. Decorative. Script Implies handwritten and personal. Dingbat Special symbols. Topic 0b Graphics Slide 28 14

15 Serifs Serifs are tails or decorative structures at the ends of the strokes of letters. Serif Fonts Serif Sans Serif Fonts Sans Serif Serifs guide the eyes making text easier to read. Used mostly for body text where many lines must be read. Draws attention. More decorative. May be overwhelming as a title or label font. Simpler and more legible. Better looking when scaled large. Should be your go to style, except for body text. Topic 0b Graphics 29 General Rules Do not use too many typefaces. Use well contrasting colors. LIMIT USE OF DISPLAY FONTS. Make your text easily read and scannable. Use bold headings and focus points to organize. Don t distort typefaces. This includes not using the bold and italics buttons! Topic 0b Graphics Slide 30 15

16 Equations In math equations, only variables are ever to be italicized. Variables that are upper case Greek letters are not capitalized. Incorrect Formatting Correct Formatting Why? cos θ cos cos( ).A Pavg cos cos cos A P avg Variable should be italicized. The function should not be italicized. Parentheses are not correct. Dot products should have a large dot. avg is text and should not be italicized. Use the correct symbol for the operation! ab a b a b a b a b a b Topic 0b Graphics 31 Pictures Topic 0b Graphics 32 16

17 NO PIXELIZATION!!!!!!! Always ensure your graphics have sufficient resolution to avoid pixelization. Topic 0b Graphics 33 Engineer Contrast (1 of 2) Your eyes are drawn to contrast. Topic 0b Graphics 34 17

18 Engineer Contrast (2 of 2) Design the contrast in your pictures to keep attention on what is important. There are other techniques for drawing attention to the object(s) of interest. This is just one and probably not the best. Topic 0b Graphics 35 Labels Topic 0b Graphics 36 18

19 Problem with High Contrast Diagrams Parabolic dish antenna Parabolic dish antenna Neither dark or light lines work well as labels in this picture. Topic 0b Graphics 37 A Solution Dark lines with a light outline are good way to label high contrast diagrams. Parabolic dish antenna Topic 0b Graphics 38 19

20 Color Topic 0b Graphics 39 Theory Colors have an extraordinary ability to influence mood, emotions, and perceptions. They can attract attention and even convey cultural and personal meaning. Topic 0b Graphics Slide 40 20

21 Color Wheels All about mixing light. Used for graphics on a computer screen. All about mixing pigments. Used for printed graphics. Topic 0b Graphics Slide 41 Choosing Colors Monochromatic various shades, tones, or tints of one color. This type of scheme is more subtle and conservative Analogous hues that are side by side on the color wheel. Easy and versatile to use. Complementary opposites on the color wheel. Complementary colors are high contrast and highintensity, but can be difficult to apply in a balanced, harmonious way. Split Complementary any color on the color wheel plus the two that flank its complement. This scheme still has strong visual contrast, but is less jarring than a complementary color combination Triadic any three colors that are evenly spaced on the color wheel. Tetradic/Double Complementary two complementary pairs. This scheme is very eye catching, but may be even harder to apply than one pair of complementary colors, since more colors are more difficult to balance. Topic 0b Graphics Slide 42 21

22 Layouts Topic 0b Graphics 43 Layout Must Convey Meaning Even though the text is not readable (bad), the layout immediately conveys there is a step by step process being conveyed. Topic 0b Graphics Slide 44 22

23 Rule of Thirds Divides a layout into three rows and three columns. Creates visual interest without overcrowding. Either place elements in the boxes or at the locations of the stars. Topic 0b Graphics Slide 45 Graphics Software Topic 0b Graphics 46 23

24 Manipulating Photos & Images Commercial King Adobe Photoshop Open Source King GIMP Topic 0b Graphics Slide 47 Vector Graphics Commercial King Adobe Illustrator Open Source King Inkscape Consider using a vector graphics package to create, edit, or annotate diagrams. Topic 0b Graphics Slide 48 24

25 3D Modeling & Animation Commercial King Engineering CAD SolidWorks Open Source King Engineering CAD FreeCAD Artistic Maya Artistic Blender Topic 0b Graphics Slide 49 Scientific Data Visualization Commercial King MATLAB* Open Source King Octave** * MATLAB does not produce the best quality graphics, but is arguably the best for the ease and number of ways to visualize data. ** Octave is not the best open source scientific visualization package, but it wins here due to being the closest clone of MATLAB. Topic 0b Graphics Slide 50 25

26 Posters, Pamphlets, Etc. Commercial King Adobe InDesign Open Source King Scribus Microsoft Publisher DO NOT EVER USE POWERPOINT FOR POSTERS!!!!!! Topic 0b Graphics Slide 51 Text Documents Commercial King Microsoft Word Open Source King LibreOffice Topic 0b Graphics Slide 52 26

C L A S S 2 T Y P O G R A P H Y. FOUNDATIONS OF GRAPHIC DESIGN MW 8 a.m.

C L A S S 2 T Y P O G R A P H Y. FOUNDATIONS OF GRAPHIC DESIGN MW 8 a.m. C L A S S 2 T Y P O G R A P H Y FOUNDATIONS OF GRAPHIC DESIGN MW 8 a.m. Typography Typography separates graphic design from visual art. In every piece of type you see, somebody has considered how the letters,

More information

Essentials for Text and Graphic Layout

Essentials for Text and Graphic Layout 5. Essentials for Text and Graphic Layout This section provides specific text and graphic guidelines that will help create a unified series of interpretive signs around Humboldt Bay. Text refers to the

More information

Unit 4. Multimedia Element: Text. Introduction to Multimedia Semester 2

Unit 4. Multimedia Element: Text. Introduction to Multimedia Semester 2 Unit 4 Multimedia Element: Text 2017-18 Semester 2 Unit Outline In this unit, we will learn Fonts Typography Serif, Sans Serif, Decorative Monospaced vs. Proportional Style Size Spacing Color Alignment

More information

Objective 203 Apply production methods to plan and create advanced digital media graphics projects. Course Weight : 25%

Objective 203 Apply production methods to plan and create advanced digital media graphics projects. Course Weight : 25% Objective 203 Apply production methods to plan and create advanced digital media graphics projects. Course Weight : 25% Objective 203 - Graphics Objectives are broken down into three sub-objectives : pre-production,

More information

TYPOGRAPHY. ascender arm (as on the capital T) descender bar (as on the capital H) counter ear (as on the lower case g and r)

TYPOGRAPHY. ascender arm (as on the capital T) descender bar (as on the capital H) counter ear (as on the lower case g and r) TYPOGRAPHY Parts of letters: base line x-height ascender arm (as on the capital T) descender bar (as on the capital H) extenders bowl counter ear (as on the lower case g and r) serif stroke tail (as on

More information

Format and Layout 8/31/2012. Using Visuals to Inform and Persuade

Format and Layout 8/31/2012. Using Visuals to Inform and Persuade ENG112 Prof. Katherine Delhagen *No sound read every slide of the presentation carefully Using Visuals to Inform and Persuade Effective technical communication integrates textual and visual elements: o

More information

Designing Research Posters. College of Art and Design Chris Jackson, Associate Dean Keli DiRisio, Assistant Professor

Designing Research Posters. College of Art and Design Chris Jackson, Associate Dean Keli DiRisio, Assistant Professor Designing Research Posters College of Art and Design Chris Jackson, Associate Dean Keli DiRisio, Assistant Professor Size and Orientation If you are NOT using the poster template: Start is with a 48"

More information

เพ มภาพตามเน อหาของแต ละบท. Basic of Web Design by Assoc. Prof. Churee Techawut and Dr. Ratsameetip Wita adapted into English by Dr.

เพ มภาพตามเน อหาของแต ละบท. Basic of Web Design by Assoc. Prof. Churee Techawut and Dr. Ratsameetip Wita adapted into English by Dr. เพ มภาพตามเน อหาของแต ละบท http://highlevelstudios.com/images/basic_design.jpg Basic of Web Design by Assoc. Prof. Churee Techawut and Dr. Ratsameetip Wita adapted into English by Dr. Prakarn Unachak 1.

More information

ABOUT RESEARCH POSTERS

ABOUT RESEARCH POSTERS ABOUT RESEARCH POSTERS Research posters summarize information or research concisely and attractively to help publicize it and generate discussion. The poster is usually a mixture of a brief text mixed

More information

Develop great research posters using Microsoft PowerPoint

Develop great research posters using Microsoft PowerPoint www.qps.qut.edu.au Develop great research posters using Microsoft PowerPoint A step-by-step guide QUT PRINTING SERVICES A step-by-step guide This step-by-step guide will assist you to understand the purpose

More information

Microsoft PowerPoint 2013 Module

Microsoft PowerPoint 2013 Module Microsoft PowerPoint 2013 Module Signing your name below means the work you are turning in is your own work and you haven t given your work to anyone else. Name Period Seat Completed Activity Points Poss.

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

PLANNING. CAEL Networked Worlds WEEK 2

PLANNING. CAEL Networked Worlds WEEK 2 PLANNING CAEL5045 - Networked Worlds WEEK 2 WEEK 2 CHOOSING COLOURS CHOOSING FONTS COLLECTING CONTENT PLANNING STRUCTURE WIREFRAMES + MOCKUPS Every colour, including black and white, has implications for

More information

Typesetting Tips. Put your best type forward.

Typesetting Tips. Put your best type forward. Typesetting Tips Put your best type forward. Do you want your audience to read your document? Improve your chances by making your article easy to read. Make the document difficult to read and To learn

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

2

2 1 2 3 4 5 Miracle Lawn Care 6 Lovely Lawn Care 7 8 9 Graphics Research 10 Question 1 11 Text vs. Graphic Question 2 12 13 14 Same Information But Different Emotional Responses Why Should You Care? 15 Graphic

More information

Digital Signage Content Creation Guidelines

Digital Signage Content Creation Guidelines A NEW era of Digital Advertising 2017 Digital Signage Content Creation Guidelines DIGITAL BILLBOARD CONTENTS GUIDELINES & TIPS Introdution 01 Intro Maximize the Potential Text, graphics and backgrounds

More information

USE OF AUDIO VISUAL AIDS. Shital Moktan

USE OF AUDIO VISUAL AIDS. Shital Moktan 1 USE OF AUDIO VISUAL AIDS Shital Moktan 2 I hear, I forget I see, I remember I do, I understand Audio Visual Aids 3 Any device which can be used to make the learning more effective more concrete more

More information

Basic PowerPoint Guidelines. Some tips to make your presentations presentable!

Basic PowerPoint Guidelines. Some tips to make your presentations presentable! Basic PowerPoint Guidelines Some tips to make your presentations presentable! Basic Rules - Fonts No more than 2 fonts per slideshow Use San Serif font (like Arial) Easier to read than serif fonts At least

More information

Developing successful posters using Microsoft PowerPoint

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

More information

> objective(s): Students will create a text-only design in either Adobe Illustrator or Photoshop

> objective(s): Students will create a text-only design in either Adobe Illustrator or Photoshop > word art > objective(s): Students will create a text-only design in either Adobe Illustrator or Photoshop > curricular focus: This lesson emphasizes the creative use of typography as the dominant artistic

More information

CREATE AN EFFECTIVE POSTER

CREATE AN EFFECTIVE POSTER CREATE AN EFFECTIVE POSTER Will G. Hopkins 1997 [This document was created originally as a multi-panel poster. The text under each heading and the figures were on separate panels, as illustrated in this

More information

Slide 1. Slide 2. Slide 3. Consistency. Consistency

Slide 1. Slide 2. Slide 3. Consistency. Consistency Slide 1 Designing Effective Poster Presentations Reid Sczerba Center for Educational Resources, JHU This presentation will discuss how to Design Effective Poster Presentations with an understanding of

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

Typographic hierarchy: How to prioritize information

Typographic hierarchy: How to prioritize information New York City College of Technology, CUNY Department of Communication Design Typographic Design III Instructor: Professor Childers pchilders1@mac.com Typographic hierarchy: How to prioritize information

More information

Making a Great Poster. A Great Poster is:

Making a Great Poster. A Great Poster is: Making a Great Poster Marilee P. Ogren PhD Ogren@mit.edu Readable A Great Poster is: Unreadable = grammatical problems, complex, passive sentences, misspellings Legible Illegible = small font, fancy font,

More information

The Visual Scientist Presents Poster Design

The Visual Scientist Presents Poster Design The Visual Scientist Presents Poster Design layout fonts science! Hailpern & Danilevsky www.thevisualscientist.com Topics Covered This is a how-to-guide for effectively presenting scientific work in the

More information

Individual Test Item Specifications

Individual Test Item Specifications Individual Test Item Specifications 8209540- Digital Design 4 2015 The contents of this document were developed under a grant from the United States Department of Education. However, the content does not

More information

Font Basics. Descender. Serif. With strokes on the extremities of the letters. T Script. Sans-Serif. No strokes on the end of the letters

Font Basics. Descender. Serif. With strokes on the extremities of the letters. T Script. Sans-Serif. No strokes on the end of the letters Font Basics Ascender Font Size d p x A X-height Cap height Counter The white space within letters Descender Bar A Serif With strokes on the extremities of the letters. T A Sans-Serif No strokes on the

More information

Graphing Interface Overview

Graphing Interface Overview Graphing Interface Overview Note: This document is a reference for using JFree Charts. JFree Charts is m-power s legacy graphing solution, and has been deprecated. JFree Charts have been replace with Fusion

More information

Graphic Design Tips for PowerPoint

Graphic Design Tips for PowerPoint Graphic Design Tips for PowerPoint And Other Pubs Environmental Interpretation S.K. Jacobson Topics Color and contrast Lettering size and case combinations Lettering styles and fonts Editing text Layout

More information

The following slides present guidelines and suggestions for the use of fonts, colors, and graphics when preparing PowerPoint presentations.

The following slides present guidelines and suggestions for the use of fonts, colors, and graphics when preparing PowerPoint presentations. PowerPoint Presentation Guidelines The following slides present guidelines and suggestions for the use of fonts, colors, and graphics when preparing PowerPoint presentations. This media (PPT) is designed

More information

Multimedia for the Web: Creating Digital Excitement. Multimedia Element Text

Multimedia for the Web: Creating Digital Excitement. Multimedia Element Text : Creating Digital Excitement Multimedia Element Text Chapter Concepts Discuss Fonts Understand Fonts Define Cascading Style Sheets (CSS) Explain Additional Options for Implementing Text on the Web Chapter

More information

Accessible Documents & Presentations. By Amy Maes, DNOM

Accessible Documents & Presentations. By Amy Maes, DNOM Accessible Documents & Presentations By Amy Maes, DNOM 1 Overview Accessibility: What am I required to do? Disability Characteristics Creating an Accessible Word Document & PowerPoint Presentation v2010

More information

UNIVERSITY HOUSING COMMU- NICATION GUIDE TO DESIGN

UNIVERSITY HOUSING COMMU- NICATION GUIDE TO DESIGN UNIVERSITY HOUSING COMMU- NICATION GUIDE TO DESIGN INTRODUCTION Hello and welcome to the University Housing Communication Guide to Design! In this book, you will find various guides to help you enhance

More information

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS

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

More information

Text Topics. Human reading process Using Text in Interaction Design

Text Topics. Human reading process Using Text in Interaction Design Text SWEN-444 Text Topics Human reading process Using Text in Interaction Design Humans and Text the Reading Process Saccades quick, jerky eye movements forward 8-10 letters at a time plus CR/LF to the

More information

VOICE OF TYPE LECTURE 1

VOICE OF TYPE LECTURE 1 VOICE OF TYPE LECTURE 1 TYPOGRAPHY II COUNTY COLLEGE OF MORRIS PROFESSOR GAYLE REMBOLD FURBERT VOICE OF TYPE As you look at typefaces, analyze their forms, learn their history and learn how to use them

More information

Part 1 The Elements of Design. Lines

Part 1 The Elements of Design. Lines Part 1 The Elements of Design There are seven elements of graphic design that are the starting point of your design ideas: Line, Shape, Texture, Space, Size, Value and Color. Each of these elements is

More information

PowerPoint Unit 1 Getting Started

PowerPoint Unit 1 Getting Started Beginning a presentation PowerPoint Unit 1 Getting Started PowerPoint is commonly used by presenters as a digital aid when presenting their topic to an audience. Many presenters often forget that they

More information

User-Centered Website Development: A Human- Computer Interaction Approach

User-Centered Website Development: A Human- Computer Interaction Approach User-Centered Website Development: A Human- Computer Interaction Approach Daniel D. McCracken City College of New York Rosalee J. Wolfe DePaul University With a foreword by: Jared M. Spool, Founding Principal,

More information

Multimedia Design Principles. Darnell Chance August 2005

Multimedia Design Principles. Darnell Chance August 2005 Multimedia Design Principles Darnell Chance August 2005 Home Page Things To Consider Organization Story Board Organization The 3 C s Alignment Proximity Tips/ Techs White Space Contrast Rule of Thumb Typography

More information

Choose a title that captures the interest of an audience and orients the audience to the poster s content.

Choose a title that captures the interest of an audience and orients the audience to the poster s content. Poster presentations are a fun way to discuss research with interested parties. The audience at a conference moves through the poster displays to inquire and learn about the information presented on the

More information

Poster Instructions OUHSC College of Allied Health Office of Academic and Student Services AHB 1009 /

Poster Instructions OUHSC College of Allied Health Office of Academic and Student Services AHB 1009 / Poster Instructions OUHSC College of Allied Health Office of Academic and Student Services AHB 1009 / 405.271.6588 Please read this document carefully to help save you time and frustration. The College

More information

INTRODUCTION TO TYPOGRAPHY DESIGN

INTRODUCTION TO TYPOGRAPHY DESIGN INTRODUCTION TO TYPOGRAPHY DESIGN Goals of typographic design Typography plays an important role in how audiences perceive your document and its information. Good design is about capturing your audience

More information

Projected Message Design Principles

Projected Message Design Principles Projected Message Design Principles General Message Display Guidelines [G] G1. Screen display should follow the horizontal-vertical and left-right organization that is common to the culture of the intended

More information

PowerPoint Unit 1 Getting Started

PowerPoint Unit 1 Getting Started Beginning a presentation PowerPoint Unit 1 Getting Started PowerPoint is commonly used by presenters as a digital aid when presenting their topic to an audience. Many presenters often forget that they

More information

Adobe Photoshop CS Design Professional PLACING TYPE IN AN IMAGE

Adobe Photoshop CS Design Professional PLACING TYPE IN AN IMAGE Adobe Photoshop CS Design Professional PLACING TYPE IN AN IMAGE Chapter Lessons Learn about type and how it is created Change spacing and adjust baseline shift Use the Drop Shadow style Apply anti-aliasing

More information

Guidelines to Creating a PowerPoint Presentation. Things you should and should not do!

Guidelines to Creating a PowerPoint Presentation. Things you should and should not do! Guidelines to Creating a PowerPoint Presentation. Things you should and should not do! Colors Text should stand out from the background, but not contrast too highly. Colors should fit together in a recognizable

More information

Making Your PowerPoint Presentations Accessible

Making Your PowerPoint Presentations Accessible Making Your PowerPoint Presentations Accessible Montclair State University is committed to making our digital content accessible to people with disabilities (required by Section 508). This document will

More information

Design Principles. Advanced Higher Graphic Presentation. Professional Graphic Presentations by kind permission of

Design Principles. Advanced Higher Graphic Presentation. Professional Graphic Presentations by kind permission of Design Principles Advanced Higher Graphic Presentation Professional Graphic Presentations by kind permission of Design Principles:- Balance Balance in Composition Three different types of balance :- *

More information

Graphic Design Starter Pack

Graphic Design Starter Pack Graphic Design Starter Pack Graphic Design Contact Us// E-mail: graphic.design@shawacademy.com www.shawacademy.com Hello This Starter Pack aims to give you a better understanding of what Graphic Design

More information

Creating an Accessible Microsoft Word document

Creating an Accessible Microsoft Word document Creating an Accessible Microsoft Word document Use Built-in Formatting Styles Using built-in formatting styles could be the single most important step in making documents accessible. Built-in formatting

More information

ONE K CREATIVE. tools for social impact storytelling: CREATING A CONSISTENT BRand

ONE K CREATIVE. tools for social impact storytelling: CREATING A CONSISTENT BRand ONE K CREATIVE tools for social impact storytelling: CREATING A CONSISTENT BRand key elements to define for brand consistency DEFINING THE BASIC ELEMENTS OF YOUR BRAND ALLOWS YOUR TEAM - STAFF, BOARD MEMBERS,

More information

Creating Scientific Posters

Creating Scientific Posters Creating Scientific Posters By Lana K. Johnson lanakoepke.wordpress.com Justin McMechan University of Nebraska-Lincoln Poster presentation process Planning Write content Gather images Design Review lanakoepke.wordpress.com

More information

Digital Design: How to disseminate ideas, research and good practice in a visually stimulating way. Dawne Bell December 2015

Digital Design: How to disseminate ideas, research and good practice in a visually stimulating way. Dawne Bell December 2015 Digital Design: How to disseminate ideas, research and good practice in a visually stimulating way. Dawne Bell December 2015 This workshop has been devised as a direct result of feedback by colleagues

More information

Knightswood Secondary School. Graphic Communication. Desktop Publishing otes. Auto Tracing

Knightswood Secondary School. Graphic Communication. Desktop Publishing otes. Auto Tracing Auto Tracing The process of converting a bit mapped image into a vector image. In a bit-mapped image, each object is represented by a pattern of dots, while in a vector image every object is defined geometrically.

More information

Putting type on a page without incorporating typographic principles is merely word processing. Terry Rydberg, Author Exploring InDesign 3

Putting type on a page without incorporating typographic principles is merely word processing. Terry Rydberg, Author Exploring InDesign 3 Putting type on a page without incorporating typographic principles is merely word processing. Terry Rydberg, Author Exploring InDesign 3 Typography The study of all elements of type as a means of visual

More information

Topic 2b Building Geometries into Data Arrays

Topic 2b Building Geometries into Data Arrays Course Instructor Dr. Raymond C. Rumpf Office: A 337 Phone: (915) 747 6958 E Mail: rcrumpf@utep.edu Topic 2b Building Geometries into Data Arrays EE 4386/5301 Computational Methods in EE Outline Visualizing

More information

PRESS-READY GUIDE for FULL-COLOR COOKBOOK PAGES

PRESS-READY GUIDE for FULL-COLOR COOKBOOK PAGES 3212 E. Hwy 30 P. O. Box 2110 Kearney, NE 68847 800-445-6621 Fax: 308-234-3969 www.morriscookbooks.com e-mail: cookbook@morriscookbooks.com Full-Color Cookbook Pages If you want full-color pages for your

More information

Brand Guidelines Solano County Transit (SolTrans)

Brand Guidelines Solano County Transit (SolTrans) Brand Guidelines Solano County Transit (SolTrans) May 2018 Table of Contents The SolTrans Story... 1 Brand Elements... 2 Logo Usage... 3 Color Palette... 7 Typography.... 8 Photography.... 9 The SolTrans

More information

Basic PowerPoint Guidelines. Tips for Creating Great Presentations

Basic PowerPoint Guidelines. Tips for Creating Great Presentations Basic PowerPoint Guidelines Tips for Creating Great Presentations Fonts No more than 2 fonts per slide Serif fonts- fonts with curves - Times New Roman Sans Serif fonts- clean, block fonts- Arial Script-

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

Magazine Layout Design. and Adobe InDesign basics

Magazine Layout Design. and Adobe InDesign basics Magazine Layout Design and Adobe InDesign basics Click on Document on the right side of the pink and black box in the center of your screen. To create a document If this box does not pop open, go to the

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

POWERPOINT Build a Presentation to Remember

POWERPOINT Build a Presentation to Remember POWERPOINT 2007 Build a Presentation to Remember Microsoft Office 2007 TABLE OF CONTENTS DOCUMENT THEMES... 1 THEMES... 1 COLOR SETS... 1 FONT SETS... 1 MASTER SLIDES... 2 USING THEMES IN THE SLIDE MASTER...

More information

Brand Identity Guide. September 2017

Brand Identity Guide. September 2017 Brand Identity Guide September 2017 Welcome At Canada Drives our goal is to be the number one consumer lending company in Canada by making financing simple and accessible to every Canadian while maintaining

More information

Brand Overview COLORS / FONTS / LOGOS rd Street, Suite 210 Denver, CO communityengineeringcorps.org

Brand Overview COLORS / FONTS / LOGOS rd Street, Suite 210 Denver, CO communityengineeringcorps.org Brand Overview COLORS / FONTS / LOGOS 1031 33rd Street, Suite 210 Denver, CO 80205 720 204-3194 Color Palette PRIMARY COLORS PRIMARY PALETTE For most situations, it is important to utilize the two main

More information

Designing and Creating an Academic Poster using PowerPoint

Designing and Creating an Academic Poster using PowerPoint Designing and Creating an Academic Poster using PowerPoint About your poster and the presentation Poster presentations are used at professional conferences to communicate information about your project

More information

EnvSci360 Computer and Analytical Cartography

EnvSci360 Computer and Analytical Cartography EnvSci360 Computer and Analytical Cartography Lecture 5 Working with Type and Labels Key Points Labels are text that locate and identify features on a map Important for readability & communication EnvSci

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 1 Web Development & Design Foundations with HTML5 CHAPTER 5 WEB DESIGN Copyright Terry Felke-Morris 2 Learning Outcomes In this chapter, you will learn how to... Describe the most common types of website

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

Part 1. Large Format Printing. How to create an effective poster 2/26/2009

Part 1. Large Format Printing. How to create an effective poster 2/26/2009 2/26/2009 WHAT IS A RESEARCH POSTER: Form of COMMUNICATION Large Format Printing with AICT Shows off your RESEARCH in a clear and well ordered fashion Journal article translated into GRAPHIC forms AVOID

More information

Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?, page 2-3

Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?, page 2-3 CHAPTER 2 Revised: November 15, 2011 Concepts, page 2-1 s, page 2-4 Reference, page 2-25 Concepts Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?,

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

Creating Charts and Graphs to Visualize and Trend Your Business Metrics. Richard Iriye, RPh Kathy Costello, RN Kelly Britt, RPh

Creating Charts and Graphs to Visualize and Trend Your Business Metrics. Richard Iriye, RPh Kathy Costello, RN Kelly Britt, RPh Creating Charts and Graphs to Visualize and Trend Your Business Metrics Richard Iriye, RPh Kathy Costello, RN Kelly Britt, RPh Learning to Build an Impressive Business Report using Content, Design, Format,

More information

Font classification review

Font classification review Font classification review Taken from Lettering & Type by Bruce Willen Nolen Strals Old Style Transitional Modern Slab Serif Garamond ag Baskerville ag Bodoni ag Cowboys ab Sans Serif Gill Sans ag Decorative

More information

OUR TYPOGRAPHY APPROVED UNIVERS FONTS. Univers 65 Bold Univers 65 Bold Oblique Univers 75 Black Univers 75 Black Oblique

OUR TYPOGRAPHY APPROVED UNIVERS FONTS. Univers 65 Bold Univers 65 Bold Oblique Univers 75 Black Univers 75 Black Oblique BRAND TYPOGRAPHY For Internal Use Only Not For Use With The Public. For help and guidance on our brand standards, contact marketinginbox@firstcommand.com. 63 OUR TYPOGRAPHY Typography is a powerful extension

More information

Creating Charts and Graphs to Visualize and Trend Your Business Metrics

Creating Charts and Graphs to Visualize and Trend Your Business Metrics Creating Charts and Graphs to Visualize and Trend Your Business Metrics Richard Iriye, RPh Kathy Costello, RN Kelly Britt, RPh Learning to Build an Impressive Business Report using Content, Design, Format,

More information

BRAND. For Internal Use Only Not For Use With The Public. For help and guidance on our brand standards, contact

BRAND. For Internal Use Only Not For Use With The Public. For help and guidance on our brand standards, contact BRAND TYPOGRAPHY. 1 OUR TYPOGRAPHY. Typography is a powerful extension of our brand s personality. It plays an important role in creating a consistent look for First Command across all communications and

More information

Presented by Dr. Mariah Judd February 15, 2013

Presented by Dr. Mariah Judd February 15, 2013 Presented by Dr. Mariah Judd juddm@iupui.edu February 15, 2013 » What are the first things you notice? Color Pictures Title Figures Section titles Bullets.text » Brain storm ideas for what you want your

More information

WHAT IS A POSTER SESSION?

WHAT IS A POSTER SESSION? WHAT IS A POSTER SESSION? GENERAL OVERVIEW A SUCCESSFUL POSTER Conveys a clear message and presents highimpact visual information with minimum text Readable use clear language and correct grammar in

More information

PowerPoint Presentations

PowerPoint Presentations Designing Effective PowerPoint Presentations K. Marsh, Glenforest Library Adapted from Satajeet Singh's, "How to Design Effective PowerPoint Presentations", www.slideshare.net Designing Effective PowerPoint

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

Brand Guidelines. version

Brand Guidelines. version Brand Guidelines version 2017.1 Primary Logo The OPSWAT logo is a universal signature spanning all of our communications. Because it is such a recognizable and highly visible asset, it s important that

More information

Tables. Tables. Caption. Tables. Tables. Tables. Condense data into rows and columns Case 1: Single IV

Tables. Tables. Caption. Tables. Tables. Tables. Condense data into rows and columns Case 1: Single IV Condense into rows and columns Case : Single IV (DV and IV described here) Condense into rows and columns Case : Single IV Assistance in the Presence of Bystanders IV DV Number of bystanders 6 8 Number

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

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives. Overall Design Is Related to the Site Purpose. Website Organization

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives. Overall Design Is Related to the Site Purpose. Website Organization Web Development & Design Foundations with HTML5 Ninth Edition Chapter 5 Web Design Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links by using INSERT+F7 Learning

More information

TYPE. Design Process

TYPE. Design Process TYPE Design Process 01 Vocabulary 02 Classification 03 Six Classic Typefaces 04 Readability 05 Ten Type Commandments 06 Inspiration 07 Assignment 01 Vocabulary 02 Classification 03 Six Classic Typefaces

More information

Computer Projection Presentation Guide

Computer Projection Presentation Guide Computer Projection Presentation Guide 2007 HPS Midyear Topical Meeting Knoxville, TN 05/02/05 This Presentation Provides: Information about the computers used at the HPS meeting. Guidelines for developing

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

Linotype Univers CD for Mac and PC - containing 63 font weights

Linotype Univers CD for Mac and PC - containing 63 font weights presented in: Eurostile Roman Find further Font Features in our Font Feature Archive. The Univers family of fonts designed by Adrian Frutiger more than forty years ago is one of the most innovative type

More information

PRESENTATION BOARD LAYOUT

PRESENTATION BOARD LAYOUT NEW YORK CITY COLLEGE OF TECHNOLOGY THE CITY UNIVERSITY OF NEW YORK ARCHITECTURAL TECHNOLOGY DEPARTMENT written by annie boccella spring 2010 1. BEFORE YOU BEGIN... Organize yourself. What is your argument

More information

CHAPTER 2 Information processing (Units 3 and 4)

CHAPTER 2 Information processing (Units 3 and 4) CHAPTER 2 Information processing (Units 3 and 4) Information-processing steps (page 54) a For each of the following information-processing steps, state its purpose and provide two examples of technology

More information

Poster Presenters Accessibility Guidelines for Accessible Presentations

Poster Presenters Accessibility Guidelines for Accessible Presentations Poster Presenters Accessibility Guidelines for Accessible Presentations There are many ways to make your poster presentation accessible to attendees. Here are some alternatives to consider: Keep tacks

More information

Good. jute. Graphics Guide. How to get the most out of your bag... printing on

Good. jute. Graphics Guide. How to get the most out of your bag... printing on Good Graphics Guide How to get the most out of your bag... We want you to have the best possible product. This guide is designed to help you make informed choices when you design the artwork for your bag.

More information

8 Web Design Principles to Use IN ELEARNING DESIGN

8 Web Design Principles to Use IN ELEARNING DESIGN 8 Web Design Principles to Use IN ELEARNING DESIGN (813) 901-8600 info@elogiclearning.com elogiclearning.com TABLE OF CONTENTS 1. Purpose 3 2. Communication 4 3. Typefaces 5 4. Colors 6 5. White or Negative

More information

File Preparation. For best results, please follow the guidelines below.

File Preparation. For best results, please follow the guidelines below. File Preparation For best results, please follow the guidelines below. ACCEPTED DESIGN APPLICATIONS We accept the following application formats: Adobe Photoshop, Adobe Illustrator, Adobe InDesign, Microsoft

More information

DESIGN AND BRAND GUIDELINES

DESIGN AND BRAND GUIDELINES DESIGN AND BRAND GUIDELINES Address Phone & Fax Online LinkResearchTools GmbH LeonardBernsteinStraße 10/ Floor 7 Saturn Tower 1220, Vienna, Austria, Europe Phone AT: +43 720 116 440 Phone US: +1 866 3473660

More information

Fundamental of Digital Media Design

Fundamental of Digital Media Design Fundamental of Digital Media Design Chapter 5 Principle of Design by Noraniza Samat Faculty of Computer Systems & Software Engineering noraniza@ump.edu.my OER Fundamental of Digital Media Design by Noraniza

More information