Latex Y Lyx Herramientas Para Escribir Artículos Técnicos

Total Page:16

File Type:pdf, Size:1020Kb

Latex Y Lyx Herramientas Para Escribir Artículos Técnicos Una introducción a LaTeX y LyX Alberto Sánchez, PhD 1. ¿Qué es y porqué usar LaTeX? 2. ¿Qué es y porqué usar LyX? 3. ¿Cómo escribir un artículo en LaTeX? 4. ¿Cómo escribir un artículo en LyX? 5. Información adicional LaTeX es un conjunto de macros que permiten utilizar comandos de TeX para obtener un formato adecuado de artículos, libros y otros textos. TeX es un sistema para producir tipografías programado en 1978 por Donald Knuth en la Universidad Stanford. El nombre LaTeX proviene de una abreviación del nombre del autor de este conjunto de macros - Leslie Lamport. LaTeX provee de un gran número de macros que permiten escribir ecuaciones complejas con una altísima calidad tipográfica. Permite al usuario preocuparse más del contenido que del formato. El archivo fuente es un simple archivo de texto por lo que no utiliza mucho espacio. No sobrecarga la memoria como las herramientas de edición de textos comunes. La gran desventaja de LaTeX es que requiere de una gran cantidad de comandos para poder dar formato a su texto http://en.wikipedia.org/wiki/LaTeX LyX es una interface visual de LaTeX que provee de herramientas para simplificar la escritura y visualización de textos. LyX y LaTeX son de distribución gratuita. ◦ www.lyx.org ◦ LaTeX: MikTeX, TeXLive, teTeX, proTeXt, OzTeX En esta sección: 1. Software necesario 2. Introducción a LaTeX MikTeX es generalmente una de las más comunes para Windows. www.miktex.org Eclipse IDE + TeXlipse plugin (gratis) http://www.eclipse.org/ + http://texlipse.sourceforge.net/ TeXstudio (gratis) http://texstudio.sourceforge.net/ RTeXDoc (pagado) http://jwork.org/rtextdoc/ Es posible encontrar una comparación de estos editores y otros más en: http://en.wikipedia.org/wiki/Comparison_of_TeX_editors Para fines demostrativos, utilizaré TeXstudio, aunque también se puede utilizar un simple editor de textos como notepad. Un editor de referencias muy común y fácil de emplear es Jabref http://jabref.sourceforge.net/ LaTeX utiliza comandos y ambientes para definir varias acciones tipográficas y de formato de documentos. Comando: Es una instrucción que se brinda a LaTeX para que realice alguna función, tal como escribir un símbolo o cambiar el tipo de letra. Los comandos inician con el símbolo backslash y una palabra clave a continuación y normalmente contienen uno o varios argumentos encerrados entre llaves {}. Ejemplo % El siguiente comando escribe la palabra ‘Hola’ en letra itálica \emph{Hola} Ambientes: Los ambientes inician con la palabra clave \begin{nombre_ambiente} y terminan con \end{nombre_ambiente} Un ambiente tiene el efecto de tratar al texto entre estas dos palabras claves de modo distinto, dependiendo del tipo de ambiente y sus parámetros. Ejemplo: % El ambiente ‘quote’ incrementa los márgenes laterales con respecto al texto anterior y posterior al ambiente \begin{quote} Hola, \bfseries como están? \end{quote} El comando \bfseries imprime el texto inmediatamente después en negrilla. Todo documento en LaTeX esta compuesto de dos partes, un preámbulo y un cuerpo (body). En el preámbulo se colocarán todos los comandos necesarios para definir el formato del documento y debe contener al menos el comando \documentclass[opciones]{clase}. El preámbulo termina con la declaración del ambiente \begin{document} Todo lo que sigue a continuación se conoce como el cuerpo del documento y termina con la declaración \end{document} Para definir el formato del documento se utiliza el comando \documentclass[opciones]{clase}. LaTeX incorpora algunos formatos por omisión: article, book, report, y letter; sin embargo, en la mayoría de los casos es necesario utilizar clases especiales dependiendo de la conferencia o revista a la que se va a enviar el artículo o la editorial del libro. Para poder utilizar formatos particulares es indispensable primero cargarlos en MikTeX o en la distribución de LaTeX que se esté utilizando. Cada clase tendrá sus propias opciones y comandos específicos que permiten manejar el formato. Como ejemplo, vamos a escribir un artículo para una conferencia de IEEE utilizando la clase IEEEtran.cls Esta clase implementa varias opciones dependiendo si es un artículo para revista o conferencia, por lo que es importante leer la documentación específica de cada clase. Una de las potencialidades de LaTeX es su capacidad para imprimir ecuaciones con una alta calidad tipográfica. Existen varios comandos para desarrollar ecuaciones en LaTeX. A continuación realizaremos algunos ejemplos para escribir: 1. Una ecuación en línea 2. Una ecuación multi-línea 3. Una matriz Figuras Tablas Bibliografía y Referencias Kopka H. and Daly P. (2013) A Guide to LaTeX 4ta Ed. Addison Wesley La introducción no-tan-corta a LaTeX2e http://ctan.uniminuto.edu/info/ lshort/spanish/lshort-a4.pdf En esta sección: 1. Software necesario 2. Introducción a LyX Existen dos opciones: 1. Bundle: Contiene LyX, Jabref, y una distribución sencilla de MikTeX 2. Instalador: Solo contiene LyX LyX es una aplicación para edición y visualización de código LaTeX más amigable al usuario Lyx permite una fácil y rápida edición de textos, ecuaciones, tablas, y figuras. Dependiendo de la clase de documento, podría ser necesario el uso de ciertos comandos de LaTeX ingresados directamente en LyX. A continuación demostraremos su uso con el ejemplo introducido en la sección anterior. LyX permite importa y exportar código LaTeX fácilmente. Normalmente las distintas versiones de LyX no son compatibles entre ellas. LyX posee una extensa documentación Existen foros LyX es configurable y adaptable a nuevas clases [email protected] .
Recommended publications
  • Here Comes Number Two
    LATEX Documents ALATEX source file is an ordinary text file with interspersed typography markup. It may be created with any text editor (Notepad, Textedit, A gedit, emacs, vim) or with a dedicated LATEX editor with syntax LTEX highlighting (Texstudio, Texmaker). This text file will then be processed by a T X engine: Leif Andersson E latex, pdflatex, lualatex, xelatex The result is a .pdf file, which may be printed or read on screen. The Environment A Short Document The most fundamental LATEX component is the Environment. Inside an environment the text gets a special layout and/or special commands are defined. \documentclass{article} \usepackage{fourier} This is a paragraph with some This is a paragraph with some \usepackage[swedish]{babel} surrounding text. \begin{document} surrounding text. \begin{itemize} H¨ar kommer texten till mitt banbrytande dokument. \item This is the first point. This is the first point. \end{document} \item And here comes number two. • And here comes number two. \begin{enumerate} • The part between \documentclass and \begin{document} is \item Multiple levels are possible 1. Multiple levels are possible called the preamble, and may contain definitions special to this \item They get automatically 2. They get automatically document. In particular it may call on packages with the indented and enumerated. indented and enumerated. \end{enumerate} \usepackage command. \item The last point The last point • There are also style options \end{itemize} We also have some text after the \documentclass[a4paper,12pt]{article} We also have some text after different items. the different items. Documentclasses Special Characters To get Write Used for A Standard LTEX: $ \$ Start and end of math article report book letter memoir beamer % \% Comment to end of line Journals and conferences often have their own classes.
    [Show full text]
  • Tlaunch: a Launcher for a TEX Live System
    TLaunch: a launcher for a TEX Live system Siep Kroonenberg June 29, 2017 This manual is for tlaunch, the TEX Live Launcher, version 0.5.3. Copyright © 2017 Siep Kroonenberg. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. Contents 1 The launcher5 1.1 Introduction............................5 1.1.1 Localization........................6 1.2 Modes...............................6 1.2.1 Normal mode.......................6 1.2.2 Initializing.........................6 1.2.3 Forgetting.........................6 1.3 Using scripts............................7 1.4 The ini file.............................7 1.4.1 Location..........................7 1.4.2 Encoding..........................7 1.4.3 Syntax...........................7 1.4.4 The Strings section....................9 1.4.5 Sections for filetype associations (FTAs)........9 1.4.6 Sections for utility scripts................ 10 1.4.7 The built-in functions.................. 10 1.4.8 Menus and buttons.................... 11 1.4.9 The General section.................... 12 1.5 Editor choice............................ 12 1.6 Launcher-based installations................... 13 1.6.1 The tlaunchmode script................. 14 1.6.2 TEX Live Manager..................... 14 2 The launcher at the RUG 15 2.1 Historical.............................. 15 2.2 RES desktops........................... 16 2.3 Components of the rug TEX installation............ 16 2.4 Directory organization...................... 17 2.5 Fixes for add-ons......................... 17 2.5.1 TeXnicCenter....................... 17 2.5.2 TeXstudio......................... 18 2.5.3 SumatraPDF........................ 18 2.5.4 LyX............................. 18 3 CONTENTS 4 2.6 Moving the XeTEX font cache.................
    [Show full text]
  • The Gsemthesis Class∗
    The gsemthesis class∗ Emmanuel Rousseaux [email protected] February 9, 2015 Abstract This article introduces the gsemthesis class for LATEX. The gsemthesis class is a PhD thesis template for the Geneva School of Economics and Management (GSEM), University of Geneva, Switzerland. The class provides utilities to easily set up the cover page, the front matter pages, the pages headers, etc. with respect to the official guidelines of the GSEM Faculty for writing PhD dissertations. This class is released under the LaTeX Project Public License version 1.3c. ∗This document corresponds to gsemthesis v0.9.4, dated 2015/02/09. 1 Contents 1 Introduction3 2 Usage 3 2.1 Requirements..................................3 2.2 Getting started.................................3 2.3 Configuring your editor to store files in UTF-8...............4 2.4 Writing the dissertation in French......................4 2.5 Configuring and printing the cover page...................4 2.6 Configuring and printing the front matter pages...............4 2.7 Introduction and conclusion..........................5 2.8 Bibliography..................................5 2.8.1 Configure TeXstudio to run biber...................5 2.8.2 Configure Texmaker to run biber...................5 2.8.3 Configure Rstudio/knitr to run biber.................5 2.8.4 Basic commands............................6 2.8.5 Using you own bibliography management configuration......6 2.9 Draft mode...................................6 2.10 Miscellaneous..................................6 3 Minimal working example7 4 Implementation8 4.1 Document properties..............................8 4.2 Colors......................................8 4.3 Graphics.....................................8 4.4 Link management................................9 4.5 Maths......................................9 4.6 Page headers management...........................9 4.7 Bibliography management........................... 10 4.8 Cover page..................................
    [Show full text]
  • More Latex and Julia and How to Use It to Prepare a Homework
    Numerical and Scientific Computing with Applications David F. Gleich CS 314, Purdue By the end of this class, August 31, 2016 • Understand what LaTeX is More LaTeX and Julia and how to use it to prepare a homework. • See functions in Julia and Next class how they help make code HOMEWORK DUE! easy and reusable. Intro to floating point arithmetic • Your last questions about G&C - Chapter 5 Julia! Next next class • Go over common mistakes on the quiz. Labor day! Take a day off Logistics 1. Final exam We will have the final EARLY (December 2) based on the results of the poll which overwhelmingly picked this option. Course Survey Matlab only 33 Numpy/Scipy only 5 Both 16 Latex 9 Taylor series 23 Topics Monte Carlo, ODEs, Matrices Stuff Julia & Mandelbrot sets! Quiz Results … at end of class ... LaTeX • A document typesetting system designed for beautiful mathematical documents. • TeX was designed by Donald Knuth • LaTeX was designed by Leslie Lamport • Both won Turing awards - Nobel prize of CS • You need to “compile” your documents. pdflatex myfile.tex # produces myfile.pdf Recommended packages + editors Windows • MiKTex and TexStudio Mac • MacTex and TexStudio or TexMaker Linux • TeXLive (or apt-get / yum package) + Kile or TexStudio Online • Overleaf • Juliabox Notebooks Making a simple document \documentclass{article} \usepackage[margin=1in]{geometry} \title{My document} \author{David and Collaborators} \begin{document} \maketitle \section{Problem 1} \section*{Solution} \section{Problem 1} \section*{Solution} \end{document} demo Editing a homework demo Back to Julia! .
    [Show full text]
  • Latex in Twenty Four Hours
    Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide A Short Presentation on Dilip Datta Department of Mechanical Engineering, Tezpur University, Assam, India E-mail: [email protected] / datta [email protected] URL: www.tezu.ernet.in/dmech/people/ddatta.htm Dilip Datta A Short Presentation on LATEX in 24 Hours (1/76) Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide Presentation plan • Introduction to LATEX Dilip Datta A Short Presentation on LATEX in 24 Hours (2/76) Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide Presentation plan • Introduction to LATEX • Fonts selection Dilip Datta A Short Presentation on LATEX in 24 Hours (2/76) Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide Presentation plan • Introduction to LATEX • Fonts selection • Texts formatting Dilip Datta A Short Presentation on LATEX in 24 Hours (2/76) Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide Presentation plan • Introduction to LATEX • Fonts selection • Texts formatting • Listing items Dilip Datta A Short Presentation on LATEX in 24 Hours (2/76) Plan Introduction Fonts Format Listing Tabbing Table Figure Equation Bibliography Article Thesis Slide Presentation plan • Introduction to LATEX • Fonts selection • Texts formatting • Listing items • Tabbing items Dilip Datta A Short Presentation on LATEX
    [Show full text]
  • How to Make a Presentation with LATEX? Introduction to Beamer
    1 / 45 How to make a presentation with LATEX? Introduction to Beamer Hafida Benhidour Department of computer science King Saud University December 19, 2016 2 / 45 Contents Introduction to LATEX Introduction to Beamer 3 / 45 Introduction to LATEX I LATEXis a computer program for typesetting text and mathematical formulas. I Uses commands to create mathematical symbols. I Not a WYSIWYG program. It is a WYWIWYG (what you want is what you get) program! I The document is written as a source file using a markup language. I The final document is obtained by converting the source file (.tex file) into a pdf file. 4 / 45 Advantages of Using LATEX I Professional typesetting: best output. I It is the standard for scientific documents. I Processing mathematical (& other) symbols. I Knowledgeable and helpful user group. I Its FREE! I Platform independent. 5 / 45 Installing LATEX I Linux: 1. Install TeXLive from your package manager. 2. Install a LATEXeditor of your choice: TeXstudio, TexMaker, etc. I Windows: 1. Install MikTeX from http://miktex.org (this is the LATEXcompiler). 2. Install a LATEXeditor of your choice: TeXstudio, TeXnicCenter, etc. I Mac OS: 1. Install MacTeX (this is the LATEXcompiler for Mac). 2. Install a LATEXeditor of your choice. 6 / 45 TeXstudio 7 / 45 Structure of a LATEXDocument All latex documents have the following structure: n documentclass[...] f ... g n usepackage f ... g n b e g i n f document g ... n end f document g I Commands always begin with a backslash n: ndocumentclass, nusepackage. I Commands are case sensitive and consist of letters only.
    [Show full text]
  • Pharmtex Quick Guide Date Issued: 15 JAN 2019 Version: 1.2 Author: Christian Hove Rasmussen Contact: [email protected] Website
    PharmTeX Quick Guide Version 1.2 Quick Guide Report Title: PharmTeX Quick Guide Date Issued: 15 JAN 2019 Version: 1.2 Author: Christian Hove Rasmussen Contact: [email protected] Website: http://pharmtex.org PHARMTEX QUICK GUIDE Page 1 of 6 PharmTeX Quick Guide Version 1.2 1. INTRODUCTION PharmTeX is an open-source framework for creating publishing-ready reports directly from figure and table files. The framework is based on LaTeX, the gold standard for typesetting scientific documents. PharmTeX is released under the GNU Affero General Public License Version 3 (AGPLv3). This user guide has the objective of giving you as a PharmTeX user the ability to: • Set up PharmTeX on your computer. • Initialize a report. • Use PharmTeX features to put in various key report components. • Finalize a report to make it ready for publishing. 2. SETTING UP PHARMTEX In this guide, we will assume that you are using the PharmTeX software bundles. They are available on pharmtex.org under Downloads. Currently, versions for Windows and Linux are available. Please download the one suitable for your operating system. Once the ZIP file is downloaded, double-click it to open it and drag-and-drop the "pharmtex" folder within to C:\Users\USERNAME on Windows 10 and /home/USERNAME on Linux (takes about 15 min to extract). When you are done, the location and contents on Windows 10 should be as shown in Figure 1, with USERNAME matching your Windows login name: Figure 1. PharmTeX software bundle location PharmTeX software bundle location. Once the bundle is in place, please download the example document ZIP file from pharmtex.org (located under Downloads).
    [Show full text]
  • TEX Collection 2021
    � https://tug.org/texcollection � AsTEX (French) CervanTEX (Spanish) proTEXt: an easy to install TEX system for MS Windows: based on MiKTEX, with the TEXstudio editor front-end. T X CSTUG (Czech/Slovak) Collection 2021 T X Live: a rich T X system to be installed on hard disk or a portable device E CT X (Chinese) E E E such as a USB stick. Comes with support for most modern systems, CyrTUG (Russian) including GNU/Linux, macOS, and Windows. DANTE (German) MacTEX: an easy to install TEX system for macOS: the full TEX Live DK-TUG (Danish) distribution, with the TEXShop front-end and other Mac tools. Estonian User Group CTAN: a snapshot of the Comprehensive TEX Archive Network, a set of 휀휙휏 (Greek) servers worldwide making TEX software publically available. DVD GuIT (Italian) GUST (Polish) proTEXt ist ein einfach zu installierendes TEX-System für MS Windows, basierend auf MiKTEX und TEXstudio als Editor. GUTenberg (French) TEX Live ist ein umfangreiches TEX-System zur Installation auf Festplatte GUTpt (Portuguese) oder einem portablen Medium, z. B. USB-Stick. Binaries für viele Platformen ÍsTEX (Icelandic) sind enthalten. ITALIC (Irish) MacTEX ist ein einfach zu installierendes TEX-System für macOS, mit einem DANTE KTUG (Korean) vollständigen TEX Live, sowie TEXShop als Editor und weiteren Programmen. www.dante.de CTAN ist ein weltweites Netzwerk von Servern für T X-Software. Auf der Lietuvos TEX’o Vartotojų E Grupė (Lithuanian) DVD befindet sich ein Abzug des deutschen CTAN-Knotens dante.ctan.org. MaTEX (Hungarian) O Nordic TEX Group gutenberg.eu.org proT Xt T X Live (Scandinavian) proTEXt : un système TEX pour Windows facile à installer, basé sur MikTEX E E avec l’éditeur T Xstudio.
    [Show full text]
  • No. 1 41 Texstudio: Especially for LATEX Newbies Siep Kroonenberg
    TUGboat, Volume 37 (2016), No. 1 41 TeXstudio: Especially for LATEX newbies local TEX installation has menu entries for all three documents. Siep Kroonenberg Starting out Abstract We have a few choices for starting a new document. TeXstudio is the default editor of the T X Live in- E The File menu has items `New', which starts with a stallation at the Rijksuniversiteit Groningen. This blank document, and `New from Template', which article tries to show how TeXstudio can help new creates a new document and adds templates for a users come to grips with LAT X and what makes it a E title and abstract. good choice for a LAT X introduction. E But in this article we start a new document with Introduction the `Quick Start' entry from the Wizards menu; see figure 2. If we just click the OK button, we see the The TEX installation at our university, the Rijks- following in the edit panel: universiteit Groningen in the Netherlands, includes TeXstudio as one of three (LA)TEX editors. TeXstudio, the subject of this article, is the initial default editor. Its features make it especially suitable for first-time LATEX users: there are many GUI elements for enter- ing mathematics and LATEX code, there are buttons for one-click compiling and previewing LATEX docu- ments, and the editor gives a lot of useful feedback. TeXstudio is open source and cross-platform, and is actively being developed. This article refers Subsequently we can start entering text between to version 2.10.4. \begin{document} and \end{document}.
    [Show full text]
  • A Tutorial of Latex for CSCI-473/573 History of Latex
    A Tutorial of LaTex for CSCI-473/573 History of LaTex • Pronounced “lah-tech” or “lay-tech” • Originally written by Leslie B. Lamport • Enables authors to typeset and print their work at professional quality • Suited to large articles and books • Automatic numbering of: • Chapters • Sections • Theorems • Equations • etc • Front-end to TEX • Invented by Donald Knuth to typeset text and mathematical formulas 2 Use of LaTex What can we use LaTex for? • Like we said before: • Books • Articles • But also other things too! • CV / resume • Letters • Lab Write-ups / Reports • Slides (but I personally not a big fun of it for teaching…) • This list goes on! 3 LaTex vs Word Why use LaTex when we have word? • Cost: LaTex is free! • Quality • Separation of context and style • Portability • Stability • etc Source: http://ctan.org/ctan-portal/tex/ http://www.andy-roberts.net/writing/latex/benefits 4 How can I use LaTex online (recommended) • You may use an online LaTex Editor: https://www.overleaf.com/ • Mines offers Overleaf tutorials: https://libguides.mines.edu/LaTeX/OverLeaf 5 How can I Install and use LaTex offline • Download and install MikTeX • Then download and install an editor: • TexMaker: It comes with an integrated pdf viewer and all the bells and whistles that a modern editor should have. • TexStudio: it's a TexMaker ripoff with many more configuration options and it used to be called TexMakerX. • WinEdt: A very powerful editor (but not free) • TexWorks: comes with MikTex. Source: http://www.stat.pitt.edu/stoffer/freetex.html TexMaker: http://www.xm1math.net/texmaker
    [Show full text]
  • Installation Instructions for Latex
    Installing LaTeX If you would like to write and compile your LaTeX documents from your own machine, rather than from a Cloud-based software, you will need to install 1. A TeX distribution (this contains all the necessary files to be able to compile the .tex file and produce the output) 2. A LaTeX editor (this is the software which you use to write and compile the .tex file). Here are some instructions on what to do depending on your machine: • If you have Windows: you can install the MiKTeX distribution, which includes the TeXworks editor. You may also want to install the TexMaker editor, or the TeXStudio editor, which are more advanced editors than TeXworks (although TeXworks will be fine for what we do on the day). • If you have Mac: you can install the MacTex distribution (the full one, NOT the basic one), which includes the TexShop editor. You may also want to install the TexMaker editor, or the TeXStudio editor, which are more advanced editors than TeXShop (although TeXShop will be fine for what we do on the day). • If you have Linux: you can install the TexLive distribution, which contains the TeXworks editor, through your repository manager (Synaptic or other). You may also want to install the more advanced Texmaker or the TexStudio editor (although TeXworks will be fine for what we do on the day). University of Aberdeen :: Student Learning Service Reviewed: 23/06/2021 The University of Aberdeen is a charity registered in Scotland, No SC013683 .
    [Show full text]
  • LATEX: a Brief Introduction
    LATEX: A Brief Introduction Andrew Q. Philips∗ September 12, 2019 ∗Assistant Professor, Department of Political Science, University of Colorado at Boulder, UCB 333, Boulder, CO 80309-0333. [email protected]. www.andyphilips.com. Earlier versions of this paper came from the political science graduate student “Bootcamp” course held at Texas A&M University in 2015 and 2016. Contents 1 Introduction 2 2 Creating your First LATEX Document 4 2.1 Downloading LATEX ............................... 4 2.2 Preamble and Packages ............................ 6 2.3 Starting the Document ............................. 8 2.4 Sections, Subsections, and Sub-Subsections .................. 10 2.5 Itemize and Enumerate ............................. 11 2.6 Typesetting ................................... 13 3 Math and Symbols in LATEX 14 3.1 Referencing ................................... 15 3.2 Subscripts .................................... 16 3.3 Fractions .................................... 17 3.4 Greek Symbols ................................. 18 3.5 Equations in the Text ............................. 19 3.6 Symbols that are Off-Limits .......................... 21 4 Inserting Tables and Figures 21 4.1 Figures ...................................... 21 4.2 Advanced Figures and Tips .......................... 23 4.3 Tables ...................................... 26 5 Bibliographies 27 6 Beamer 32 7 CVs 35 8 Other ‘TeX’ Languages 36 9 Resources 36 9.1 Documents Included in this Introduction ................... 37 © Andrew Q. Philips 2015-2019 1 1 Introduction This paper is designed to introduce LATEX, a typesetting program that can greatly ease production of academic articles, presentation slides, and many other applications. LATEX (pronounced “lay-tech” or “lah-tech”) has grown in use from its creation in 1985, and is already very popular in academia. LATEX does have a fairly steep learning curve, but it is well worth knowing. In fact, once you create your own basic template, the start-up costs diminish substantially.
    [Show full text]