Advanced Formatting Options Preamble Commands Line Document body numbers

Size: px
Start display at page:

Download "Advanced Formatting https://www.sharelatex.com Options Preamble Commands Line Document body numbers"

Transcription

1 L A TEX Advanced Formatting Options Preamble Commands Line numbers Document body 1

2 Inserting Figure Labels and References \section{fall Holidays} Halloween activities include trick-or-treating (or the related guising), attending Halloween costume parties, carving pumpkins into jack-o'-lanterns, lighting bonfires, apple bobbing, divination games, playing pranks, visiting haunted attractions, telling scary stories, and watching horror films. In many parts of the world, the Christian religious observances of All Hallows' Eve, including attending church services and lighting candles on the graves of the dead, remain popular, although elsewhere it is a more commercial and secular celebration (Figure \ref{fig:ghalloween}). Thanksgiving Day is a national holiday celebrated in Canada, the United States, some of the Caribbean islands, and Liberia. It began as a day of giving thanks for the blessing of the harvest and of the preceding year. Similarly named festival holidays occur in Germany and Japan. Thanksgiving is celebrated on the second Monday of October in Canada and on the fourth Thursday of November in the United States, and around the same part of the year in other places. Although Thanksgiving has historical roots in religious and cultural traditions, it has long been celebrated as a secular holiday as well (Figure \ref{fig:gthanksgiving}). \begin{figure}[h] \centering \includegraphics[width=0.5\textwidth]{ghalloween}\centering\\ \caption{google Halloween logo} \label{fig:ghalloween} \centering \includegraphics[width=0.5\textwidth]{gthanksgiving}\centering\\ \caption{google Thanksgiving logo} \label{fig:gthanksgiving} \end{figure} 2

3 3 Fall Holidays Halloween activities include trick-or-treating (or the related guising), attending Halloween costume parties, carving pumpkins into jack-o -lanterns, lighting bonfires, apple bobbing, divination games, playing pranks, visiting haunted attractions, telling scary stories, and watching horror films. In many parts of the world, the Christian religious observances of All Hallows Eve, including attending church services and lighting candles on the graves of the dead, remain popular, although elsewhere it is a more commercial and secular celebration (Figure 1). Thanksgiving Day is a national holiday celebrated in Canada, the United States, some of the Caribbean islands, and Liberia. It began as a day of giving thanks for the blessing of the harvest and of the preceding year. Similarly named festival holidays occur in Germany and Japan. Thanksgiving is celebrated on the second Monday of October in Canada and on the fourth Thursday of November in the United States, and around the same part of the year in other places. Although Thanksgiving has historical roots in religious and cultural traditions, it has long been celebrated as a secular holiday as well (Figure 2). Figure 1: Google Halloween logo Figure 2: Google Thanksgiving logo 3

4 Inserting Tables \begin{table}[h] \centering \begin{tabular}{ c c } \textbf{fruit} & \textbf{color} \\ Apple & Red \\ Banana & Yellow\\ \end{tabular} \caption{fruits} \label{tab:fruits} \end{table} Fruit Apple Banana Yelda Serinagaoglu, Ph.D. Color Red Yellow Table 1: Fruits \begin{table}[h] \centering \begin{tabular}{ c c }\hline \textbf{fruit} & \textbf{color} \\\hline Apple & Red \\\hline Banana & Yellow\\\hline \end{tabular} \caption{more Fruits} \label{tab:more Fruits} \end{table} Fruit Color Apple Red Banana Yellow Table 2: More Fruits 4

5 Formatting the Document \documentclass[12pt]{article} \setlength{\parindent}{4em} \setlength{\parskip}{1em} \linespread{value} to change the font size to set the paragraph indentation where 1 em is a typographer's unit of horizontal spacing and is a sliding (relative) measure. 1 em is a distance equal to the text size. to set the space between paragraphs to set the space between lines (set the value to 1 for single space, 1.3 for one and a half space, and 1.6 for double space) Use the package geometry in order to change the page formatting. \usepackage[letterpaper, total={6.5in, 9in}]{geometry} or \usepackage{geometry} \geometry{letterpaper, total={6.5in, 9in}} to set the paper size to letter size, and text area to 6.5X9 inches \usepackage[legalpaper, landscape, margin=2in]{geometry} or \usepackage{geometry} \geometry{legalpaper, landscape, margin=2in} to set the paper size to legal paper size, page layout to landscape, and margins to 2 inches 5

6 Inserting Table of Contents and List of Figures/Tables \tableofcontents Contents to insert a table of contents Yelda Serinagaoglu, Ph.D. 1 Introduction 5 2 Mathematical Equations Example Example Example Example Chemical Equations 8 4 Table Examples Example Example Fall Holidays 10 \listoffigures to insert a list of figures List of Figures 1 Google Halloween logo Google Thanksgiving logo \listoftables to insert a list of tables List of Tables 1 Fruits More Fruits

