Graphics in TeX CONTENTS Sung-Ju Kang Department Of Physics

Slides:



Advertisements
Similar presentations
DOCUMENT TYPES. Digital Documents Converting documents to an electronic format will preserve those documents, but how would such a process be organized?
Advertisements

EndNote. What is EndNote:  EndNote is referencing software that enables you to create a database of references from your readings. Your database of references.
Lecture 8 Introduction to Latex. Introduction TeX is essentially a Markup Language (like HTML, XML and RTF) TeX written by Donald Knuth in 70´s –A revolution.
Some LaTeX features By Andreas Grondoudis 1. Contents This week we'll look at some TeX features Before specifics – Already uploaded on my website; the.
Header and footer basics Add page numbers, date, and more Think of page formatting in a book. The book title is at the top of one page, the chapter title.
Introduction to LaTeX CPS470 Software Engineering Fall 1998.
LaTeX 2e Basics CSE470 Fall 2000 Software Engineering B.J. Czerny Updated by J. Brown, A. Subramanian.
LaTeX 2e Basics CSE470 Spring 2000 Software Engineering B.J. Czerny Updated by Prasad.
Chapter 12: Network Programming Desktop Publishing Translator models Latex Documentation Preparation Postscript programming language WYSIWIG Editors.
Developing a Basic Web Page with HTML
Graphics Standard Grade Computing. Graphics Package n A graphics package is another General Purpose Package. n It is used to draw pictures on the monitor.
1 LaTeX Introduction Wenguang Wang Department of Computer Science University of Saskatchewan February 28, 2000.
For AMS 200, 2009 Dept. of Applied Math & Statistics School of Engineering University of California Santa Cruz, CA A Very Short Introduction to LaTeX.
Research Tools: LaTex A high quality document preparation system by Karthikeyan Umapathy.
Introduction to… About Tex & LaTeX What is TeX? What is LaTeX? Advantages - Disadvantages.
Using graphics/images in LaTeX By Matt Edwards. Introduction  How do you go about using graphics in LaTeX?  What we’ll cover: Syntax Attributes.
Introduction to Latex A very quick look at typesetting documents Andrei Gurtov (based on Troy D. Milner and Simon Cuce slides)
M. Kaneko, T. Abe, M. Sekiguchi, Y. Tadokoro, S. Yamashita,
Applications Software. Applications software is designed to perform specific tasks. There are three main types of application software: Applications packages.
Introduction to LaTeX CS157b John Eagle. TeX TeX is a computer program created by Donald E. Knuth. It is aimed at typesetting text and mathematical formulae.
Text, not Word Processing Gordon J. Pace March 2006 Bibliographies.
Introduction to LaTeX Thomas Gorry. What is Latex?  A typesetting system used to produce professional looking documents.  Particularly good at handling.
LATEXLATEX IPA – batch. LATEXLATEX  A document preparation system - pronounced as lay-tek  It is a markup and programming language created by.
LaTeX A Short Intro to Marco D. Santambrogio Politecnico di Milano Sala DEIB 2 Sept 2015 Ver. 2/9/15.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
Intro to LaTeX WING meeting 12 Jan What’s LaTeX? >An alternative to using MS Word for writing reports and papers >Our target today: HYP Thesis.
June LaTeX " A typesetting package for formatting and creating documents. Created by L. Lamport based on TeX designed by D. Knuth. " Alphanumeric.
Sep. 2003Lenko Grigorov, Queen's University1 Graphics for DES …circles and arrows in the sand.
1 LaTeX For Dummies Mulugeta Gebregziabher Division of Biostatistics and Epidemiology MUSC April 4, 2011.
Text, not Word Processing Gordon J. Pace March 2006 First steps.
BRIEF A BRIEF Introduction to L A T E X For Physics Graduate Students Prof. L. S. Pinsky Physics Department University of Houston.
© 2010 Delmar, Cengage Learning Chapter 3 Setting Up A Document.
Creating documents 09/18/13 Introduction to Latex.
LATEX Graphics Inclusion Techniques. The Idea of the Bounding Box is the key to understanding graphical displays in LATEX, or any derivative (i.e. pdfTEX).
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
Text, not Word Processing Gordon J. Pace March 2006 Logical Organisation.
CSE470 Software Engineering Fall Tools - Overview LaTeX – Tool to create documents RCS – Revision Control System, to maintain multiple versions.
Ma Communicating Mathematics Carl Eberhart and Paul Eakin Class 4 -- Getting Graphics.
Chapter 5 More About LaTex. Packages A package, which takes the form of a file with a sty extension, can be used to alter formatting parameters, create.
Get up to speed Save your files in the format that works best Access 2007 uses a new file format and a new file extension. What does that mean to you?
Sébastien Le Roux. not What I am not going to talk about The explanations are in my HowTo ! Check my web IPCMS Basic tutorial to programming.
Department of Mathematics, Jazan University, Jazan.
LaTex -Computer scientist named Donald Knuth developed the program called Tex, in 1978.(mainly focused on formulae) -Later a mathematician and computer.
LATEX By GerardoVela 3/27/2015.
Introduction Powerful PDF To Word Converter - PDFZilla
Sébastien Le Roux.
YESTERDAY.
Bibliography Management in LaTeX
Databases.
Web software.
Unit 4: Using Spreadsheets to Make Economic Choices Lessons 20–26
LaTeX is not... rubber a Bill Gates product WYSIWYG (see) VooDoo
EndNote by: fatimah alotaibi.
Microsoft Word 2010 : Tables
Microsoft OneNote.
The Basic Usage and The Event Handling in Glade.
EndNote What is EndNote? EndNote Library, how to manage?
Basic usage and packages of TEX
Microsoft Word 2010 : Tables
A Very Short Introduction to LaTeX
Engineering Librarian
A high quality document preparation system
Yesterday.
Making Math Look Pretty – or How to Use LaTeX
User-defined Commands of TeX
The LaTeX Tutorial.
Microsoft Word 2010 : Tables
The LaTeX Tutorial.
YESTERDAY.
Presentation transcript:

