What is Beamer?! Introduction to Beamer Beamer is a LATEX class for creating slides for presentations. Commands for Header and the Title Page
|
|
|
- Aubrey Jones
- 9 years ago
- Views:
Transcription
1 Beamer 101 1/33 Beamer 101 2/33 Introduction to Beamer Beamer is a LATEX class for creating slides for presentations Steven G. Wicker Winston Salem, NC [email protected] Updated September 2014 SG Wicker Beamer 101 1/33 What is Beamer?! Beamer is a LaTeX class for creating presentations. It can also be used to create transparency slides. Preparing presentations with Beamer is different from preparing them with WYSWYG programs like PowerPoint. A Beamer presentation is created like any other LaTeX document: It has a preamble and a body, the body can contain sections and subsections, the different slides (called frames in Beamer) can structured using itemize and enumerate environments, and so on. The obvious disadvantage of this approach is that you have to know LaTeX in order to use Beamer. The advantage is that if you know LaTeX, you can use your knowledge of LaTeX also when creating a presentation, not only when writing papers. SG Wicker Beamer 101 2/33 Beamer 101 3/33 Beamer 101 4/33 How to Get Beamer Commands for Header and the Title Page 1 Update to the latest version of MiKTeX (v. 2.9). 2 Download/install the COMPLETE MiKTeX system. 3 Recommended: The MiKTeX Net Installer (64bit) 4 PDF/LaTeX a sample document to test it out. \documentclass[xcolor=dvipsnames]{beamer} \usecolortheme[named=burntorange] \usetheme{paloalto} \title[]{} \subtitle[]{} \author[]{} \institute[]{} \date{} \begin{document} \begin{frame} \titlepage \ \end{frame} SG Wicker Beamer 101 3/33 SG Wicker Beamer 101 4/33
2 Beamer 101 5/33 Beamer 101 6/33 General Set-up for a Slide Original Slide Setup Alternative \begin{frame}[fragile] \frametitle{title of slide} \framesubtitle{subtitle} content of slide definitions equations pictures \ \end{frame} [fragile] is needed for the Verbatim (and other) commands \begin{frame}[fragile]{title}{subtitle} content of slide definitions equations pictures \ \end{frame} Less typing this way SG Wicker Beamer 101 5/33 SG Wicker Beamer 101 6/33 Beamer 101 7/33 Beamer 101 8/33 Itemize vs. Enumerate and Pause An itemized/bulleted list: 1 item 1 2 item 2 3 item 3 Same structure for itemized to produce a bulleted list. \begin{enumerate} \pause \item itemized item 1 \pause \item itemized item 2 \pause \item itemized item 3 \end{enumerate} SG Wicker Beamer 101 7/33 Another Way to Create Pauses Normal LaTeX class. Easy overlays. No external programs needed. \begin{itemize} \item<3-> Normal LaTeX class. \item<2-> Easy overlays. \item<1-> No external programs needed. \end{itemize} SG Wicker Beamer 101 8/33
3 Beamer 101 9/33 Third way for pauses In lists The truths of arithmetic which are independent of PA in some sense themselves contain essentially hidden higher-order, or infinitary, concepts??? Truths in the language of arithmetic which... That suggests stronger version of Isaacson s thesis. \begin{frame}[plain] Can be used to remove the theme to allow more room for an image or table. \begin{itemize}[<+->] SG Wicker Beamer 101 9/33 Beamer /33 Beamer /33 Theorems and Such A Simple Displayed Equation Definition A triangle that has a right angle is called a right triangle. Theorem In a right triangle, the square of hypotenuse equals the sum of squares of two other sides. Proof. We leave the proof as an exercise to our astute reader. We also suggest that the reader generalize the proof to non-euclidean geometries. A displayed formula: e x2 dx = π $$ \int_{-\infty}^\infty e^{-x^2} \, dx = \sqrt{\pi}$$ \begin{definition} or theorem or proof SG Wicker Beamer /33 SG Wicker Beamer /33
4 Beamer /33 Beamer /33 Graphics Here we include three images, one each of PDF, PNG, and JPG types. Dividing a Slide into Columns Good for displaying equations on one side and a picture on the other. Here is the first column. Second column with picture. f (x) = 2x 3 7x + 3 Sample code: \includegraphics[width=0.1\textwidth]{picture.jpg} SG Wicker Beamer /33 Use \begin{columns} with corresponding end for the columns environment. Use \begin{column} with corresponding end to make the individual columns. SG Wicker Beamer /33 Beamer /33 Beamer /33 Dividing a Slide into Columns The Code \begin{columns} \begin{column}{0.5\textwidth} Here is the first column. $$ f(x) = 2x^3-7x +3 $$ \end{column} \pause \begin{column}{0.3\textwidth} Second column with picture. \centerline{\includegraphics[width=0.7\textwidth]{picture.png}} \end{column} \end{columns} \bigskip SG Wicker Beamer /33 Array Environment More Complex Displayed Equation This sample uses the array environment, with $$ to create the display. Not labeled/numbered (Raynor): { v = χb x Ω v = 0 x Ω. $$ \left\{ \begin{array}{rlll} -\Delta v & = \chi_{\overline B} & & \forall x \in \Omega\\ v & =0& & \forall x \in \partial\omega. \end{array} \right. $$ SG Wicker Beamer /33
5 Beamer /33 Beamer /33 Equation Environment provides a Label Here is the previous example using the equation environment to get a label. It produces one label for both equations, which is convenient much of the time (Raynor): { v = χb x Ω (1) v = 0 x Ω. \begin{equation} \left\{ \begin{array}{rlll} -\Delta v & = \chi_{\overline B} & & \forall x \in \Omega\\ v & =0& & \forall x \in \partial\omega. \end{array} \right. \end{equation} SG Wicker Beamer /33 Equation Array Each Line is Labeled The eqnarray environment, like many equation display environments, has two versions. eqnarray creates a multi-line displayed equation with labels (Raynor). ẽ4 = e4 e1, e3 e2 (2) e1 2 [ ] β =, (3) 0 \begin{eqnarray} % note use of vectors \vec{\tilde{e}}_4 & = & \vec{e}_4- \frac{\langle \vec{e}_1, \vec{e}_3 \rangle}{\ \vec{e}_1\ ^2} \vec{e & = & \begin{bmatrix} \tilde{\beta} \\0 \end{bmatrix}, SG Wicker Beamer /33 \end{eqnarray} Beamer /33 Beamer /33 eqnarray* - No Labels eqnarray* creates a multi-line displayed equation with no labels (Raynor): ẽ4 = e4 e1, e3 e1 2 e2 [ ] β =. 0 Equation Array with Pauses 2x 2 + 3(x 1)(x 2) = 2x 2 + 3(x 2 3x + 2) = 2x 2 + 3x 2 9x + 6 = 5x 2 9x + 6 \begin{eqnarray*} \begin{eqnarray*} \vec{\tilde{e}}_4 & = & \vec{e}_4- \frac{\langle \vec{e}_1, \vec{e}_3 \rangle}{\ \vec{e}_1\ ^2} 2x^2 + 3(x-1)(x-2)&=&2x^2 \vec{e}_2 + \\ 3(x^2-3x+2)\\ & = & \begin{bmatrix} \tilde{\beta} \\ 0 \pause &=& 2x^2 + 3x^2-9x + 6\\ \pause &=& 5x^2-9x + 6 \end{eqnarray*} \end{bmatrix}. \end{eqnarray*} SG Wicker Beamer /33 SG Wicker Beamer /33
6 Beamer /33 Beamer /33 Case Definitions Used when a definition have two or more cases. Use the case statement. 1 1 x < 0 f (x) = 1 2 x = 0 1 x 2 otherwise The code for the above example: f(x) = \begin{cases} 1 & -1 \le x < 0 \\ \frac{1}{2} & x = 0 \\ 1 - x^2 & \mbox{otherwise} \end{cases} SG Wicker Beamer /33 Align Environment - Unstarred and Starred The advantage of the align environment is that you can force multiple parts of each line to align correctly vertically, making pretty multipart sets of equations (Raynor): n ui t + u1 uj = ν ui p + fi(x, t) xj xi j=1 x R n, t 0 (4) u = 0 x R n, t 0 (5) u(x, 0) = u0(x) x R n, (6) \begin{align} % or align* for the unlabeled version \frac{\partial u_i}{\partial t} + \sum_{j=1}^n u_j \frac{\partial u \nabla \cdot \vec{u} & = 0 & & x \in \mathbb{r}^n, t \geq 0 \\ \vec{u}(x,0) & = \vec{u}_0 (x) & & x \in \mathbb{r}^n, \end{align} SG Wicker Beamer /33 Beamer /33 Beamer /33 Using the Array Environment to Create a Matrix The equation environment is used to display a single equation with a tag (Raynor): JH(ω) Dω = , (7) 0 0 a(ω) 0 \begin{equation}% equation* for no label J\mathcal{H}(\omega) _{D_\omega}= \left( \begin{array}{cccc} 0 & 1 & 0 & 0\\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & a(\omega)& 0 \end{array} \right)\label{jhomega}, \end{equation} SG Wicker Beamer /33 Matrix Command and Types \begin{matrix} x & y \\ z & v \end{matrix} x y z v \begin{bmatrix} x & y \\ z & v \end{bmatrix} [ x ] y z v \begin{bmatrix} x & y \\ z & v \end{bmatrix} { x } y z v SG Wicker Beamer /33
7 Beamer /33 Beamer /33 More Matrix Types \begin{pmatrix} x & y \\ z & v \end{pmatrix} ( ) x y z v \begin{vmatrix} x & y \\ z & v \end{vmatrix} x y z v \begin{vmatrix} x & y \\ z & v \end{vmatrix} x y z v Inline Matrix In the previous slides all the matrices were displayed equations. [ ] u Matrices can also be created inline with text, as such:. This v sample uses the bmatrix environment. SG Wicker Beamer /33 SG Wicker Beamer /33 Beamer /33 Beamer /33 An Expression with matrices Another Matrix Example [ ] [ ] [ ] x1 A B y1 = x2 C D y2 $$\begin{bmatrix} x_1 \\ x_2 \end{bmatrix} = \begin{bmatrix} A & B \\ C & D \end{bmatrix} \times \begin{bmatrix} y_1 \\ y_2 \end{bmatrix}$$ This is just a displayed equation $$ \begin{bmatrix} 0 & \cdots & 0 \\ \vdots & \ddots & \vdots \\ 0 & \cdots & 0 \end{bmatrix} $$ SG Wicker Beamer /33 SG Wicker Beamer /33
8 Beamer /33 Beamer /33 Verbatim verb Verbatim is very useful to display code. There are 2 options: For a section of code: \begin{verbatim} Code Code Code \ end{verbatim} \verb# short segment of code # Handouts \documentclass[xcolor=dvipsnames,handout]{beamer} \usepackage{pgfpages} \pgfpagesuselayout{4 on 1}[border shrink=5mm] handout gets rid of the pauses The other commands produce 4 slides per page. It seems that pgfpages disables links in a PDF. Printing multiple pages on one page can also be handled by some printers. SG Wicker Beamer /33 SG Wicker Beamer /33 Beamer /33 Beamer /33 URL s For Later Reference A regular URL: A URL with text other than the web address: WFU MATH \usepackage{hyperref} (Might not be needed in Beamer; is needed in Article.) \textcolor{darkorchid}{\url{ \textcolor{red}{\href{ MATH}} tech-resources/latex Color palate that can be used in Beamer Beamer Themes Beamer Quick Start Guide Posters Thesis style Some other packages may disable links. SG Wicker Beamer /33 SG Wicker Beamer /33
9 Beamer /33 The End Questions? SG Wicker Beamer /33
A Guide to Using Beamer
A Guide to Using Beamer Michelle Cylwa Introduction Beamer is an excellent way of making a presentation using LaTeX. The user programs the code similar to making a normal LaTeX document. Once compiled
Fun with Beamer. ...and HAPPY BIRTHDAY SHAWN! Tina Li, Thomas Graul, and Niranjan Balachandar. June 29, 2016
Fun with Beamer...and HAPPY BIRTHDAY SHAWN! Tina Li, Thomas Graul, and Niranjan Balachandar June 29, 2016 Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 : Lists, Graphics, Tables 3
Presentations Using L A TEX
Presentations Using L A TEX The Beamer Class Amber M. Smith Department of Mathematics University of Utah GSAC Colloquium September 4, 2007 Disclaimer #1 I am NOT an expert in L A TEX I am NOT an expert
The beamer Class: a L A TEX Presentation System
: a L A TEX Presentation System 1 1 Department of Mathematics Michigan State University East Lansing, MI USA [email protected] June 16, 2010 Outline 1 Preamble Items 2 Basics of Frames and Slides \pause
A Guide to Presentations in L A TEX-beamer. Trinity University
A Guide to Presentations in L A TEX-beamer with a detour to Geometric Analysis Eduardo Trinity University Mathematics Department Major Seminar, Fall 2008 Outline 1 Intro to L A TEX 2 Intro to Beamer 3
Display Math in ConTEXt
22 MAPS 34 Aditya Mahajan Display Math in ConTEXt ConTEXt rehab for amsmath addicts Abstract This article explains how to do various kinds of alignments in ConTEXt. A visual output is presented, and it
My Way MAPS 34, NAJAAR 2006. Display Math in ConTEXt: ConTEXt rehab for amsmath addicts Aditya Mahajan
My Way MAPS 34, NAJAAR 2006 Display Math in ConTEXt: ConTEXt rehab for amsmath addicts Aditya Mahajan This article was originally published in MAPS 34. MAPS is the publication of NTG (Nederlandstalige
TU/e Slides using Beamer. Marko Boon [email protected]. May 1, 2006. /department of mathematics and computer science 1/17
TU/e Slides using Beamer Marko Boon [email protected] May 1, 2006 /department of mathematics and computer science 1/17 Outline PDF Presentations using L A T E X Using the TU/e Beamer Theme TU/e Theme Options
A Tutorial on Creating Presentations Using Beamer
A Tutorial on Creating Presentations Using Department of Computer Science The University of Iowa Iowa City, IA April 8, 2009 A Tutorial on Creating Presentations Using Some info on L A TEX L A TEX is a
Using beamer.cls An Intentionally Incomplete Guide. 1 Introduction 2
LATEX for Logicians Using beamer.cls An Intentionally Incomplete Guide Contents 1 Introduction 2 2 Keeping it simple 2 3 Installing beamer.cls 3 4 Frames: the core concept 3 5 Invoking the beamer class
A Brief introduction into the world of TEX/L A TEX
A Brief introduction into the world of TEX/L A TEX Ryan D. Siskind, Zhengzheng Hu Department of Mathematics North Carolina State University September 25, 2009 1 Introduction 1.1 What is TEX/L A TEX? TEX
LAT E X Programming: Beamer Presentations
L A T E X Programming: Beamer Presentations University of California, Berkeley November 16, 2009 Benefits Benefits Drawbacks Professional looking presentations Written in L A T E X Nice overlay effects
Outline. Installing L A TEX
UCLA Department of Statistics Statistical Consulting Center Presentations with L A TEX Colin Rundel [email protected] Outline May 12, 2009 Software installation Software installation Beamer package
Tips on Beamer, TikZ and BibTeX
Fei Ye 1 and Moshe Cohen 2 1,2 Department of Mathematics Bar-Ilan University March 28, 2012 1 The preamble Frames Some tips 2 A simple template More basic examples foreach allows for some inline coding
L A T E X Thesis Class for University of Colorado
L A T E X Thesis Class for University of Colorado Bruce Fast, OIT November 2011 The Graduate School of the University of Colorado species (1) just how Master's theses and Doctoral dissertations should
The beamer class for L A TEX
The beamer class for L A TEX A Tutorial Kathrin Wünsch Centre for Fusion, Space and Astrophysics Department of Physics University of Warwick Workshop, University of Warwick, 23rd April 2012 Outline 1 Motivation
Department of Mathematics and Computer Science Eastern Illinois University 600 Lincoln Avenue Charleston, IL 61920 3099
The PracTEX Journal TPJ 2005 No 04, 2005-10-20 Article revision 2005-10-25 Beamer by Example Andrew Mertz and William Slough Email Address Abstract [email protected], cfwas@eiu. edu Department of Mathematics
Software Tools 7 ( ; / $ 7 ( ; :<6,:<*RPJHYLQJHQ 9HUZHUNLQJYDQ/D7H; :<6,:<*YRRUEHHOG. College 9 & 10 - LaTeX 1
/ $ 7 ( ;,I\RXPHUHO\ZDQWWRSURGXFHDSDVVDEO\ JRRGGRFXPHQW³ VRPHWKLQJDFFHSWDEOHDQG EDVLFDOO\UHDGDEOHEXWQRWUHDOO\EHDXWLIXO³ D VLPSOHUV\VWHPZLOOXVXDOO\VXIILFH:LWK 7 ( ;WKHJRDOLVWRSURGXFHWKHILQHVW TXDOLW\ 'RQDOG(.QXWK
L A TEX Presentations
L A TEX Presentations Slides on transparencies or in PDF using Prosper Flemming Kjær Jensen [email protected] Department of Communication Technology, Aalborg University LATEX Presentations p.1/30 Agenda L
Writing Mathematical Papers a Few Tips
Writing Mathematical Papers a Few Tips Jerzy Trzeciak Publications Department of IMPAN [email protected] 1 Some generalities It is very easy to publish a paper these days you can just put it on the internet.
The Deadly Sins of Algebra
The Deadly Sins of Algebra There are some algebraic misconceptions that are so damaging to your quantitative and formal reasoning ability, you might as well be said not to have any such reasoning ability.
α = u v. In other words, Orthogonal Projection
Orthogonal Projection Given any nonzero vector v, it is possible to decompose an arbitrary vector u into a component that points in the direction of v and one that points in a direction orthogonal to v
http://school-maths.com Gerrit Stols
For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It
PowerPoint 2013: Basic Skills
PowerPoint 2013: Basic Skills Information Technology September 1, 2014 1 P a g e Getting Started There are a variety of ways to start using PowerPoint software. You can click on a shortcut on your desktop
An introduction to L A TEX, as well as Bibtex, Beamer, Tikz, and all that (Part deux)
An introduction to L A TEX, as well as Bibtex, Beamer, Tikz, and all that (Part deux) Nicolas Fillion Department of Philosophy Simon Fraser University [email protected] www.nfillion.com What we have seen
Creating a Poster Presentation using PowerPoint
Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific
Microsoft Office PowerPoint 2007. Lyon County Schools
Microsoft Office PowerPoint 2007 Lyon County Schools Accessing 2007 Programs Button When you open any of the 2007 Microsoft Office programs, you ll notice THE button (with the Microsoft logo on it). The
A Beamer Tutorial in Beamer
A Beamer Tutorial in Beamer Charles T. Batts April 4, 2007 Department of Computer Science The University of North Carolina at Greensboro Revised by Michelle Bodnar and Andrew Lohr 2013 Foundations of Computer
Linear Algebra Notes for Marsden and Tromba Vector Calculus
Linear Algebra Notes for Marsden and Tromba Vector Calculus n-dimensional Euclidean Space and Matrices Definition of n space As was learned in Math b, a point in Euclidean three space can be thought of
PowerPoint 2007 Basics Website: http://etc.usf.edu/te/
Website: http://etc.usf.edu/te/ PowerPoint is the presentation program included in the Microsoft Office suite. With PowerPoint, you can create engaging presentations that can be presented in person, online,
Factoring Patterns in the Gaussian Plane
Factoring Patterns in the Gaussian Plane Steve Phelps Introduction This paper describes discoveries made at the Park City Mathematics Institute, 00, as well as some proofs. Before the summer I understood
Inner product. Definition of inner product
Math 20F Linear Algebra Lecture 25 1 Inner product Review: Definition of inner product. Slide 1 Norm and distance. Orthogonal vectors. Orthogonal complement. Orthogonal basis. Definition of inner product
Beamer Class well nice
Section no.1 May 3, 2007 Table of contents Section no.1 1 Section no.1 Subsection no.1.1 2 Lists I Lists II 3 Tables 4 blocs 5 split screen Pictures joining picture and lists pictures which need more space
Microsoft Office PowerPoint 2007 Basics Workshop
Microsoft Office PowerPoint 2007 Basics Workshop Created & Hosted by: Hagop (Jack) Hadjinian I.A., Information Technology Course Contents Overview: Get set with the basics Lesson 1: Create your slides
TU/ePDFScreen. Presentations, Slides and Posters Marko Boon. 25th May 2004 1/27. / department of mathematics and computer science
TU/ePDFScreen Presentations, Slides and Posters Marko Boon 25th May 2004 1/27 1. Introduction TU/ePDFScreen is a L A TEX package that you can use to create presentations, without having to use Powerpoint.
Methods for Finding Bases
Methods for Finding Bases Bases for the subspaces of a matrix Row-reduction methods can be used to find bases. Let us now look at an example illustrating how to obtain bases for the row space, null space,
Inner Product Spaces
Math 571 Inner Product Spaces 1. Preliminaries An inner product space is a vector space V along with a function, called an inner product which associates each pair of vectors u, v with a scalar u, v, and
Geometry Chapter 2 Study Guide
Geometry Chapter 2 Study Guide Short Answer ( 2 Points Each) 1. (1 point) Name the Property of Equality that justifies the statement: If g = h, then. 2. (1 point) Name the Property of Congruence that justifies
Multifactor Authentication and Session Support in OpenVPN
Multifactor Authentication and Session Support in OpenVPN Report submitted in accordance with the requirements of the Indian Institute of Technology, Kanpur by Harshwardhan Sharma (), Shivanshu Agarwal
Scientific Graphing in Excel 2010
Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.
How To Use L A T Ex On Pc Or Macbook Or Macintosh (Windows) With A L At Ex (Windows 3) On A Pc Or Ipo (Windows 2) With An Ipo Computer (Windows 4)
About L A T E X L A T E X Tutorial You can either print this document or follow it on line. L A T E X (pronounced either Lay-tech or Lah-tech ) is a portable document formatting system based on T E X (pronounced
EDIT202 PowerPoint Lab Assignment Guidelines
EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT/Moodle site and save it into your newly
Working with Tables: How to use tables in OpenOffice.org Writer
Working with Tables: How to use tables in OpenOffice.org Writer Title: Working with Tables: How to use tables in OpenOffice.org Writer Version: 1.0 First edition: January 2005 First English edition: January
GeoGebra. 10 lessons. Gerrit Stols
GeoGebra in 10 lessons Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It was developed by Markus Hohenwarter
PowerPoint 2013 Basics for Windows Training Objective
PowerPoint 2013 Basics for Windows PowerPoint 2013 Basics for Windows Training Objective To learn the tools and features to get started using PowerPoint more efficiently and effectively. What you can expect
Rend. Sem. Mat. Univ. Padova 1xx (201x) Rendiconti del Seminario Matematico della Università di Padova c European Mathematical Society.
Rend. Sem. Mat. Univ. Padova 1xx (201x) Rendiconti del Seminario Matematico della Università di Padova c European Mathematical Society Title of paper First author s name Second author s name Abstract This
Excel Basics By Tom Peters & Laura Spielman
Excel Basics By Tom Peters & Laura Spielman What is Excel? Microsoft Excel is a software program with spreadsheet format enabling the user to organize raw data, make tables and charts, graph and model
Working with Video in PowerPoint 2010
518 442-3608 Working with Video in PowerPoint 2010 Adding video to a PowerPoint presentation can be very useful. In this handout we will explore many of the program s video options. When you start PowerPoint
Microsoft Office PowerPoint 2003. Identify components of the PowerPoint window. Tutorial 1 Creating a Presentation
Microsoft Office PowerPoint 2003 Tutorial 1 Creating a Presentation 1 Identify components of the PowerPoint window You will recognize some of the features of the PowerPoint window that are common to Windows
28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z
28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 1.4 Cross Product 1.4.1 Definitions The cross product is the second multiplication operation between vectors we will study. The goal behind the definition
Microsoft Word 2010. Quick Reference Guide. Union Institute & University
Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...
3. INNER PRODUCT SPACES
. INNER PRODUCT SPACES.. Definition So far we have studied abstract vector spaces. These are a generalisation of the geometric spaces R and R. But these have more structure than just that of a vector space.
One advantage of this algebraic approach is that we can write down
. Vectors and the dot product A vector v in R 3 is an arrow. It has a direction and a length (aka the magnitude), but the position is not important. Given a coordinate axis, where the x-axis points out
Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1
Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1 Are the themes displayed in a specific order? (PPT 6) Yes. They are arranged in alphabetical order running from left to right. If you point
Exploring Geometric Mean
Exploring Geometric Mean Lesson Summary: The students will explore the Geometric Mean through the use of Cabrii II software or TI 92 Calculators and inquiry based activities. Keywords: Geometric Mean,
National RTAP Marketing Transit Toolkit Customizing Templates in Microsoft Publisher
National RTAP Marketing Transit Toolkit Customizing Templates in Microsoft Publisher Customizing the Templates in Microsoft Publisher Microsoft Publisher is part of the Microsoft Office Suite, so most
(1) latex + dvipdfm (which is a DVI to PDF translator) or (2) pdflatex (a version of LaTeX that generates PDF output instead of DVI).
FORMATTING AN ELECTRONIC SAE TECHNICAL PAPER To have your paper published by SAE, you must adhere to the SAE Technical Paper Template, which includes the correct layout, margins, style tags, etc. The available
Advanced Presentation Features and Animation
There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more
Beginning L A TEX. Dan Parker and David Schwein. Spring 2015
Beginning L A TEX Dan Parker and David Schwein Spring 2015 Welcome to the first of the Brown Science Center s L A TEX workshops! By the end of it, you ll be able to write a basic L A TEX document containing
MICROSOFT POWERPOINT STEP BY STEP GUIDE
IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing
High School Geometry Test Sampler Math Common Core Sampler Test
High School Geometry Test Sampler Math Common Core Sampler Test Our High School Geometry sampler covers the twenty most common questions that we see targeted for this level. For complete tests and break
Solving Systems of Linear Equations Using Matrices
Solving Systems of Linear Equations Using Matrices What is a Matrix? A matrix is a compact grid or array of numbers. It can be created from a system of equations and used to solve the system of equations.
LECTURE AND NOTE TAKING
LECTURE AND NOTE TAKING Goals of Note Taking Taking notes helps with classroom concentration, test preparation and for clues as to what the instructor feels is most important. Prepare to take effective
Beamer Class well nice
November 17, 2006 Table of contents 1 Subsection no.1.1 2 Lists I Lists II 3 Tables 4 blocs 5 split screen Pictures joining picture and lists Title Subsection no.1.1 Each frame should have a title. Subsection
Cut-to-the-Chase Series Web Foundations. HTML 101 - Assignment. By Eric Matthews 2001. Visit us at: www.anglesanddangles.com
Cut-to-the-Chase Series Web Foundations HTML 101 - Assignment By Eric Matthews 2001 Visit us at: www.anglesanddangles.com General Requirements All of your work should conform to the general requirements.
Publisher 2010 Cheat Sheet
April 20, 2012 Publisher 2010 Cheat Sheet Toolbar customize click on arrow and then check the ones you want a shortcut for File Tab (has new, open save, print, and shows recent documents, and has choices
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live
OpenOffice.org Writer
OOoRegiCon North America Technical Writing using OpenOffice.org Writer Jean Hollis Weber Jean Hollis Weber Community Volunteer - Slide 1 Why OOo for Techwriting? Combines best features of MS Word and FrameMaker
LS.6 Solution Matrices
LS.6 Solution Matrices In the literature, solutions to linear systems often are expressed using square matrices rather than vectors. You need to get used to the terminology. As before, we state the definitions
with functions, expressions and equations which follow in units 3 and 4.
Grade 8 Overview View unit yearlong overview here The unit design was created in line with the areas of focus for grade 8 Mathematics as identified by the Common Core State Standards and the PARCC Model
Microsoft PowerPoint 2010
Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...
Contents. Microsoft Office 2010 Tutorial... 1
Microsoft Office 2010 Tutorial Contents Microsoft Office 2010 Tutorial... 1 Find your way through long documents with the new Document Navigation pane and Search... 4 Adjust the spaces between lines or
8.2. Solution by Inverse Matrix Method. Introduction. Prerequisites. Learning Outcomes
Solution by Inverse Matrix Method 8.2 Introduction The power of matrix algebra is seen in the representation of a system of simultaneous linear equations as a matrix equation. Matrix algebra allows us
Intermediate PowerPoint
Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.
CREATING POSTERS WITH POWERPOINT
CREATING POSTERS WITH POWERPOINT PowerPoint files will be required for Posters on CD-Rom with very few exceptions. WHY POWERPOINT? Although there are many software programs that will create posters, PowerPoint
THE NUMBER OF GRAPHS AND A RANDOM GRAPH WITH A GIVEN DEGREE SEQUENCE. Alexander Barvinok
THE NUMBER OF GRAPHS AND A RANDOM GRAPH WITH A GIVEN DEGREE SEQUENCE Alexer Barvinok Papers are available at http://www.math.lsa.umich.edu/ barvinok/papers.html This is a joint work with J.A. Hartigan
Rational Number Project
Rational Number Project Fraction Operations and Initial Decimal Ideas Lesson : Overview Students estimate sums and differences using mental images of the 0 x 0 grid. Students develop strategies for adding
The continuous and discrete Fourier transforms
FYSA21 Mathematical Tools in Science The continuous and discrete Fourier transforms Lennart Lindegren Lund Observatory (Department of Astronomy, Lund University) 1 The continuous Fourier transform 1.1
Euler s Method and Functions
Chapter 3 Euler s Method and Functions The simplest method for approximately solving a differential equation is Euler s method. One starts with a particular initial value problem of the form dx dt = f(t,
Indicator 2: Use a variety of algebraic concepts and methods to solve equations and inequalities.
3 rd Grade Math Learning Targets Algebra: Indicator 1: Use procedures to transform algebraic expressions. 3.A.1.1. Students are able to explain the relationship between repeated addition and multiplication.
The GED math test gives you a page of math formulas that
Math Smart 643 The GED Math Formulas The GED math test gives you a page of math formulas that you can use on the test, but just seeing the formulas doesn t do you any good. The important thing is understanding
Excel 2007: Basics Learning Guide
Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This
BLACKBOARD 9.1: Text Editor
BLACKBOARD 9.1: Text Editor The text editor in Blackboard is a feature that appears in many different areas, but generally has the same look and feel no matter where it appears. The text editor has changed
Microsoft Excel 2010 Tutorial
1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and
New Features in Microsoft Office 2007
New Features in Microsoft Office 2007 TABLE OF CONTENTS The Microsoft Office Button... 2 The Quick Access Toolbar... 2 Adding buttons to the Quick Access Toolbar... 2 Removing buttons from the Quick Access
Basic Geometry Review For Trigonometry Students. 16 June 2010 Ventura College Mathematics Department 1
Basic Geometry Review For Trigonometry Students 16 June 2010 Ventura College Mathematics Department 1 Undefined Geometric Terms Point A Line AB Plane ABC 16 June 2010 Ventura College Mathematics Department
2 Session Two - Complex Numbers and Vectors
PH2011 Physics 2A Maths Revision - Session 2: Complex Numbers and Vectors 1 2 Session Two - Complex Numbers and Vectors 2.1 What is a Complex Number? The material on complex numbers should be familiar
To be productive in today s graphic s industry, a designer, artist, or. photographer needs to have some basic knowledge of various file
An Artist s Digital Toolkit Allan Wood, for educational use only Understanding File Formats File Formats To be productive in today s graphic s industry, a designer, artist, or photographer needs to have
How To Solve The Pythagorean Triangle
Name Period CHAPTER 9 Right Triangles and Trigonometry Section 9.1 Similar right Triangles Objectives: Solve problems involving similar right triangles. Use a geometric mean to solve problems. Ex. 1 Use
Just the Factors, Ma am
1 Introduction Just the Factors, Ma am The purpose of this note is to find and study a method for determining and counting all the positive integer divisors of a positive integer Let N be a given positive
Area. Area Overview. Define: Area:
Define: Area: Area Overview Kite: Parallelogram: Rectangle: Rhombus: Square: Trapezoid: Postulates/Theorems: Every closed region has an area. If closed figures are congruent, then their areas are equal.
A very minimal introduction to TikZ
A very minimal introduction to TikZ Jacques Crémer Toulouse School of Economics [email protected] March 11, 2011 Contents 1 Introduction 3 2 Setting up a picture 3 3 Drawing lines and curves 4 3.1
Heron s Formula. Key Words: Triangle, area, Heron s formula, angle bisectors, incenter
Heron s Formula Lesson Summary: Students will investigate the Heron s formula for finding the area of a triangle. The lab has students find the area using three different methods: Heron s, the basic formula,
Course Syllabus. Technical Writing Certificate - Basic
Course Syllabus Technical Writing Certificate - Basic Prerequisite(s): 1 year experience using Windows and Microsoft Word. Required Materials/Texts: KSU will provide the following 6 instructional manuals
Microsoft Excel 2013 Tutorial
Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing
6. LECTURE 6. Objectives
6. LECTURE 6 Objectives I understand how to use vectors to understand displacement. I can find the magnitude of a vector. I can sketch a vector. I can add and subtract vector. I can multiply a vector by
Unit One: Create and Format PowerPoint Lesson 1- Create/Prepare
POWERPOINT 2013 Computer/PowerPoint Concepts Internet Safety Review Digital Filing Email Cloud Pre Checklist Completion Digital Filing Unit One: Create and Format PowerPoint Lesson 1- Create/Prepare Planning