7 Inserting Bibliographies Before you insert citations and create a bibliography, you need to first generate a *.bib file that contains your citation list. You may do so by several ways: 1) You can export a list out of a reference manager software, such as Mendeley, EndNote, Papers, etc. 2) You can copy and paste citations in the bibtex format into a *.bib file in ShareLatex. 3) You can write individual citations in the *.bib file in ShareLatex in the format shown below. \usepackage{biblatex} \addbibresource{mybibl.bib} to define bibliography file location A citation in your *.bib file looks like this: 7

8 \cite{bannatyne1998-py} to cite a resource For example: Halloween activities include trick-or-treating (or the related guising), attending Halloween costume parties, carving pumpkins into jack-o'-lanterns, lighting bonfires, apple bobbing, divination games, playing pranks, visiting haunted attractions, telling scary stories, and watching horror films \cite{bannatyne1998-py}. In many parts of the world, the Christian religious observances of Halloween activities include trick-or-treating (or the related guising), attending Halloween costume parties, carving pumpkins into jack-o -lanterns, lighting bonfires, apple bobbing, divination games, playing pranks, visiting haunted attractions, telling scary stories, and watching horror films [1]. In many parts of the world, the Christian religious observances of \printbibliography to create your reference list References [1] Lesley Bannatyne. HALLOWEEN: An American Holiday, an American History. en. Pelican Publishing Company, Aug [2] Elizabeth Pleck. The Making of the Domestic Occasion: The History of Thanksgiving in the United States. In: J. Soc. Hist (1999), pp

9 Generating Mathematical Equations These commands are to be used with the amsmath package. \begin{equation} f(x)=x^3+2 \end{equation} \begin{equation} 2x^{34} \end{equation} f(x) =x 3 +2 (1) 2x 3 (2) To make sure two formulas are aligned, we use the align command: \begin{align} f(x)=x^3+2\\f(x+4)= x^2+7 \end{align} f(x) =x 3 +2 (3) f(x +4)=x 2 +7 (4) \begin{equation} \label{e:eq5} \begin{split} H_c&=\frac{1}{2n} \sum^n_{l=0}(-1)^{l}(n-{l})^{p-2} \sum_{l_1+\dots+ l_p=l}\prod^p_{i=1} \binom{n_i}{l_i}\\ &\cdot[(n-l)-(n_i-l_i)]^{n_i-l_i}\cdot \Bigl[(n-l)^2-\sum^p_{j=1}(n_i-l_i)^2\Bigr]. \end{split} \end{equation} H c = 1 2n nx X ( 1) l (n l) p 2 l=0 py l 1 + +l p=l i=1 ni px [(n l) (n i l i )] n i li h(n l) 2 (n i l i ) i. 2 l i j=1 (5) * This equation example was taken from the User s Guide for the amsmath Package (Version 2.0). 9

True Halloween 2. True Halloween 2

True Halloween 2. True Halloween 2 We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with true halloween 2. To

More information

The History of Halloween A Reading A Z Level R Leveled Book Word Count: 934

The History of Halloween A Reading A Z Level R Leveled Book Word Count: 934 The History of Halloween A Reading A Z Level R Leveled Book Word Count: 934 LEVELED BOOK R Connections Writing Create a Venn diagram comparing how Halloween is celebrated today to how it was celebrated

More information

True Halloween 2. The Truth On Halloween halloween was thought to be the most favorable time for divinations concerning marriage, luck,

True Halloween 2. The Truth On Halloween halloween was thought to be the most favorable time for divinations concerning marriage, luck, We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with true halloween 2. To

More information

New Scores in 2017 National Day Holiday

New Scores in 2017 National Day Holiday PREMIERE ERA O C T New Scores in 2017 National Day Holiday Over 132 Million Railway Trips Several railway traffic indices set new highs, with the daily average number of passengers over 10 million for

More information

ONLINE ENGLISH EXERCISES

ONLINE ENGLISH EXERCISES ONLINE ENGLISH EXERCISES Name: number: 8º GRAMMAR EXERCISES 1. Write the comparative form of each adjective. Example: big = bigger (than) a) happy = b) angry = c) bad = d) important = e) good = f) hot

More information

30 WRITING PROMPTS 6 G E N R E S

30 WRITING PROMPTS 6 G E N R E S 30 WRITING PROMPTS 6 G E N R E S 5 writing prompts on the #narrative #writingprompt 1 The Zombie that was allergic to brains #narrative #writingprompt 2 The magic potion that turned me into... #narrative

More information

Trick or Treat UNIT 19 FICTION. #3893 Nonfiction & Fiction Paired Texts 100 Teacher Created Resources

Trick or Treat UNIT 19 FICTION. #3893 Nonfiction & Fiction Paired Texts 100 Teacher Created Resources FICTION Trick or Treat Hurry, children. It s almost time to go! Nancy took one last look in the mirror. She liked her costume. She was a cat for Halloween. Her shirt and pants were both black. Her mother

More information

Designed by: Candie Donner

Designed by: Candie Donner Designed by: Candie Donner History Of Halloween Lapbook Copyright 2012 Knowledge Box Central www.knowledgeboxcentral.com ISBN # CD 978-1-61625-675-3 PRINTED 978-1-61625-676-0 EBOOK 978-1-61625-677-7 ASSEMBLED

More information

Activty 1. Answer the questions