Graphics in TeX CONTENTS Sung-Ju Kang Department Of Physics Kangwon National University When putting together a large document, TeX will help you with some special features like including EPS graphics, index, bibliography. CONTENTS Including EPS Graphics Bibliography Indexing

(1) Including EPS Graphics A easy way to get graphics into a document, is to generate them with a specialized software package and then include the finished graphics into the document. In this presentation, only the use of Encapsulated PostScript(EPS) graphics will be discussed. Export the picture from your graphics program in EPS format. Load the graphicx package in the preamble of the input file. \usepackage[driver]{graphicx} driver : The name of “dvi to postscript” converter program. The most widely used program is called “dvips”. Use the command \includegraphics[key=value,…]{file} The key can be used to alter the width, height and rotation of the include graphic. width scale graphic to the specified width height scale graphic to the specified height angle rotate graphic counterclockwise scale scale graphic

• The document includes the graphic stored in the file graph.eps \documentclass[12pt,a4paper]{article} \usepackage[dvips]{graphicx} \begin{document} \begin{figure} \includegraphics [width=8cm, height=8cm]{graph} \end{figure} Width = 8cm, Height = 8cm, center of the document. \end{document} [key=value,…] {file} • The document includes the graphic stored in the file graph.eps

The number of the entries is generated automatically. (2) Bibliography 1) You can produce a bibliography with the thebibliography environment. Each entry starts with \bibitem{marker} 2) The marker is used to cite the book, article or paper within the document. \cite{marker} The number of the entries is generated automatically. Tells TeX to expect that none of the bibliography item number will be wider than the number 99. Partl \cite{pa} has proposed that \ldots \begin{thebibliography}{99} \bibitem{pa} H.~Partl:\emph{German \TeX},TUGboat Volume~9, Issue~1 (1988) \end{thebibliography}

(3) Indexing To enable the indexing feature of TeX, the makeidx package must be loaded in the preamble with \usepackage{makeidx} 2) And the special indexing commands must be enabled by putting the \makeindex command into the input file preamble. 3) The content of the index is specified with \index{key} commands, where key is the index entry. 4) When the input file is processed with TeX, the file has the same name as the TeX input file, but a different extension (.idx). 5) This .idx file can then be processed with the makeindex program. makeindex filename The makeindex program generates a sorted index with the same base file name, but this time with the extension (.ind). 6) If now the TeX input file is processed again, this sorted index gets included into the document at the point where TeX finds \printindex

\usepackage{makeidx} \makeindex \begin{document} Yesterday\index{yesterday}, all\index{yesterday!all} my troubles\index{troble@\textbf{trouble}} seemed so far away\index{away|textbf} Now it looks as though they're here to stay Oh, I believe in yesterday. \printindex \end{document} Index Key Syntax example - Plain entry - Subentry under ‘yesterday’ - Formatted entry Formatted page number When input file is processed again