Ma Communicating Mathematics

Slides:



Advertisements
Similar presentations
Minimum Clique Partition Problem with Constrained Weight for Interval Graphs Jianping Li Department of Mathematics Yunnan University Jointed by M.X. Chen.
Advertisements

What is MySQL? MySQL is a relational database management system (A relational database stores data in separate tables rather than putting all the data.
CIS101 Introduction to Computing Week 06. Agenda Your questions Resume project HTML Project Two This week online Next class.
The Mathematics of Networks Chapter 7. Trees A tree is a graph that –Is connected –Has no circuits Tree.
Company Confidential Info Exchange Workflow Examples for External Users: Action Items Company Confidential.
XP New Perspectives on Integrating Microsoft Office XP Tutorial 1 1 Integrating Microsoft Office XP Tutorial 1 – Integrating Word and Excel.
Goal: Graph horizontal and vertical lines Eligible Content: A / A
CPSC 203 Introduction to Computers Lab 39, 40 By Jie (Jeff) Gao.
Math 1A3, Calculus Bradd Hart, Professor in Math and Stats Office: HH 420 Ext , Class hours: TWF 12:30 in HSC 1A1.
A Famous Mathematician Write about only one of your choice !
Applications Software. Applications software is designed to perform specific tasks. There are three main types of application software: Applications packages.
Chapter The slope formula.
LOGO CS-149 Fall 2009 Final Project project #1 by Zimeng Zhang.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Exploring Microsoft Office Word 2007 Chapter 8 Word and the Internet Robert Grauer, Keith.
Ma Communicating Mathematics Class 24 Cleaning up from last time Carl Eberhart and Paul Eakin.
XP New Perspectives on Integrating Microsoft Office XP Tutorial 1 1 Integrating Microsoft Office XP Tutorial 1 – Integrating Word and Excel.
Notes Over 2.1 Graphing a Linear Equation Graph the equation.
WARM-UP: USE YOUR GRAPHING CALCULATOR TO GRAPH THE FOLLOWING FUNCTIONS Look for endpoints for the graph Describe the direction What is the shape of the.
Ma 375 A course in Communicating Mathematics with Maple and LaTeX given by Paul Eakin and Carl Eberhart Department of Mathematics University of Kentucky.
2010 Construction Contract Standards Training Part 2 Prototype October 2011.
Warm -Up. Squaring and Parabolas 7.6 part I Called a radical. An operator symbol like +, -, or ÷. Find the square root of whatever is underneath. Treat.
Ma Communicating Mathematics Carl Eberhart and Paul Eakin Class 4 -- Getting Graphics.
Excel 2007 Non-Mathematical Uses of Excel. DASD Technology Click column
Since you’ll need a place for the user to enter a search query. Every form must have these basic components: – The submission type defined with the method.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. A Concise Introduction to MATLAB ® William J. Palm III.
Table of Contents Heading Glossary Labels Title Italicized Word Sidebar Photograph Bolded Word Stylized Word Bullets Bolded Word Map Timeline Boxed Item.
Interactive Notebook Here you will find images of what your interactive notebook should look like! Keep in mind that in the places where we wrote our notes.
Graphing Data: Information Data Table: a way to organize data in columns so it is neat and readable Title: a brief way to describe the content of a book,
Student response to Ma123 as reported in the student paper.
Find Slope Given Two Points and an Equation. Objectives Find the slope of a line given two points. Find the slope of a line given an equation.
Query Methods Simple SQL Statements Start ….
Graphing Linear Equations
3-2 Solving Linear Equations by Graphing
Introduction to Dynamic Web Programming
Starter Activity (5 Mins) What am I?
Final Exam Review Chapters 3 & 4.
Slope-Intercept Form.
Review of Slope Intercept Form
Query Methods Where Clauses Start ….
(Put it on the back table under your class hour)
Ma Communicating Mathematics
Uppingham Community College
8-5 Factoring by Grouping
Section 3.6 Functions.
Microsoft Office 2003 Illustrated Introductory, Premium Edition
Tuesday October 7 – Friday October 10
Ma 375 A course in Communicating Mathematics with Maple and LaTeX
5-4 Point Slope Form.
I decided to put both the 9:00 and 10:00 class in one presentation to give you a little more information. Be sure to look at the information under notes.
Finish worksheet from class
Ma Communicating Mathematics
2.7 Absolute Value Functions and Graphs
March 27th to 31st Mrs. Camarano’s Classes
What is Google Classroom?
Bellwork (1 of 2) Describe the number of solutions for each below:
Solve Systems of Linear Inequalities
BIT 143: Programming & Data Structures in C#
Homework assignment. Write a 3 paragraph essay on either
Glue in worksheet to pages 97 and 98
Language Arts: Thursday, March 14, 2019
7.3 Linear Equations and Their Graphs
More Linear Equations L.O.
Graphing Horizontal and
Graph Linear Inequalities in Two Variables
Section 4.5 The Slope of a Line Goal: Find the slope of a line.
Literature: Monday, March 11, 2019
Ma Communicating Mathematics
Exponential Verses Linear
Intercepts of a Line Intercepts are the points at which the graph intersects the x-axis or the y-axis. Since an intercept intersects the x-axis or the.
Warm up 19 1.) Graph using 3 points x +3y =6
Presentation transcript:

Ma 375 - Communicating Mathematics Carl Eberhart and Paul Eakin Class 17 Building books of worksheets with Perl scripts

Today we will show how use hyperlinks and bookmarks to make a book of worksheets, and also show how to use two perl scripts, mkcontents.pl and mkindex.pl to build a table of contents worksheet and an index worksheet.

A book of worksheets is a set of worksheets which are connected by hyperlinks. You can think of a directed graph where the vertices are the worksheets and the edges are the hyperlinks. There are many forms such a graph might take: A linear (circular?) book of worksheets A rooted book of worksheets

Since hyperlinks can get you to a bookmark in a worksheet your vertices have to be thought of as ‘fat’ worksheet 1 worksheet 2 worksheet 3 bookmark hyperlink

To construct a table of contents worksheet by hand, simply open a new worksheet and insert a hyperlink to each worksheet in your book of worksheets. To construct one with the perl script mkcontents.pl 1. put the names of the worksheets in the book in a file, one name to a line. Put in the .mws suffix. 2. From the TeXShell, execute the perl script with the command perl -S mkcontents toc.mws fileofworksheets where toc.mws is the name you want for the table of contents worksheet and fileofworksheets is the name of the file containing the names of the

To make an index worksheet, 1. bookmark all of the items in all of the worksheets in your book. You can only put one bookmark per paragraph. 2. From a TexShell, issue the command perl -S mkindex index.mws toc.mws fileofworksheets where index.mws is the name of your index worksheet toc.mws is the name of your table of contents worksheet and fileofworksheets is the file where you have listed the names of the worksheets in the book.

Homework Assignment: due Monday, March 30 Take a collection of three or more worksheets from the Chisel disk, and bookmark them and otherwise modify them however you want to. Then construct a table of contents worksheet, either by hand or with mkcontents.pl and construct an index worksheet with mkindex.pl. Finally, put in a hyperlink back to the table of contents worksheet from each worksheet in your book. Send me an email when you have completed the task, describing what you did and any difficulties you had in carrying out the task.