Activty 1. Answer the questions 1 Name: _ HALLOWEEN Halloween is a celebration. It is on October 31. Halloween isn't a holiday but it is a very special day for children in Canada, the United States and some other countries around the

More information

Halloween. October 31 st - the scariest night of the year!

Halloween. October 31 st - the scariest night of the year! Halloween October 31 st - the scariest night of the year! Halloween Halloween is celebrated on 31 st October every year. The tradition of Halloween started in Ireland and is now popular in the United Kingdom

More information

S.E.E. Significant Emotional Experience. What pictures can be used to make abstract concepts concrete? View, Preview, Overview, Review

S.E.E. Significant Emotional Experience. What pictures can be used to make abstract concepts concrete? View, Preview, Overview, Review Content Objectives TLW understand, describe, and explain the importance of family customs and traditions (TEKS 12A) TLW compare family customs and traditions (TEKS 12B) TLW identify examples of technology

More information

HALLOWEEN OR ALL SAINTS HOLIDAY. 1. Brainstorming. jack-o-lantern

HALLOWEEN OR ALL SAINTS HOLIDAY. 1. Brainstorming. jack-o-lantern HALLOWEEN OR ALL SAINTS HOLIDAY 1. Brainstorming. 1. Jack-o-lanterns 2. Costumes 3. Trick or treating 4. Bobbing for apples 5. Date All Saints Days 1. Cementeries 2. Illuminating the dead 3. Sweets & Special

More information

Halloween tree : Assembly Instructions

