An Introduction to L A T E X

Size: px
Start display at page:

Download "An Introduction to L A T E X"

Transcription

1 An Introduction to L A T E X or Why Word Sucks MS012A Research Papers Ethics

2 Tools Preamble Running LAT E X WYSIWYG What You See Is What You Get Include programs like Word, OpenOffice, FrameMaker etc. Pros Easy to use for beginners. You get what you want (usually). Usable for simple letters, memos, flyers etc. Cons You have to be the designer. Hard to be consistent.

3 Tools Preamble Running LAT E X Structure Oriented Writing Include programs like L A T E X, scribe, html, xml. Pros Cons Concentrate on the subject. Easy to get a consistent, good design. Best suited for articles, reports, books, mathematical formulas etc. Many commands to learn. The commands are in the text. Awkward in the beginning.

4 Tools Preamble Running LAT E X T E X & L A T E X T E X L A T E X was created by Donald Knuth (http: //www-cs-faculty.stanford.edu/~knuth/). is freely available. is extendable. was created by Leslie Lamport. (http: //research.microsoft.com/users/lamport/), and is based on T E X adds macros, packages, indexes etc. is more user friendly than T E X. is easily extendable.

5 Tools Preamble Running LAT E X L A T E X L A T E X is just a command line program that you can run from any prompt. For *NIX L A T E X is often installed as a default. If it is not, just install it from the package-system of your distribution. For Windows Use the MiKT E X package ( Use via CygWin ( CygWin emulates Linux for Windows. For OS X Install via MacPorts ( or Fink ( There are also standalone versions.

6 Tools Preamble Running LAT E X Editor You just need an ordinary text editor for editing L A T E X-files. Some of them might be a little better suited for the job however. Which editor you use is a matter of preference, but personally I have a few favorites.

7 Tools Preamble Running LAT E X Editor Emacs/XEmacs Emacs ( or is a wonderful editor that works on all platforms that you are likely to use L A T E X on. It has good support for L A T E X right out of the box, but by installing AUCTex ( a lot of extra functionality is provided, including live preview. Emacs is available for *Unix (Install via package manager). OS X (Several, I like http: //homepage.mac.com/zenitani/emacs-e.html). Windows (I like XEmacs for Windows).

8 Tools Preamble Running LAT E X Editor Vim Vim ( is a very powerful, light weight editor. On *NIX, it is installed by default. There is no GUI (check out gvim), and it might have a steep learning curve, but when you know how to use it, it is very fast and powerful to use.

9 Tools Preamble Running LAT E X Editor Texmaker. Texmaker ( is a cross platform editor that have many enhancments for working with L A T E X.

10 Tools Preamble Running LAT E X IDEs There are several IDEs available, for writing L A T E X documents. Some examples are: Linux Kile is good. Install from your package manager Windows T E XnicCenter ( OS X TexShop ( For an all-in-one install of L A T E X, TexShop and several other tools, use MacTex (

11 Tools Preamble Running LAT E X rubber If you prefer to use the command line for making your documents, there are some tools that might help you. Some people create makefiles to create their documents. In stead of creating one for yourself, you can use rubber (http: // a script that automates many of things you otherwise would have had to do manually.

12 Tools Preamble Running LAT E X JabRef You will be creating a database of the papers that you read. Although using a plain text editor will work just fine, using a program to manage your references might make things a bit more easy. JabRef ( makes it easy to manage your database, with a nice GUI. It is java-based, so it works on most common platforms. If you are on OS X, BibDesk ( is a good, native alternative (my personal preferense).

13 Tools Preamble Running LAT E X The Preamble An Example \ documentclass [11 pt, a4paper, e n g l i s h ] { a r t i c l e } \ usepackage [ l a t i n 1 ] { inputenc } \ usepackage [ T 1 ] { fontenc } \ usepackage { babel } \ usepackage { u r l } \ t i t l e { L i t e r a t u r e Survey } \ author { \ \ Oslo U n i v e r s i t y College \ \ \ u r l { simen. hagen@iu. hio. no } } \ date { January 21 st, 2008} %% Leave t h i s out %% and i t w i l l use todays date.

14 Tools Preamble Running LAT E X The body An Example \ begin { document } \ m a k e t i t l e \ begin { a b s t r a c t } In t h i s section I write my abstract. An abstract is the authors version of a short summary. I t often includes a short guide to the a r t i c l e. \ end { a b s t r a c t } \ section { I n t r o d u c t i o n } This i s a l i t e r a t u r e survey on a t o p i c t h a t I have chosen \ c i t e {MEGA}. \ section {A chapter } In t h i s part I w i l l write some important information about the topic that I have chosen \ cite [ page~2]{mega}. \ section { Conclusion } Now i t is time to wrap up and think of something very impressive to say. \ bibliography { example } \ bibliographystyle { p l a i n } \ end { document }

15 Tools Preamble Running LAT E X The Resulting Page Literature Survey Oslo University College simen.hagen@iu.hio.no January 21st, 2008 Abstract In this section I write my abstract. An abstract is the authors version of a short summary. It often includes a short guide to the article. 1 Introduction This is a literature survey on a topic that I have chosen[1]. 2 A chapter In this part I will write some important information about the topic that I have chosen[1, page 2]. 3 Conclusion Now it is time to wrap up and think of something very impressive to say. References [1] Siri Fagernes and. The MEGA project - virtual emotions in mixed reality. Technical Report N 50/2002, Telenor Research and Development, Fornebu, Norway,

16 Tools Preamble Running LAT E X How to run L A T E X You can use any text editor to write your L A T E X-files. The L A T E X-file typically ends with the extension.tex. I would recommend Emacs since it has many functions to help you write your code. When you have written the document, you run the L A T E X-program with the following command: $ latex <my_latex_file>.tex If all goes well, your code compiles without errors, and it produces a.dvi document. You can view this document with any dvi viewer, e.g. xdvi in a UNIX environment, or with yap if you are using windows (and the MiKTeX-package for windows). You can also convert your.dvi files into.ps with dvips, or to.pdf with dvipdf. You could also use the command pdflatex instead of the normal latex to produce a.pdf directly.

17 Basics Math Figures Document Classes Any document written in L A T E X need to have a document class. The document class defines how the document will be rendred on the page. The example on the previous slides used the article style, but there are others available. The most common ones are: article report book There is also a letter class, and more can be downloaded or you can create your own. For your survey, the article class should be used.

18 Basics Math Figures Classes and properties There are a number of properties you can set that influences the document created. The syntax for the command is \ documentclass [ options ] { class } The class is as on the previous slide, and you can have several options, dependent on the class you have chosen. Below is a list of a few of the possibilities. 10pt 11pt 12pt letterpaper a4paper onecolumn twocolumn oneside twoside draft final

19 Basics Math Figures Writing Text You write text just as normal, plain text. There are a few reserved characters (see table below). Commands start with a \. Commands can occur anywhere in the text. You signal a new paragraph with a blank line.

20 Basics Math Figures Reserved Characters Character Write Character Write # \# } \} $ \$ _ \_ % \% ^ \textasciicircum & \& ~ \textasciitilde { \{ \ \textbackslash

21 Basics Math Figures Sections It is common practice to divide a document into parts. In L A T E Xthere are several commands, taking the form \section_comand{title}. These commands are: part chapter section paragraph subsection subparagraph subsubsection These commands produce sectioning numbers, and are automatically added to a table of context. There is also a version of the sectoning commands, on the form \section_comand*{title}, that do not produce sectioning numbers, or produce an entry into the table of context.

22 Basics Math Figures Text Formating You can mark text in several different ways. Here is a list of the most common ways: Command \emph{...} \textbf{...} \textsc{...} \texttt{...} Result Italic Bold CAPITALISE Typewriter It is also possible to combine the text formating to have Italic Bold or BOLD CAPITALISE.

23 Basics Math Figures Creating Lists \ begin { i t e m i z e } \ item Item number one \ item Item number two \ item Item number three \ item And so on... \ end { i t e m i z e } Item number one Item number two Item number three And so on... \ begin { enumerate } \ item Item number one \ item Item number two \ item Item number three \ item And so on... \ end { enumerate } 1 Item number one 2 Item number two 3 Item number three 4 And so on...

24 Basics Math Figures Creating Lists... Continued \ begin { d e s c r i p t i o n } \ item [ Term 1] Term number one \ item [ Term 2] Term number two \ item [ Term 3] Term number three \ item [ Term 4] And so on... \ end { d e s c r i p t i o n } Term 1 Term number one Term 2 Term number two Term 3 Term number three Term 4 And so on...

25 Basics Math Figures Verbatim Text Sometimes it is necessary to type something that should appear exactly as typed, without L A T E X formating it. You can achieve this by using verbatim text. The text will appear exactly as typed, in a typewriter font. Using \verb+my text+ gives you verbatim text within a line. It will quote all text that appears within the + -markers. You can use any marker you like, not just +, as long as the marker do not occur in the text you are quoting.

26 Basics Math Figures Verbatim Text cont... You can also create an environment, and in this case, it will make space above and below. You use it like this: \ begin { verbatim } \ textbf {Some t e k s t. } \ end { verbatim } \textbf{some tekst.}

27 Basics Math Figures Program Listings You may also want to refer to a program file, or some code that you have written. You can use \verb for this, but you can also use the package listings. It will pretty print your code for you, and it support most popular languages, including L A T E X. \ l s t s e t { language =[ ] TeX} \ l s t s e t { b a s i c s t y l e =\ s c r i p t s i z e } \ l s t i n p u t l i s t i n g [ f i r s t l i n e =1, l a s t l i n e =12]{ example 1. tex } \ begin { l s t l i s t i n g }... some code... \ end { l s t l i s t i n g }

28 Basics Math Figures Math in L A T E X It is easy to write formulas in L A T E X. You can write inline formulas like A = B 2 + C 2. This is written like $A = \sqrt{b^2 + C^2}$.

29 Basics Math Figures Math in L A T E X You can also write larger formulas that are written in a new paragraph. Then you would write: \ begin { equation } A = \ sqrt {B^2 + C^2} \ end { equation } to get the the following: A = B 2 + C 2 (1) As you can see, this equation have a number, and this number can be referenced.

30 Basics Math Figures Math in L A T E X \ begin { displaymath } A = \ sqrt {B^2 + C^2} \ end { displaymath } Which gives you this: A = B 2 + C 2 In this case there is no equation number. You could also use the short hand version that can be written $$... $$.

31 Basics Math Figures Using Illustrations It is easy to include graphics in L A T E X, but you have to include an extra package to do it. \usepackage{graphicx} Then, somewhere in your document you write: \includegraphics[height=3cm]{some_picture}. L A T E X, unfortunately, only understands.eps pictures (Encapsulated PostScript). If you use pdfl A T E X, it understands a few more formats (.jpg,.png and.pdf). You do not have to specify the extension.

32 Basics Math Figures Floating Figures You can create floating figures. L A T E X will place a floating figure wherever it finds room for it. It is the preferred way of doing tables, pictures etc. Using the example from the previous slide, we can create a floating figure like this: \ begin { f i g u r e } [ t ] \ centering \ i n c l u d e g r a p h i c s [ h e i ght =3cm ] { some_ p i c t u r e } \ caption { This i s my l i t t l e p i c t u r e } \ end { f i g u r e } If you make your images and figures floating, you will save yourself a lot of problems later on.

33 Basics Math Figures Cross references Often, we want to refer to something in our text, like a figure or table. And often, particularly if we are using floating figures, we do not know where they are, exactly. Enter the cross reference. Before we can reference anything, we have to create a label. If we expand the example from the previous slide, we can create a label like this: \ begin { f i g u r e } [ t ] \ centering \ i n c l u d e g r a p h i c s [ h e i g h t =3cm ] { some_ p i c t u r e } \ caption { This i s my l i t t l e p i c t u r e } \ label { p i c t u r e } \ end { f i g u r e } We can now reference the page that the label occur on by using \pageref{picture}, or the figure number by using \ref{picture}. For more diverse reference-naming, see the package varioref.

34 BIBT E X For starters Running The Database BIBT E X is an external program that helps you manage your references when writing in L A T E X. First you have to create a database of your references. You can then use L A T E X commands to access the reference trough a key that you have defined. When you have written your document and made your references, you start by funning L A T E X on your document. You will get a couple of messages complaining that there are missing references, but that is normal. Now you run BIBT E X on that file, and finally you run L A T E X two more times. You should now have your bibliography.

35 Running The Database Creating the database At some point you have to create the database. It is just a text file (with a.bib extension), formated in a particular way. There are several different types of entries in the database (see for example Teaching/07.231//bibtex.html for a list). Some of the more common are: article An article from a journal or magazine. book A book with an explicit publisher. proceedings An article in a conference proceedings. techreport A report published by a school or other institution, usually numbered within a series.

36 The Entries For starters Running The Database In the database, each entry starts with and all the fields in the database is enclosed within curly-braces ( { and } ). Below is a sample { Mega, author = { S i r i Fagernes and }, t i t l e = { The {MEGA} P r o j e c t V i r t u a l Emotions i n Mixed R e a l i t y }, i n s t i t u t i o n = { Telenor Research and Development }, year = 2002, number = {N 50/ 2002}, address = { Fornebu, Norway } }

37 References For starters Running The Database When we have created an entry and want to refer to it, we use the \cite[extra]{key} command. If we write the following \ section { I n t r o d u c t i o n } This i s a l i t e r a t u r e survey on a t o p i c t h a t I have chosen \ c i t e {MEGA}. We get

38 References For starters Running The Database If we give some additional information to te command, like this \ section {A chapter } In t h i s part I w i l l write some important information about the topic that I have chosen \ cite [ page~2]{mega}. We get

39 The Result For starters Running The Database When everything is done, and you have produced the final document, you might get something like this:

40 Reference style For starters Running The Database There are four basic styles available for how your referencing and bibliography will look. They are plain, unsrt, abbrv and alpha. There is also a host of other styles that you can install and use in you documents, but these four should be present on all systems. You can set which style by using the command \bibliographystyle{<style>}.

41 Reference style For starters Running The Database To insert the bibliography, you give the command \bibliography{<bib-databases>}, where <bib-databases> is a comma-separated list of the database files that you use in your document. So, given that your database is called example, you could add the following commands where you want the bibliography to appear. \bibliographystyle{plain} \bibliography{example}

42 Books For starters Running The Database This is a nice introduction and reference book to L A T E X. It has lots of examples and useful information. (Link to amazon)

43 Books For starters Running The Database This is a very good reference book, and is quite a bit more advanced than the Guide to L A T E X. It is considered to be THE reference to L A T E X. (Link to amazon)

44 Running The Database More Information Dag Langmyr has some good L A T E X references in Norwegian at his homepage You can find a simple introduction to L A T E X at http: // There is a good hypertext reference at http: // L A T E X by Example is another easy to use reference: http: //cs5.ecok.edu/byexample/byexample.html. L A T E X help on commands textprocessing/tetex/latex/latex2e-html/

45 Running The Database Even More Information There is a L A T E X FAQ at AUCT E X is a package for GNU Emacs and XEmacs for writing T E X and L A T E X files: CTAN is the Comprehensive T E X Archive Network, and has a lot of information about T E Xand L A T E X: CTAN also has The Not So Short Introduction to, also known as in 131 minutes. lshort/english/lshort.pdf.

How to make a presentation with L A TEX?

How to make a presentation with L A TEX? How to make a presentation with L A TEX? Department of computer science King Saud University November 23, 2015 1 / 49 Contents 1 to L A TEX 2 2 / 49 to L A TEX L A TEX( pronounced /"la:tex/, /"la:tek/,

More information

L A TEXtutorial. The very basics for typesetting research papers. Dr. Robin Roche. February 23, 2018

L A TEXtutorial. The very basics for typesetting research papers. Dr. Robin Roche. February 23, 2018 L A TEXtutorial The very basics for typesetting research papers Dr. Robin Roche February 23, 2018 Dr. Robin Roche LATEXtutorial February 23, 2018 1 / 11 What is L A TEX? L A TEX(pronounced latek ) is a

More information

LaTeX in a nutshell. Master on Libre Software Miguel Vidal. September 24, GSyC/Libresoft URJC

LaTeX in a nutshell. Master on Libre Software Miguel Vidal. September 24, GSyC/Libresoft URJC Master on Libre Software 2010 mvidal@gsyc.urjc.es GSyC/Libresoft URJC September 24, 2010 (cc) 2010. Some rights reserved. This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License,

More information

Joy Allen. March 12, 2015

Joy Allen. March 12, 2015 LATEX Newcastle University March 12, 2015 Why use L A TEX? Extremely useful tool for writing scientific papers, presentations and PhD Thesis which are heavily laden with mathematics You get lovely pretty

More information

Biostatistics Student Seminar An Introduction To L A T E X

Biostatistics Student Seminar An Introduction To L A T E X Biostatistics Student Seminar An Introduction To L A T E X Josh Murray Osvaldo Espin-Garcia (edition) Dalla Lana School of Public Health University of Toronto Introduction There are four stages to creating

More information

Latex Review Beamer: Presentations and Posters Citations & References. L A TEXWorkshop. Mai Ha Vu. University of Delaware.

Latex Review Beamer: Presentations and Posters Citations & References. L A TEXWorkshop. Mai Ha Vu. University of Delaware. L A TEXWorkshop Mai Ha Vu University of Delaware February 10, 2016 1 / 22 Table of Contents Latex Review Beamer: Presentations and Posters Citations & References 2 / 22 Getting started 1. L A TEXdistribution

More information

Comp 11 Lectures. Mike Shah. July 26, Tufts University. Mike Shah (Tufts University) Comp 11 Lectures July 26, / 40

Comp 11 Lectures. Mike Shah. July 26, Tufts University. Mike Shah (Tufts University) Comp 11 Lectures July 26, / 40 Comp 11 Lectures Mike Shah Tufts University July 26, 2017 Mike Shah (Tufts University) Comp 11 Lectures July 26, 2017 1 / 40 Please do not distribute or host these slides without prior permission. Mike

More information

Freedom from Powerpoint

Freedom from Powerpoint Freedom from Powerpoint An introduction to creating clear, structured, & efficient presentations & notes for conferences and lectures with L A TEX 2εand Beamer Simon Angus School of Economics 11 October,

More information

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells Introduction How to use this book This guide is meant as a standard reference to definitions, examples, and Mathematica techniques for linear algebra. Complementary material can be found in the Help sections

More information

A GUI FOR EVOLVE ZAMS

A GUI FOR EVOLVE ZAMS A GUI FOR EVOLVE ZAMS D. R. Schlegel Computer Science Department Here the early work on a new user interface for the Evolve ZAMS stellar evolution code is presented. The initial goal of this project is

More information

A few words on white space control

A few words on white space control A few words on white space control General Description The control of leading and trailing white spaces is always a problem regarding XML document processing. You always have to decide where you want to

More information

Moving into the information age: From records to Google Earth

Moving into the information age: From records to Google Earth Moving into the information age: From records to Google Earth David R. R. Smith Psychology, School of Life Sciences, University of Hull e-mail: davidsmith.butterflies@gmail.com Introduction Many of us

More information

BASIC TECHNOLOGY Pre K starts and shuts down computer, monitor, and printer E E D D P P P P P P P P P P

BASIC TECHNOLOGY Pre K starts and shuts down computer, monitor, and printer E E D D P P P P P P P P P P BASIC TECHNOLOGY Pre K 1 2 3 4 5 6 7 8 9 10 11 12 starts and shuts down computer, monitor, and printer P P P P P P practices responsible use and care of technology devices P P P P P P opens and quits an

More information

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 A (Mostly) Correctly Formatted Sample Lab Report Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 August 26, 2008 Abstract Your abstract should not be indented and be single-spaced. Abstracts

More information

Scripting Languages Fast development, extensible programs

Scripting Languages Fast development, extensible programs Scripting Languages Fast development, extensible programs Devert Alexandre School of Software Engineering of USTC November 30, 2012 Slide 1/60 Table of Contents 1 Introduction 2 Dynamic languages A Python

More information

1 Introduction. Multimedia, Vision and Graphics Laboratory

1 Introduction. Multimedia, Vision and Graphics Laboratory Multimedia, Vision and Graphics Laboratory Rumelifeneri Yolu, Sarıyer, 34450, İstanbul / Turkey date: September 3, 2017 to: Engin Erzin from: M. A. Tuğtekin Turan subject: On the Use of MVGL Report Template

More information

Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week:

Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week: Biology 559R: Introduction to Phylogenetic Comparative Methods Topics for this week: Course general information About the course Course objectives Comparative methods: An overview R as language: uses and

More information

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601

A Brief Introduction To. GRTensor. On MAPLE Platform. A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 A Brief Introduction To GRTensor On MAPLE Platform A write-up for the presentation delivered on the same topic as a part of the course PHYS 601 March 2012 BY: ARSHDEEP SINGH BHATIA arshdeepsb@gmail.com

More information

Presenting Tree Inventory. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University

Presenting Tree Inventory. Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Presenting Tree Inventory Tomislav Sapic GIS Technologist Faculty of Natural Resources Management Lakehead University Suggested Options 1. Print out a Google Maps satellite image of the inventoried block

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

The png2pdf program. Dipl.-Ing. D. Krause

The png2pdf program. Dipl.-Ing. D. Krause The png2pdf program Dipl.-Ing. D. Krause July 10, 2006 Contents 1 Overview 2 2 Installation 3 2.1 Installation from source on UNIX systems............. 3 2.1.1 Prerequisitions....................... 3

More information

ISIS/Draw "Quick Start"

ISIS/Draw Quick Start ISIS/Draw "Quick Start" Click to print, or click Drawing Molecules * Basic Strategy 5.1 * Drawing Structures with Template tools and template pages 5.2 * Drawing bonds and chains 5.3 * Drawing atoms 5.4

More information

CHEMDRAW ULTRA ITEC107 - Introduction to Computing for Pharmacy. ITEC107 - Introduction to Computing for Pharmacy 1

CHEMDRAW ULTRA ITEC107 - Introduction to Computing for Pharmacy. ITEC107 - Introduction to Computing for Pharmacy 1 CHEMDRAW ULTRA 12.0 ITEC107 - Introduction to Computing for Pharmacy 1 Objectives Basic drawing skills with ChemDraw Bonds, captions, hotkeys, chains, arrows Checking and cleaning up structures Chemical

More information

Lecture 1: Topics in Information Retrieval. Johan Bollen Old Dominion University Department of Computer Science

Lecture 1: Topics in Information Retrieval. Johan Bollen Old Dominion University Department of Computer Science Lecture 1: Topics in Information Retrieval. Johan Bollen Old Dominion University Department of Computer Science jbollen@cs.odu.edu http://www.cs.odu.edu/ jbollen January 16, 2003 Page 1 Structure 1. Class

More information

Appendix 4 Weather. Weather Providers

Appendix 4 Weather. Weather Providers Appendix 4 Weather Using weather data in your automation solution can have many benefits. Without weather data, your home automation happens regardless of environmental conditions. Some things you can

More information

PH 120 Project # 2: Pendulum and chaos

PH 120 Project # 2: Pendulum and chaos PH 120 Project # 2: Pendulum and chaos Due: Friday, January 16, 2004 In PH109, you studied a simple pendulum, which is an effectively massless rod of length l that is fixed at one end with a small mass

More information

AMS 132: Discussion Section 2

AMS 132: Discussion Section 2 Prof. David Draper Department of Applied Mathematics and Statistics University of California, Santa Cruz AMS 132: Discussion Section 2 All computer operations in this course will be described for the Windows

More information

Students will explore Stellarium, an open-source planetarium and astronomical visualization software.

Students will explore Stellarium, an open-source planetarium and astronomical visualization software. page 22 STELLARIUM* OBJECTIVE: Students will explore, an open-source planetarium and astronomical visualization software. BACKGROUND & ACKNOWLEDGEMENTS This lab was generously provided by the Red Rocks

More information

Lab 2: Photon Counting with a Photomultiplier Tube

Lab 2: Photon Counting with a Photomultiplier Tube Lab 2: Photon Counting with a Photomultiplier Tube 1 Introduction 1.1 Goals In this lab, you will investigate properties of light using a photomultiplier tube (PMT). You will assess the quantitative measurements

More information

General, Organic, And Biological Chemistry: Structures Of Life (4th Edition) PDF

General, Organic, And Biological Chemistry: Structures Of Life (4th Edition) PDF General, Organic, And Biological Chemistry: Structures Of Life (4th Edition) PDF Designed to prepare students for health-related careers, General, Organic, and Biological Chemistry: Structures of Life

More information

High-Performance Scientific Computing

High-Performance Scientific Computing High-Performance Scientific Computing Instructor: Randy LeVeque TA: Grady Lemoine Applied Mathematics 483/583, Spring 2011 http://www.amath.washington.edu/~rjl/am583 World s fastest computers http://top500.org

More information

GENERAL, ORGANIC, AND BIOLOGICAL CHEMISTRY: STRUCTURES OF LIFE (4TH EDITION) BY KAREN C. TIMBERLAKE

GENERAL, ORGANIC, AND BIOLOGICAL CHEMISTRY: STRUCTURES OF LIFE (4TH EDITION) BY KAREN C. TIMBERLAKE Read Online and Download Ebook GENERAL, ORGANIC, AND BIOLOGICAL CHEMISTRY: STRUCTURES OF LIFE (4TH EDITION) BY KAREN C. TIMBERLAKE DOWNLOAD EBOOK : GENERAL, ORGANIC, AND BIOLOGICAL CHEMISTRY: STRUCTURES

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

1.0 Mathematics in This Shell

1.0 Mathematics in This Shell 1.0 Mathematics in This Shell The expression P 1 i=1 a i is in-line mathematics, while the numbered equation 1X a i (1) i=1 is displayed and automatically numbered as equation 1. Let H be a Hilbert space,

More information

ON SITE SYSTEMS Chemical Safety Assistant

ON SITE SYSTEMS Chemical Safety Assistant ON SITE SYSTEMS Chemical Safety Assistant CS ASSISTANT WEB USERS MANUAL On Site Systems 23 N. Gore Ave. Suite 200 St. Louis, MO 63119 Phone 314-963-9934 Fax 314-963-9281 Table of Contents INTRODUCTION

More information

CAAM420: Week 3 Wednesday Notes

CAAM420: Week 3 Wednesday Notes CAAM420: Week 3 Wednesday Notes Justin DeVito 09/11/13 1 Overview of Homework 3 For an example function declaration: int rand ( ) int - return type rand - function name () - argument list (which can be

More information

Why knitr? Very first steps in knitr Reviewing knitr ATM.Rnw Further exercises. PhD Workshop Series in

Why knitr? Very first steps in knitr Reviewing knitr ATM.Rnw Further exercises. PhD Workshop Series in PhD Workshop Series in Statistics and Applied Data Science (DSP.005) part two knitr Ass.-Prof. Dr. Arbeitsgruppe Stochastik/Statistik Fachbereich Mathematik Universität Salzburg www.trutschnig.net Salzburg,

More information

www.goldensoftware.com Why Create a Thematic Map? A thematic map visually represents the geographic distribution of data. MapViewer will help you to: understand demographics define sales or insurance territories

More information

Python. Tutorial. Jan Pöschko. March 22, Graz University of Technology

Python. Tutorial. Jan Pöschko. March 22, Graz University of Technology Tutorial Graz University of Technology March 22, 2010 Why? is: very readable easy to learn interpreted & interactive like a UNIX shell, only better object-oriented but not religious about it slower than

More information

MA 580; Numerical Analysis I

MA 580; Numerical Analysis I MA 580; Numerical Analysis I C. T. Kelley NC State University tim kelley@ncsu.edu Version of October 23, 2016 NCSU, Fall 2016 c C. T. Kelley, I. C. F. Ipsen, 2016 MA 580, Fall 2016 1 / 43 Contents 1 Introduction

More information

MATLAB AND L A TEX EXAMPLES

MATLAB AND L A TEX EXAMPLES MATLAB AND L A TEX EXAMPLES ERNIE AND RYAN UNIVERSITY OF WASHINGTON Abstract. This seems as good a place as any for an abstract. Our goal is to present some examples that may facilitate the use of LATEX

More information

EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth

EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth YOU MUST READ THROUGH THIS CAREFULLY! This exercise is designed to familiarize yourself with Google Earth and some of its basic functions while

More information

Using web-based Java pplane applet to graph solutions of systems of differential equations

Using web-based Java pplane applet to graph solutions of systems of differential equations Using web-based Java pplane applet to graph solutions of systems of differential equations Our class project for MA 341 involves using computer tools to analyse solutions of differential equations. This

More information

Writing Mathematics. 1 LaTeX. 2 The Problem

Writing Mathematics. 1 LaTeX. 2 The Problem Writing Mathematics Since Math 171 is a WIM course we will be talking not only about our subject matter, but about how to write about it. This note discusses how to write mathematics well in at least one

More information

FIT100 Spring 01. Project 2. Astrological Toys

FIT100 Spring 01. Project 2. Astrological Toys FIT100 Spring 01 Project 2 Astrological Toys In this project you will write a series of Windows applications that look up and display astrological signs and dates. The applications that will make up the

More information

Newton s Cooling Model in Matlab and the Cooling Project!

Newton s Cooling Model in Matlab and the Cooling Project! Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton

More information

Contents. 6.1 Conditional statements 6.2 Iteration 6.3 Procedures and flow control

Contents. 6.1 Conditional statements 6.2 Iteration 6.3 Procedures and flow control Introduction This reference manual gives an essentially complete description of the standard facilities available in SMP. Extensive illustrative examples are included. The same text is given without these

More information

Experimental Physics I & II "Junior Lab" Fall Spring 2008

Experimental Physics I & II Junior Lab Fall Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 8.13-14 Experimental Physics I & II "Junior Lab" Fall 2007 - Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Comparing whole genomes

Comparing whole genomes BioNumerics Tutorial: Comparing whole genomes 1 Aim The Chromosome Comparison window in BioNumerics has been designed for large-scale comparison of sequences of unlimited length. In this tutorial you will

More information

Interacting Galaxies

Interacting Galaxies Interacting Galaxies Contents Introduction... 1 Downloads... 1 Selecting Interacting Galaxies to Observe... 2 Measuring the sizes of the Galaxies... 5 Making a Colour Image in IRIS... 8 External Resources...

More information

Theory versus Experiment: Analysis and Measurements of Allocation Costs in Sorting (With Hints for Applying Similar Techniques to Garbage Collection)

Theory versus Experiment: Analysis and Measurements of Allocation Costs in Sorting (With Hints for Applying Similar Techniques to Garbage Collection) Theory versus Experiment: Analysis and Measurements of Allocation Costs in Sorting (With Hints for Applying Similar Techniques to Garbage Collection) CS 152 Staff February, 2006 Introduction This handout

More information

Submitted to Econometrica A SAMPLE DOCUMENT 1

Submitted to Econometrica A SAMPLE DOCUMENT 1 Submitted to Econometrica A SAMPLE DOCUMENT 1 First Author 2,3,, Second Author 4 and and Third Author The abstract should summarize the contents of the paper. It should be clear, descriptive, self-explanatory

More information

CityGML XFM Application Template Documentation. Bentley Map V8i (SELECTseries 2)

CityGML XFM Application Template Documentation. Bentley Map V8i (SELECTseries 2) CityGML XFM Application Template Documentation Bentley Map V8i (SELECTseries 2) Table of Contents Introduction to CityGML 1 CityGML XFM Application Template 2 Requirements 2 Finding Documentation 2 To

More information

MULTIVARIABLE MATHEMATICS: LINEAR ALGEBRA, MULTIVARIABLE CALCULUS, AND MANIFOLDS BY THEODORE SHIFRIN

MULTIVARIABLE MATHEMATICS: LINEAR ALGEBRA, MULTIVARIABLE CALCULUS, AND MANIFOLDS BY THEODORE SHIFRIN Read Online and Download Ebook MULTIVARIABLE MATHEMATICS: LINEAR ALGEBRA, MULTIVARIABLE CALCULUS, AND MANIFOLDS BY THEODORE SHIFRIN DOWNLOAD EBOOK : MULTIVARIABLE MATHEMATICS: LINEAR ALGEBRA, THEODORE

More information

Fundamentals of Computational Science

Fundamentals of Computational Science Fundamentals of Computational Science Dr. Hyrum D. Carroll August 23, 2016 Introductions Each student: Name Undergraduate school & major Masters & major Previous research (if any) Why Computational Science

More information

Stellarium Walk-through for First Time Users

Stellarium Walk-through for First Time Users Stellarium Walk-through for First Time Users Stellarium is the computer program often demonstrated during our planetarium shows at The MOST, Syracuse s science museum. It is our hope that visitors to our

More information

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide This page is intentionally left blank. SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide The ACTiSys IR Programmer and SuperCELL

More information

Comp 11 Lectures. Mike Shah. July 12, Tufts University. Mike Shah (Tufts University) Comp 11 Lectures July 12, / 33

Comp 11 Lectures. Mike Shah. July 12, Tufts University. Mike Shah (Tufts University) Comp 11 Lectures July 12, / 33 Comp 11 Lectures Mike Shah Tufts University July 12, 2017 Mike Shah (Tufts University) Comp 11 Lectures July 12, 2017 1 / 33 Please do not distribute or host these slides without prior permission. Mike

More information

THE COMPLETE IDIOT'S GUIDE TO ASTROLOGY (2ND EDITION) BY MADELINE GERWICK-BRODEUR, LISA LENARD

THE COMPLETE IDIOT'S GUIDE TO ASTROLOGY (2ND EDITION) BY MADELINE GERWICK-BRODEUR, LISA LENARD Read Online and Download Ebook THE COMPLETE IDIOT'S GUIDE TO ASTROLOGY (2ND EDITION) BY MADELINE GERWICK-BRODEUR, LISA LENARD DOWNLOAD EBOOK : THE COMPLETE IDIOT'S GUIDE TO ASTROLOGY (2ND Click link bellow

More information

INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO DOWNLOAD EBOOK : INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO PDF

INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO DOWNLOAD EBOOK : INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO PDF Read Online and Download Ebook INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO DOWNLOAD EBOOK : INTRODUCING EINSTEIN'S RELATIVITY BY RAY D'INVERNO PDF Click link bellow and free register to download

More information

TikZ Tutorial. KSETA Doktorandenworkshop 2014 Christian Amstutz, Tanja Harbaum, Ewa Holt July 21,

TikZ Tutorial. KSETA Doktorandenworkshop 2014 Christian Amstutz, Tanja Harbaum, Ewa Holt July 21, TikZ Tutorial KSETA Doktorandenworkshop 2014 Christian Amstutz, Tanja Harbaum, Ewa Holt July 21, 2014 KIT University of the State of Baden-Wuerttemberg and National Laboratory of the Helmholtz Association

More information

Inorganic Chemistry By James R. Bowser

Inorganic Chemistry By James R. Bowser Inorganic Chemistry By James R. Bowser Inorganic Chemistry By James R. Bowser Designed to show students what it is like to be an inorganic chemist today, this book reflects the discipline, the mix of theory

More information

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014 Bloomsburg University Weather Viewer Quick Start Guide Software Version 1.2 Date 4/7/2014 Program Background / Objectives: The Bloomsburg Weather Viewer is a weather visualization program that is designed

More information

Comp 11 Lectures. Dr. Mike Shah. August 9, Tufts University. Dr. Mike Shah (Tufts University) Comp 11 Lectures August 9, / 34

Comp 11 Lectures. Dr. Mike Shah. August 9, Tufts University. Dr. Mike Shah (Tufts University) Comp 11 Lectures August 9, / 34 Comp 11 Lectures Dr. Mike Shah Tufts University August 9, 2017 Dr. Mike Shah (Tufts University) Comp 11 Lectures August 9, 2017 1 / 34 Please do not distribute or host these slides without prior permission.

More information

PPT PRESENTATION. What works, and what doesn t. Associate Dean USF Graduate School. Revised

PPT PRESENTATION. What works, and what doesn t. Associate Dean USF Graduate School. Revised PPT PRESENTATION TUTORIAL What works, and what doesn t RS Pollenz, PhD Associate Dean USF Graduate School Revised 5.5.10 Acknowledgment (This tutorial was based on a previous document constructed by by

More information

Biologia Molecular da Célula (Portuguese Edition)

Biologia Molecular da Célula (Portuguese Edition) Biologia Molecular da Célula (Portuguese Edition) Bruce Alberts, Alexander Johnson, Julian Lewis, Martin Raff, Keith Roberts, Peter Walter Click here if your download doesn"t start automatically Biologia

More information

Introduction to Computational Neuroscience

Introduction to Computational Neuroscience CSE2330 Introduction to Computational Neuroscience Basic computational tools and concepts Tutorial 1 Duration: two weeks 1.1 About this tutorial The objective of this tutorial is to introduce you to: the

More information

CZECHOSLOVAK JOURNAL OF PHYSICS. Instructions for authors

CZECHOSLOVAK JOURNAL OF PHYSICS. Instructions for authors CZECHOSLOVAK JOURNAL OF PHYSICS Instructions for authors The Czechoslovak Journal of Physics is published monthly. It comprises original contributions, both regular papers and letters, as well as review

More information

Discrete Mathematics

Discrete Mathematics Discrete Mathematics Jeremy Siek Spring 2010 Jeremy Siek Discrete Mathematics 1 / 24 Outline of Lecture 3 1. Proofs and Isabelle 2. Proof Strategy, Forward and Backwards Reasoning 3. Making Mistakes Jeremy

More information

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica

C:\Dokumente und Einstellungen \All Users\Anwendungsdaten \Mathematica. C:\Dokumente und Einstellungen \albert.retey\anwendungsdaten \Mathematica Installation SmartCAE`HeatTransmission` is delivered as either a Microsoft Windows Installer Package (SmartCAEHeatTransmission-1.0.msi) or a ZIP-File. If you have trouble installing the package, please

More information

Topic: The Standard Format for Importing

Topic: The Standard Format for Importing Office of Online & Extended Learning Respondus Faculty Help Topic: The Standard Format for Importing Respondus will import the following question types: Multiple choice True or False Essay (long answer)

More information

Using the kbordermatrix package

Using the kbordermatrix package Using the kbordermatrix package K Border kcb@caltechedu January 6, 00 Rev July, 0 The kbordermatrix package provides the \kbordermatrix command, which can be used to make displays such as this, taken from

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information

Planets And Moons In Our Universe: Fun Facts And Pictures For Kids (The Cosmos And The Galaxy) PDF

Planets And Moons In Our Universe: Fun Facts And Pictures For Kids (The Cosmos And The Galaxy) PDF Planets And Moons In Our Universe: Fun Facts And Pictures For Kids (The Cosmos And The Galaxy) PDF Space exploration is incredibly popular right now with adults and children alike, every day brings news

More information

Agile modeling for INF5150

Agile modeling for INF5150 Agile modeling for INF5150 Version 071012 11-Oct-07 INF5150 Unassailable IT-systems 1 Tools for INF5150 Autumn 2007 We are going to keep to the safe and already proven technology this time... 11-Oct-07

More information

NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications. Gerwin Klein Formal Methods

NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications. Gerwin Klein Formal Methods NICTA Advanced Course Theorem Proving Principles, Techniques, Applications Gerwin Klein Formal Methods 1 ORGANISATORIALS When Mon 14:00 15:30 Wed 10:30 12:00 7 weeks ends Mon, 20.9.2004 Exceptions Mon

More information

Voltage, Current, Resistance and Power Report Tips

Voltage, Current, Resistance and Power Report Tips Voltage, Current, Resistance and Power Report Tips Power in a Circuit Power can be supplied/delivered to a circuit or it can be absorbed by a circuit component. WHAT IS POWER? POWER GENERATED - + - + -

More information

Integrating WeBWorK into Textbooks

Integrating WeBWorK into Textbooks Integrating WeBWorK into Textbooks Sample Exercises Robert Beezer Department of Mathematics and Computer Science University of Puget Sound Tacoma, Washington, USA beezer@pugetsound.edu Alex Jordan Department

More information

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS

USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS USE OF MATLAB TO UNDERSTAND BASIC MATHEMATICS Sanjay Gupta P. G. Department of Mathematics, Dev Samaj College For Women, Punjab ( India ) ABSTRACT In this paper, we talk about the ways in which computer

More information

Science Analysis Tools Design

Science Analysis Tools Design Science Analysis Tools Design Robert Schaefer Software Lead, GSSC July, 2003 GLAST Science Support Center LAT Ground Software Workshop Design Talk Outline Definition of SAE and system requirements Use

More information

TMHMM2.0 User's guide

TMHMM2.0 User's guide TMHMM2.0 User's guide This program is for prediction of transmembrane helices in proteins. July 2001: TMHMM has been rated best in an independent comparison of programs for prediction of TM helices: S.

More information

Bay Area Scientists in Schools Presentation Plan

Bay Area Scientists in Schools Presentation Plan Bay Area Scientists in Schools Presentation Plan Lesson Name: We Love Gravity! Presenter(s) Virginia Lehr, Laura Hidrobo Grade Level 5 Standards Connection(s) Solar System and Gravity Teaser: Gravity is

More information

ISSP User Guide CY3207ISSP. Revision C

ISSP User Guide CY3207ISSP. Revision C CY3207ISSP ISSP User Guide Revision C Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights Copyrights

More information

Green s Functions Computation

Green s Functions Computation Green s Functions Computation User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Beatriz Máquez Villamarín (USC) Universidade de Santiago de Compostela Universidade de Vigo 1 1.

More information

INSTRUCTIONS FOR PRODUCING CAMERA-READY MANUSCRIPT USING MS-WORD FOR PUBLICATION IN CONFERENCE PROCEEDINGS *

INSTRUCTIONS FOR PRODUCING CAMERA-READY MANUSCRIPT USING MS-WORD FOR PUBLICATION IN CONFERENCE PROCEEDINGS * INSTRUCTIONS FOR PRODUCING CAMERA-READY MANUSCRIPT USING MS-WORD FOR PUBLICATION IN CONFERENCE PROCEEDINGS * FIRST AUTHOR University Department, University Name, Address City, State ZIP/Zone, Countr SECOND

More information

To whom correspondence should be addressed;

To whom correspondence should be addressed; 1 Department of Physics, University of Florida, 2001 Museum Rd., Gainesville, FL 32611, USA To whom correspondence should be addressed; E-mail: majewski@phys.ufl.edu. 1 Design of Impedance Matching Networks

More information

ADVICE ON MATHEMATICAL WRITING

ADVICE ON MATHEMATICAL WRITING ADVICE ON MATHEMATICAL WRITING KEITH CONRAD This handout lists some writing tips when you are preparing a mathematical text. The idea of using examples labeled Bad and then Good was inspired by this format

More information

Notater: INF3331. Veronika Heimsbakk December 4, Introduction 3

Notater: INF3331. Veronika Heimsbakk December 4, Introduction 3 Notater: INF3331 Veronika Heimsbakk veronahe@student.matnat.uio.no December 4, 2013 Contents 1 Introduction 3 2 Bash 3 2.1 Variables.............................. 3 2.2 Loops...............................

More information

STAT 3008 Applied Regression Analysis Tutorial 1: Introduction LAI Chun Hei

STAT 3008 Applied Regression Analysis Tutorial 1: Introduction LAI Chun Hei STAT 3008 Applied Regression Analysis Tutorial 1: Introduction LAI Chun Hei Department of Statistics, The Chinese University of Hong Kong 1 Mathematical Background In this courses, some theorems from elementary

More information

THE STANDARD MODEL IN A NUTSHELL BY DAVE GOLDBERG DOWNLOAD EBOOK : THE STANDARD MODEL IN A NUTSHELL BY DAVE GOLDBERG PDF

THE STANDARD MODEL IN A NUTSHELL BY DAVE GOLDBERG DOWNLOAD EBOOK : THE STANDARD MODEL IN A NUTSHELL BY DAVE GOLDBERG PDF Read Online and Download Ebook THE STANDARD MODEL IN A NUTSHELL BY DAVE GOLDBERG DOWNLOAD EBOOK : THE STANDARD MODEL IN A NUTSHELL BY DAVE Click link bellow and free register to download ebook: THE STANDARD

More information

Dynamics of the Atmosphere GEMPAK Lab 3. 3) In-class exercise about geostrophic balance in the real atmosphere.

Dynamics of the Atmosphere GEMPAK Lab 3. 3) In-class exercise about geostrophic balance in the real atmosphere. Dynamics of the Atmosphere GEMPAK Lab 3 Goals of this lab: 1) Learn about Linux scripts. 2) Learn how to combine levels in GEMPAK functions. 3) In-class exercise about geostrophic balance in the real atmosphere.

More information

Collaborative topic models: motivations cont

Collaborative topic models: motivations cont Collaborative topic models: motivations cont Two topics: machine learning social network analysis Two people: " boy Two articles: article A! girl article B Preferences: The boy likes A and B --- no problem.

More information

Creating Questions in Word Importing Exporting Respondus 4.0. Importing Respondus 4.0 Formatting Questions

Creating Questions in Word Importing Exporting Respondus 4.0. Importing Respondus 4.0 Formatting Questions 1 Respondus Creating Questions in Word Importing Exporting Respondus 4.0 Importing Respondus 4.0 Formatting Questions Creating the Questions in Word 1. Each question must be numbered and the answers must

More information

module, with the exception that the vials are larger and you only use one initial population size.

module, with the exception that the vials are larger and you only use one initial population size. Population Dynamics and Space Availability (http://web.as.uky.edu/biology/faculty/cooper/population%20dynamics%20examples%2 0with%20fruit%20flies/TheAmericanBiologyTeacher- PopulationDynamicsWebpage.html

More information

ARGUS.net IS THREE SOLUTIONS IN ONE

ARGUS.net IS THREE SOLUTIONS IN ONE OVERVIEW H i g h l y c o n f i g u r a b l e s o f t w a r e a c c o m m o d a t e s a w i d e r a n g e o f c o l l e c t i o n s T h r e e s o l u t i o n s c o v e r P o r t a l s, C o l l e c t i o

More information

Biology: The Study of Life

Biology: The Study of Life Biology: The Study of Life Before You Read Use the What I Know column to list three things you know about biology. Then list three questions you have about biology in the What I Want to Find Out column.

More information

BY DEBORAH BARRETT - LEADERSHIP COMMUNICATION (4TH EDITION) ( ) [HARDCOVER] BY DEBORAH BARRETT

BY DEBORAH BARRETT - LEADERSHIP COMMUNICATION (4TH EDITION) ( ) [HARDCOVER] BY DEBORAH BARRETT Read Online and Download Ebook BY DEBORAH BARRETT - LEADERSHIP COMMUNICATION (4TH EDITION) (2013-09- 04) [HARDCOVER] BY DEBORAH BARRETT DOWNLOAD EBOOK : BY DEBORAH BARRETT - LEADERSHIP COMMUNICATION Click

More information

Fundamentals of Special and General Relativity

Fundamentals of Special and General Relativity Fundamentals of Special and General Relativity K.D. Krori Click here if your download doesn"t start automatically Fundamentals of Special and General Relativity K.D. Krori Fundamentals of Special and General

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012 CSCE 155N Fall 2012 Homework Assignment 2: Stress-Strain Curve Assigned: September 11, 2012 Due: October 02, 2012 Note: This assignment is to be completed individually - collaboration is strictly prohibited.

More information