Introduction to LaTeX A Mathematical typesetting system.

Slides:



Advertisements
Similar presentations
Chapter 2 HTML Basics Key Concepts
Advertisements

Introduction to HTML CPS470 Software Engineering Fall 1998.
Word Processing Mathematics. Word Processing  More professional  Don’t use handwritten symbols  Don’t use poorly word processed symbols.
Web Page Development Identify elements of a Web Page Start Notepad
Word Processing Mathematics. Word Processing  More professional  Don’t use handwritten symbols  Don’t use poorly word processed symbols.
Adopted from: PRISM Brownbag Series June 9 th, 2009 Byungwon Woo.
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
Class 3 – Creating Lists In this lesson, you will learn to use HTML to organize your text into lists.
Introduction to LaTeX Thomas Gorry. What is Latex?  A typesetting system used to produce professional looking documents.  Particularly good at handling.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
LATEXLATEX IPA – batch. LATEXLATEX  A document preparation system - pronounced as lay-tek  It is a markup and programming language created by.
Exploring the Digital Domain HTML Basics. HTML Hypertext Markup Language Standard (ASCII) text with embedded format codes Most HTML tags are paired Tags.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
HEADLINE TEXT HERE Click here to add text. Click here to add text. Click here to add text. Click here to add text. Click here to add text. Click here to.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
HTML.
Seminar Sam Panzer. Good Evening, and Welcome First, an overview of what these seminars will cover Topics: – What you need to get started – What LaTeX.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Introduction to James Gasper Mathias. What is TeX? TeX is a typesetting system that is used mostly for mathematical and scientific documents. It is highly.
Place Photo Here And Delete Box Title Here Headline Type text here. Type text here. Type text here. Type text here. Type text here. Type text here. Type.
LESSON 7 REVIEW Casey Polera. Text Boxes Inset tab, in the text group Choose to draw one or use a given one Helps with entering text directly where you.
Type your heading here. Type your subhead here. Type your slide text here. Type your slide text here. Type your slide text here. Type your slide text here.
Headline Here No More Than 2 Lines Body text here. Never center bulleted text. Line 2 Line 3 Line 4 – no more!
Chapter 5 pp HTML Elements & Attributes Format Content Or Examples This Text Is A Hyperlink.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Department of Mathematics, Jazan University, Jazan.
Reading I: Enter the text here. Reading I: (cont. 1) Enter the text here.
LaTex -Computer scientist named Donald Knuth developed the program called Tex, in 1978.(mainly focused on formulae) -Later a mathematician and computer.
Presentation Title Subheading goes here.
Test1 Here some text. Text 2 More text.
LATEX By GerardoVela 3/27/2015.
Basic poster template for you to adapt
Delete text and place photo here.
Presentation Title Subheading goes here.
Agenda item number 1 Agenda item number 2 Agenda item number 3 Agenda item number 4 Agenda item number 5.
Type your heading here. Type your subhead here.
Type your heading here. Type your subhead here.
YOUR LOGO Basic poster template for you to adapt
Number and String Operations
Basic poster template for you to adapt
MARQUETTE UNIVERSITY COLLEGE OR DEPARTMENT NAME
Authors and Institutions Can Go Here
01 This is a sample text. You can replace this text. Enter your text here This is a sample text. You can replace this text. Enter your text here
[type text here] [type text here] [type text here] [type text here]
Presentation Title December 7, 2018
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
presentation Title Goes Here
Type your heading here. Type your subhead here.
School of Public Health and Community Medicine
Subhead text can go here
Subhead text can go here
Presentation Subtitle
This is the title This is a subheading This is body text Bullets 1
YOUR LOGO Basic poster template for you to adapt
Your text here Your text here Your text here Your text here
Basic usage and packages of TEX
[type text here] [type text here] [type text here] [type text here]
presentation Title Goes Here
Title Department Name MARQUETTE UNIVERSITY COLLEGE OR DEPARTMENT NAME
Insert Your Poster Title Here
Outline Basic English Information Inquiry Reading Technical Materials
Delete text and place photo here.
Type your presentation title here
Making Math Look Pretty – or How to Use LaTeX
YOUR LOGO Basic poster template for you to adapt
Main Title Here Topic 2 Topic 3 Topic 4 Topic 5
LaTeX Documents Document Body Preamble 8/3/2019 ARENA Tutorial - LaTeX
Headline Text Here Subhead Text Here:
X ⦁ X = 64 ±8 ±14 X ⦁ X ⦁ X =
Presentation transcript:

Introduction to LaTeX A Mathematical typesetting system

The “Required” Elements All LaTeX documents must include the following parts: \documentclass[12pt]{article}\begin{document}\end{document} The very last line! The BODY of the document goes here The “PREAMBLE” goes here The very first line!

“Environments” LaTeX code is set up with “environments.” Everything is enclosed in the “document” environment. \begin{document}\end{document} The document environment

“Environments” You enter and leave most environments with beginning and ending commands of the form \begin{environmentname} \end{environmentname} The code/text goes here

Some Formatting environments \begin{center}... \end{center} Numbered lists \begin{enumerate}\item\item\end{enumerate} The second item in the numbered list goes here The first item in the numbered list goes here

More on enumeration If you want “sub-headings,” nest the lists \begin{enumerate}\item\begin{enumerate}\item\item\end{enumerate}\item\end{enumerate} The second item in the sub-list goes here The first item in the sub-list goes here

More on lists If you want “bulleted” lists, you use the same format as for numbered lists with \begin{itemize}\item\begin{itemize}\item\item\end{itemize}\item\end{itemize}

More on lists If you want to designate the “headings” for the lists, you use the description environment \begin{description} \item[Case i.] \item[Case ii.] \end{description} The text for Case ii. goes here The text for Case i. goes here

Typesetting Mathematics There are two main math environments In-line math mode. This is for equations that occur in the same line as narrative. You enter and leave in-line math mode with dollar signs. Ex: $f(x)=x^{3-x}$ Displayed math. Several entry/exit choices –\begin{displaymath}... \end{displaymath} –$$... $$ –\[... \]

Some Miscellaneous Expressions “Normal” text How many subsets does have? LaTeX code How many subsets does $\emptyset$ have? Notice the use of the backslash ( \ ). This is your message to LaTeX that you are about to give it a command.

Some Miscellaneous Expressions “Normal” text How many subsets does have? LaTeX code How many subsets does $\emptyset$ have? $A= \{ 1,2,3,4 \} $ $A \subseteq B$ and $B \subseteq A$. $$ f(x)=\frac{x^3}{1+x^2}.$$