Halloween tree : Assembly Instructions Halloween tree : Assembly Instructions Before starting assembly: Writing the number of each section on its back side before cutting out the sections is highly recommended. (* This way, you can be sure

More information

Jack-o -lantern. Integrated Module Grades 1-2. Della Bell MAP Senior Leader. Moberly School District. Central Regional MAP Center

Jack-o -lantern. Integrated Module Grades 1-2. Della Bell MAP Senior Leader. Moberly School District. Central Regional MAP Center Jack-o -lantern Integrated Module Grades 1-2 by Della Bell MAP Senior Leader Moberly School District Central Regional MAP Center Third Edition: Performance-Based Assessments for Classroom Use: Missouri

More information

The History of Halloween A Reading A Z Level X Leveled Book Word Count: 1,422

The History of Halloween A Reading A Z Level X Leveled Book Word Count: 1,422 The History of Halloween A Reading A Z Level X Leveled Book Word Count: 1,422 LEVELED BOOK X Connections Writing Create a Venn diagram comparing how Halloween is celebrated today to how it was celebrated

More information

#024: CELEBRATE HALLOWEEN JUST LIKE AN AMERICAN

#024: CELEBRATE HALLOWEEN JUST LIKE AN AMERICAN #024: CELEBRATE HALLOWEEN JUST LIKE AN AMERICAN Hi, everyone! I'm Georgiana, founder of SpeakEnglishPodcast.com. My mission is to help YOU to speak English fluently and confidently. In today's episode:

More information

Spooky Celebration Activity Book 1

Spooky Celebration Activity Book 1 Spooky Celebration Activity Book 1 Usage and Legal Notices Rules of Use RIGHTS RESERVED. As a purchaser of this coloring book, you have the right to make multiple copies of it for your own use or distribution

More information

Halloween. Beginner Level. Holidays & Events

Halloween. Beginner Level. Holidays & Events Halloween Beginner Level Copyright 2015, Red River Press Inc. For use by members of ESL Library in accordance with membership terms. 1 Vocabulary Preview Match the words on the left with the correct meanings

More information

Halloween. The Celts. The Catholics

Halloween. The Celts. The Catholics Halloween The Celts About 2500 years ago in Ireland there lived the Celts. When summer ended and they had brought the last of their food in for the winter, they had a holiday. This was also the beginning

More information

e-lesson Week starting: 22 nd October 2007

e-lesson Week starting: 22 nd October 2007 INSTITUT TEKNOLOGI BANDUNG UPT PUSAT BAHASA Labtek VIII Lantai 1, Jalan Ganesa, 10 Bandung 40132 Indonesia Tel: 022-4254037 Fax: 022-2505674, Website: www.lc.itb.ac.id E-mail: pusatbhs@gerbang.lc.itb.ac.id

More information

EVERYTHING YOU EVER WANTED TO KNOW ABOUT HALLOWEEN BUT WERE AFRAID TO ASK

EVERYTHING YOU EVER WANTED TO KNOW ABOUT HALLOWEEN BUT WERE AFRAID TO ASK EVERYTHING YOU EVER WANTED TO KNOW ABOUT HALLOWEEN BUT WERE AFRAID TO ASK The Kaleidoscope of candy has lined our grocery store shelves, trips to lush pumpkin fields are on Saturday schedules, and new

More information

And the Adventist Christian. By Barrington H. Brennen October 21, 2015

And the Adventist Christian. By Barrington H. Brennen October 21, 2015 And the Adventist Christian By Barrington H. Brennen October 21, 2015 Questions: When did Halloween start? What does the Bible say about Halloween? Should Adventists participate in Halloween? Can we dress

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

A Guide to Presentations in L A TEX-beamer. Trinity University

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 a Presentation Outline 1 Intro

More information

Should Christians Participate in Halloween?

Should Christians Participate in Halloween? Should Christians Participate in Halloween? Introduction This presentation is made available as a public service due to its Biblical and historic value. The presenter should become thoroughly familiar

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

Teacher s Guide. Written by Barri Golbus Produced by Colman Communications Corp.

Teacher s Guide. Written by Barri Golbus Produced by Colman Communications Corp. Holiday Facts & Fun: HALLOWEEN Second Edition Teacher s Guide Written by Barri Golbus Produced by Colman Communications Corp. Table of Contents Page Program Overview 3 Viewer Objectives 4 Suggested Lesson

More information

PHYS Exercise: Typeset this by changing the default bullet symbol twice.

PHYS Exercise: Typeset this by changing the default bullet symbol twice. PHYS 87 Exercises (January 3, 09):. Exercise: Typeset this by changing the default bullet symbol twice. > The first entry here > Then the second > etc The first entry here Then the second etc Hint: Use

More information

DAY 2 ENGLISH FOR EVERYONE E4E

DAY 2 ENGLISH FOR EVERYONE E4E HALLOWEEN DAY 2 ENGLISH FOR EVERYONE E4E 11/1/2017 NO CLASS NEXT FRIDAY NOVEMBER 3 THIS UNIT: HALLOWEEN History Vocabulary What to expect tomorrow TODAY HOMEWORK REVIEW VOCABULARY REVIEW HOMEWORK REVIEW

More information

CELEBRATE HALLOWEEN AND THE DAY OF THE DEAD LESSON PLAN FOR GRADES 3 6

CELEBRATE HALLOWEEN AND THE DAY OF THE DEAD LESSON PLAN FOR GRADES 3 6 CELEBRATE HALLOWEEN AND THE DAY OF THE DEAD LESSON PLAN FOR GRADES 3 6 Content Overview: In the fiction story, Cristina s family prepares for Halloween and the Day of the Dead with costumes and an altar

More information

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise.

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise. PHYS 87 Exercises (February 7, 2018): 1. Exercise: try typesetting this It doe snot work with beamer > The first entry here > Then the second > etc The first entry here Then the second etc Hint: Use \textgreater

More information

PHYS 87. Don t expect to go through all of these today. Will continue next week. 1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2.

PHYS 87. Don t expect to go through all of these today. Will continue next week. 1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. Exercises (May 7, 07): PHYS 87 Don t expect to go through all of these today. Will continue next week.. Typeset a = b c = d e = f g = b h = d k = f. Typeset a = b + c 3. Typeset two of these:,,, 4. Typeset

More information

DISCOVERY CLASS NEWSLETTER: OCTOBER/NOVEMBER 2017

DISCOVERY CLASS NEWSLETTER: OCTOBER/NOVEMBER 2017 NEWSLETTER: OCTOBER/NOVEMBER 2017 DISCOVERY CLASS TEACHERS: MS. MARY ELLEN DEMPSEY & MS. BRITTANY NUNLEY In October, the children celebrated Sukkot. Our discoverers learned some Israelite history through

More information

Halloween. Produced by Excellent ESL 4u

Halloween. Produced by Excellent ESL 4u Halloween Produced by Excellent ESL 4u Afraid To feel fear in a situation. American Something to do with the USA or the people who live there. Bad The opposite of good, not a good thing. Bats Flying animal

More information

LISTEN A MINUTE.com. Halloween. Focus on new words, grammar and pronunciation in this short text.

LISTEN A MINUTE.com. Halloween.   Focus on new words, grammar and pronunciation in this short text. LISTEN A MINUTE.com Halloween http://www.listenaminute.com/h/halloween.html One minute a day is all you need to improve your listening skills. Focus on new words, grammar and pronunciation in this short

More information

HALLOWEEN: 1) ITS ORIGIN: WHEN DID IT START? 2) WHO FIRST CELEBRATED IT? 3) THE CUSTOMS: FROM WHERE? 4) SHOULD YOU CELEBRATE IT?

HALLOWEEN: 1) ITS ORIGIN: WHEN DID IT START? 2) WHO FIRST CELEBRATED IT? 3) THE CUSTOMS: FROM WHERE? 4) SHOULD YOU CELEBRATE IT? HALLOWEEN: 1) ITS ORIGIN: WHEN DID IT START? 2) WHO FIRST CELEBRATED IT? 3) THE CUSTOMS: FROM WHERE? 4) SHOULD YOU CELEBRATE IT? Origin of Halloween Page 1 of 7 HALLOWEEN BELIEFS HANDED DOWN IN HISTORY

More information

Halloween spending is a scary amount of money

Halloween spending is a scary amount of money Halloween spending is a scary amount of money By Los Angeles Times, adapted by Newsela staff on 10.29.15 Word Count 857 Guests wait along Main Street USA for Mickey Mouse's "Boo-To-You" Halloween Parade

More information

Listening Comprehension Sample 1

Listening Comprehension Sample 1 本校での入試説明会において既に発表の通り 来年度今年度 ( 平成 30 年 2 月実施 ) より 高等 学校入学試験において英語のリスニングテストを実施する予定です 参考としてリスニング問題のサンプルを掲載しますので ご覧ください なお音声資 料はありませんのでご了承ください Listening Comprehension Sample 1 A lot of countries around The

More information

Pemberton Hall Program of the Year Spirits of Pemberton

Pemberton Hall Program of the Year Spirits of Pemberton Pemberton Hall Program of the Year Spirits of Pemberton 1 Table of Contents Fall Festival Spooktacular Haunted House Decorations Murder Mystery Pumpkin Painting The Spell Binding Movie Night Haunted House

More information

1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. e E

1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. e E PHYS 87 Exercises (May, 08):. Typeset a = b c = d e = f g = b h = d k = f. Typeset a = b + c 3. Typeset two of these:,,,, @ 4. Typeset F = G N m m r 5. Typeset n ± (E, T ) = = e E k B T ± e ω/k BT ± Note:

More information

Halloween. October 31

Halloween. October 31 October 31 Halloween comes from an old Celtic holiday. The Celts marked the end of the harvest season. The word is a short form of the phrase, All Hallows Eve. In medieval times, poor people went door

More information

Halloween / Jack-O'-Lantern : Pattern

Halloween / Jack-O'-Lantern : Pattern *Keep scissors and glue away from small children. *Be careful not to cut your fingers when using scissors. *This jack-o'-lantern is not intended for use as an actual lantern. For your own safety,

More information

Pumpkin Unit: Teaching Suggestions:

Pumpkin Unit: Teaching Suggestions: Pumpkin Unit: Teaching Suggestions: Creative Thinking Activities: These are designed to stretch your students imaginations, and to help them to think in different and unique ways. Although these are fictional

More information

Fonts and alphabets licensed from

Fonts and alphabets licensed from Fonts and alphabets licensed from www.letteringdelights.com Pumpkins are a great way to teach and reinforce both Language Arts and Science standards. Hands on experiences are some of the best learning

More information

Halloween - Wednesday, October 31, Day of the Dead / Día de los Muertos *1/pk * *

Halloween - Wednesday, October 31, Day of the Dead / Día de los Muertos *1/pk * * 24 Tues., Thurs., Wed., Oct.Oct. 31 31 Fri., Nov. 2, Nov. 2018 2, 2017 Day of the Dead / Día de los Muertos 38 27 Sugar Skull 3590001 *2.37 2.51 2.79 Day of the Dead Skull Non-Foil 44228 *3.05 3.23 Sugar

More information

Grade 4 Logical Reasoning

Grade 4 Logical Reasoning ID : ae-4-logical-reasoning [1] Grade 4 Logical Reasoning For more such worksheets visit www.edugain.com Answer the questions (1) 9999 = 9000 + + 9. What is the missing number? (2) The table shows description

More information

SAMPLE ONLY. It's Halloween! It's Halloween! The moon is full and bright And we shall see what can't be seen On any other night.

SAMPLE ONLY. It's Halloween! It's Halloween! The moon is full and bright And we shall see what can't be seen On any other night. Photo Credit: Michael Kangas It's Halloween! It's Halloween! The moon is full and bright And we shall see what can't be seen On any other night. Skeletons and ghosts and ghouls, Grinning goblins fighting

More information

It's Jack O'Lantern Time!

It's Jack O'Lantern Time! FOR FUN It's Jack O'Lantern Time! Nothing says Halloween like a Jack O'Lantern. Add some Halloween flavor to your home by carving a pumpkin! Templates Include: 6 Friendly Faces 13 Silly Faces 21 Scary

More information

WEEKLY BOOKSETS. myon Digital Books about Celebrating Autumn. I See Fall (PreK) - Experience the many joys of fall. (Picture Window Books)

WEEKLY BOOKSETS. myon Digital Books about Celebrating Autumn. I See Fall (PreK) - Experience the many joys of fall. (Picture Window Books) WEEKLY BOOKSETS myon Digital Books about Celebrating Autumn I See Fall (PreK) - Experience the many joys of fall. From pumpkins and leaves to apples and Halloween. Autumn: Signs of the Seasons Around North

More information

Presentation Outline: Haunted Places in North America

Presentation Outline: Haunted Places in North America Name: Date: Presentation Outline: Haunted Places in North America Grade: / 25 Context & Task Halloween is on it s way! What better way to celebrate Halloween than to do a project on haunted places! There

More information

Origin of Halloween (All Hallows Eve) or the Day of All Saints is actually Christian

Origin of Halloween (All Hallows Eve) or the Day of All Saints is actually Christian Origin of Halloween (All Hallows Eve) or the Day of All Saints is actually Christian Author : admin Many people would "celebrate" Halloween today, however many don't know or understand the true feast origin.

More information

ArcGIS Pro: Essential Workflows STUDENT EDITION

ArcGIS Pro: Essential Workflows STUDENT EDITION ArcGIS Pro: Essential Workflows STUDENT EDITION Copyright 2018 Esri All rights reserved. Course version 6.0. Version release date August 2018. Printed in the United States of America. The information contained

More information

Solving Multi-Step Equations 1.2. ACTIVITY: Solving for the Angles of a Triangle

Solving Multi-Step Equations 1.2. ACTIVITY: Solving for the Angles of a Triangle . Solving Multi-Step Equations How can you solve a multi-step equation? How can you check the reasonableness of your solution? ACTIVITY: Solving for the Angles of a Triangle Work with a partner. Write

More information

Complete Fruit Carving Guide [Kindle Edition] By fruit carving READ ONLINE

Complete Fruit Carving Guide [Kindle Edition] By fruit carving READ ONLINE Complete Fruit Carving Guide [Kindle Edition] By fruit carving READ ONLINE Nov 23, 2011 demonstrating how to carve a turkey in a video from 2007. An Unusual Vegetable, N.Y.C. Events Guide; Television;

More information

First and last name of the author. Title of the thesis BACHELOR THESIS. Charles University in Prague Faculty of Mathematics and Physics

First and last name of the author. Title of the thesis BACHELOR THESIS. Charles University in Prague Faculty of Mathematics and Physics Charles University in Prague Faculty of Mathematics and Physics BACHELOR THESIS First and last name of the author Title of the thesis Name of the department or institute Supervisor of the bachelor thesis:

More information

Navigating to Success: Finding Your Way Through the Challenges of Map Digitization

Navigating to Success: Finding Your Way Through the Challenges of Map Digitization Library Faculty Presentations Library Faculty/Staff Scholarship & Research 10-15-2011 Navigating to Success: Finding Your Way Through the Challenges of Map Digitization Cory K. Lampert University of Nevada,

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

Chapter 3. Graphing Linear Equations and Functions

Chapter 3. Graphing Linear Equations and Functions Chapter 3 Graphing Linear Equations and Functions 3.1 Plot Points in a Coordinate Plane Coordinate Plane- Two intersecting at a angle. x-axis the axis y-axis the axis The coordinate plane is divided into.

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

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II

GEOREFERENCING, PROJECTIONS Part I. PRESENTING DATA Part II Week 7 GEOREFERENCING, PROJECTIONS Part I PRESENTING DATA Part II topics of the week Georeferencing Coordinate systems Map Projections ArcMap and Projections Geo-referencing Geo-referencing is the process

More information

Map image from the Atlas of Oregon (2nd. Ed.), Copyright 2001 University of Oregon Press

Map image from the Atlas of Oregon (2nd. Ed.), Copyright 2001 University of Oregon Press Map Layout and Cartographic Design with ArcGIS Desktop Matthew Baker ESRI Educational Services Redlands, CA Education UC 2008 1 Seminar overview General map design principles Working with map elements

More information

Lesson Plans. Geography. Grade 7. Mrs. Newgard

Lesson Plans. Geography. Grade 7. Mrs. Newgard Lesson Plans Geography Grade 7 Mrs. Newgard Monday, February 22 o Standard: 7.5.7 Explain changes (e.g. the value placed on land water wind energy, and fossil fuels) that occur in the meaning, use, distribution,

More information

Holidays. Directions: Use these lyrics to follow along with the song Holidays. After listening to the song, use the word bank to answer the questions.

Holidays. Directions: Use these lyrics to follow along with the song Holidays. After listening to the song, use the word bank to answer the questions. Name Holidays Directions: Use these lyrics to follow along with the song Holidays. After listening to the song, use the word bank to answer the questions. Memorial Day Columbus Day Thanksgiving Day President

More information

halloween Supplemental Lesson Packet

halloween Supplemental Lesson Packet Imagine That! Stories halloween Supplemental Lesson Packet A Nanci Bell Lesson Helpful advice These are Imagine That! stories that can be used with any program of instruction to develop imagery for language

More information

relationships between physical environments an society

relationships between physical environments an society Lesson Plans Geography Grade 9 Mrs. Newgard Monday, December 7 o Objective: Find out what has affected the modern development of the Arabian Peninsula. Go over Arabian Peninsula map together Notes 18.4

More information

REVIEW. Trick R Treat: A Celebration of Halloween Trash. By Hannah Irwin, Macquarie University

REVIEW. Trick R Treat: A Celebration of Halloween Trash. By Hannah Irwin, Macquarie University REVIEW Trash Culture Journal: Vol. 1 No. 2, 2013 Trick R Treat: A Celebration of Halloween Trash By Hannah Irwin, Macquarie University All these traditions: jack-o-lanterns, putting on costumes, handing

More information

Elementary Logic and Proof

Elementary Logic and Proof Elementary Logic and Proof Lecture 5 Robb T. Koether Hampden-Sydney College Mon, Feb 6, 2017 Robb T. Koether (Hampden-Sydney College) Elementary Logic and Proof Mon, Feb 6, 2017 1 / 33 Outline 1 Statements

More information

DOWNLOAD HALLOWEEN QUIZ QUESTIONS AND ANSWERS

DOWNLOAD HALLOWEEN QUIZ QUESTIONS AND ANSWERS DOWNLOAD HALLOWEEN QUIZ QUESTIONS AND ANSWERS Page 1 Page 2 halloween quiz questions and pdf Halloween is the eve of All Saints Day and we do know that All Saints Day was moved from May 13th to coincide

More information

Title of the Book. A. U. Thor XYZ University

Title of the Book. A. U. Thor XYZ University Title of the Book A. U. Thor XYZ University ii Copyright c1997 by Author Preface Preface Head This is the preface and it is created using a TeX field in a paragraph by itself. When the document is loaded,

More information

relationships between physical environments an society o Objective: Connect issues going on in East Africa with the United States Bell Ringer

relationships between physical environments an society o Objective: Connect issues going on in East Africa with the United States Bell Ringer Monday, February 1 o Objective: Show the knowledge of East Africa s physical land and culture 21.2 Quiz Eastern Africa country and capital quiz Research current event articles in East Africa Watch CNN

More information

Se siete insegnanti di inglese e state pensando a proporre canzoncine per la festa di Halloween eccovi alcuni brani, con

Se siete insegnanti di inglese e state pensando a proporre canzoncine per la festa di Halloween eccovi alcuni brani, con Se siete insegnanti di inglese e state pensando a proporre canzoncine per la festa di Halloween eccovi alcuni brani, con relativi testi. THE SKELETON DANCE The foot bone s connected to the leg bone. The

More information

Halloween: An American Holiday, An American History By Lesley Bannatyne READ ONLINE

Halloween: An American Holiday, An American History By Lesley Bannatyne READ ONLINE Halloween: An American Holiday, An American History By Lesley Bannatyne READ ONLINE If searching for the book Halloween: An American Holiday, an American History by Lesley Bannatyne in pdf form, in that

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

How not to give a poster: Some suggestions based on years of experience. D. Lund (credit to J. Granger)

How not to give a poster: Some suggestions based on years of experience. D. Lund (credit to J. Granger) How not to give a poster: Some suggestions based on years of experience D. Lund (credit to J. Granger) Purpose of a Poster Summarize research concisely and attractively Help publicize it and generate discussion

More information

It's Probably Not What You Think

It's Probably Not What You Think Page 1 of 8 The History of Halloween Part 1 by Dennis Rupert, pastor New Life Community Church of Stafford Last update: 05/30/2008 This article has been carefully researched in an attempt to separate fact

More information

Draw a pattern on the bat so it has 1 line of symmetry. Check it by placing a mirror on the mirror line. Colour it in. Have Sum Fun at 10ticks.co.

Draw a pattern on the bat so it has 1 line of symmetry. Check it by placing a mirror on the mirror line. Colour it in. Have Sum Fun at 10ticks.co. Halloween Symmetry Draw a pattern on one side of each bat. Place a mirror on the mirror line. Complete the pattern so it has line of symmetry. Colour it in. mirror line Draw a pattern on the bat so it

More information

Search for the Dubai in the remap search bar:

Search for the Dubai in the remap search bar: This tutorial is aimed at developing maps for two time periods with in Remap (). In this tutorial we are going to develop a classification water and non-water in Dubai for the year 2000 and the year 2016.

More information

www. ElectricalPartManuals. com Flexitest Switch Assemblies Type FT-19R and FT-19RX INTL APPLICATION

www. ElectricalPartManuals. com Flexitest Switch Assemblies Type FT-19R and FT-19RX INTL APPLICATION Effective: January 2004 Supersedes, dated June 1998 APPLICATION QUALITY FEATURES Descriptive Bulletin 41-078INTL Flexitest Switch Assemblies Type The type FT-19R (standard length) and FT-19RX (extended

More information

TIPS PLANNING FORM FOR INFANTS AND TODDLERS

TIPS PLANNING FORM FOR INFANTS AND TODDLERS TIPS PLANNING FORM FOR INFANTS AND TODDLERS Tune In, Introduce the Book, Promote Language, Summarize the Book Book Title: Apples and Pumpkins Author: Anne Rockwell T: Tune In Engage the child/children

More information

Henry and Mudge under the Yellow Moon. In the fall, Henry and his big dog Mudge took long. walks in the woods. Henry loved looking at the tops of

Henry and Mudge under the Yellow Moon. In the fall, Henry and his big dog Mudge took long. walks in the woods. Henry loved looking at the tops of LEVEL 2.3 10522 Henry and Mudge under the Yellow Moon Rylant, Cynthia In the fall, Henry and his big dog Mudge took long walks in the woods. Henry loved looking at the tops of the trees. He liked the leaves:

More information

A. Evaluate log Evaluate Logarithms

A. Evaluate log Evaluate Logarithms A. Evaluate log 2 16. Evaluate Logarithms Evaluate Logarithms B. Evaluate. C. Evaluate. Evaluate Logarithms D. Evaluate log 17 17. Evaluate Logarithms Evaluate. A. 4 B. 4 C. 2 D. 2 A. Evaluate log 8 512.

More information

q eyeballs q fall q frightful q ghastly q ghostly q ghoul q ghoulish q grisly q Halloween q jack-olantern

q eyeballs q fall q frightful q ghastly q ghostly q ghoul q ghoulish q grisly q Halloween q jack-olantern Instructions Included in this free product from Sublime Speech are 7 word lists targeting 11 phonemes. These word lists can be printed for rapid practice, use in other articulation exercises, use with

More information

Ch. 12: Workload Forecasting

Ch. 12: Workload Forecasting Ch. 12: Workload Forecasting Kenneth Mitchell School of Computing & Engineering, University of Missouri-Kansas City, Kansas City, MO 64110 Kenneth Mitchell, CS & EE dept., SCE, UMKC p. 1/2 Introduction

More information

Introduction to Beamer

Introduction to Beamer T.Dultuya Department of Applied Mathematics School of Engineering and Applied Sciences National University of Mongolia April 1, 2015 Contents 1 2 Section, subsection Table of contents Frames 3 Contents

More information

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

Conferences Start October 26th -Please or call if you need to make an appointment. Scientific Test on Method and Matter October 27th

Conferences Start October 26th -Please  or call if you need to make an appointment. Scientific Test on Method and Matter October 27th Third Grade Name Week of October 24-28th Monday 10-24-16 Tuesday 10-25-16 Wednesday 10-26-16 Thursday 10-27-16 Friday 9-28-16 Reading- Ian s Pumpkin Math- Addition Reading- Ian s Pumpkin part 2 Math- Addition

More information

Members Museum late Halloween shadow and light

Members Museum late Halloween shadow and light Members Museum late Halloween shadow and light Reach deep into the history of Halloween to discover its wild Celtic ancestor Samhain 31 October 2018 19.00 22.30 Over 16s only Welcome This Halloween, we

More information

Time Concepts Series. Calendars

Time Concepts Series. Calendars Time Concepts Series Calendars REM 526 Co v e r Designer: Cover Illustrator: Mike Muncy Joanne Powell A Teaching Resource From 2010, 1998 Copyright by Remedia Publications, Inc. All Rights Reserved. Printed

More information

Thank you for downloading the CQ Rewind Summary Only Version!

Thank you for downloading the CQ Rewind Summary Only Version! Thank you for downloading the CQ Rewind Summary Only Version! Each week, the Summary Only version provides you with approximately 4 pages of brief excerpts from the program, along with Scripture citations.

More information

A Digital Atlas for the Byzantine and Post Byzantine Churches of Troodos Region (central Cyprus)

A Digital Atlas for the Byzantine and Post Byzantine Churches of Troodos Region (central Cyprus) CAA'2010 Fusion of Cultures Francisco Contreras & Fco. Javier Melero (Editors) A Digital Atlas for the Byzantine and Post Byzantine Churches of Troodos Region (central Cyprus) Agapiou A. 1, Georgopoulos

More information

Search for the Dubai in the remap search bar:

Search for the Dubai in the remap search bar: This tutorial is aimed at developing maps for two time periods with in Remap (). In this tutorial we are going to develop a classification water and non-water in Dubai for the year 2000 and the year 2016.

More information

Halloween. October 31

Halloween. October 31 October 31 Happy Halloween! Halloween is a fun holiday in which people, young and old, dress up in costumes, and go to parties and perhaps trick-or-treating for candy! During Halloween, you may see jack-o

More information

The Occult Connection A Christian View

The Occult Connection A Christian View The Occult Connection A Christian View Occult philosophy has permeated nearly every area of our society. I believe that Christians need to think clearly about these issues and apply a biblical worldview

More information

Lesson Plan Summary Magic Tree House #30: Haunted Castle on Hallows Eve

Lesson Plan Summary Magic Tree House #30: Haunted Castle on Hallows Eve Lesson Plan Summary Magic Tree House #30: Haunted Castle on Hallows Eve Writing Suspenseful Short Stories EACH STUDENT WILL: Create a short story based on story elements found in a variety of Magic Tree

More information

An Introduction to XY-pic

An Introduction to XY-pic An Introduction to XY-pic Department of Mathematics The University of Arizona October 17, 2007 Intro LATEXpackage. Developed principally by Kris Rose and Ross Moore. Large community support base. Preamble:

More information

Lab 8: Magnetic Fields

Lab 8: Magnetic Fields Lab 8: Magnetic Fields Name: Group Members: Date: TA s Name: Objectives: To measure and understand the magnetic field of a bar magnet. To measure and understand the magnetic field of an electromagnet,

More information

Fall 2017 Student Calendar. August 2017 S M T W T F S

Fall 2017 Student Calendar. August 2017 S M T W T F S September 2017 August 2017 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 September 2017 October 2017 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

More information

Announcements Kevin Jamieson

Announcements Kevin Jamieson Announcements My office hours TODAY 3:30 pm - 4:30 pm CSE 666 Poster Session - Pick one First poster session TODAY 4:30 pm - 7:30 pm CSE Atrium Second poster session December 12 4:30 pm - 7:30 pm CSE Atrium

More information

Halloween props on ebay

Halloween props on ebay Halloween props on ebay Find great deals on ebay for Shop with confidence. Check Out Some Of My Props I Have Listing On Ebay See more ideas about Halloween decorations, Halloween prop and Haunted houses.

More information

Including colour, pdf graphics and hyperlinks

Including colour, pdf graphics and hyperlinks Including colour, pdf graphics and hyperlinks CTJ Dodson School of Mathematics, University of Manchester, Manchester M3 9PL, UK Summer Abstract You are unlikely to want your research articles to use coloured

More information