Document Preparation for Researchers Using Latex

Total Page:16

File Type:pdf, Size:1020Kb

Document Preparation for Researchers Using Latex Documents: Document preparation for researchers using LaTeX Table of Contents 1 Introduction 1 1.1 Course background 1 1.2 Course aims and content 1 1.3 This document 1 1.4 Getting started 1 2 Exercises 3 2.1 Before you start 3 2.2 Texmaker 3 2.3 LATEX 5 2.3.1 Compiling LATEX files 6 2.3.2 Viewing LATEX files 6 2.4 Introductory Exercises 7 2.4.1 A simple example 7 2.4.2 A longer document 8 2.5 Typesetting Text 9 2.6 Version control 10 2.7 Typesetting Mathematics 10 2.8 Advanced features 12 2.8.1 Cross references 12 2.8.2 Including pictures 13 2.8.3 Bibliographies 13 3 Helpful Hints 15 3.1 Special Characters 15 3.2 Dashes and Hyphens 15 3.3 Quotation Marks 15 3.4 Accents and Special Characters 16 3.5 List of Mathematical Symbols 16 4 Answers 23 4.1 Acknowledgements 32 References 33 Not So Short Introduction 34 Slides 187 Chapter 1 Introduction Course background LATEX is a document preparation system that produces far better-looking output than any word processor. It is ideal for producing well-structured documents particularly those containing scientific formulae, mathematical proofs or computer programs, without getting bogged down in design. Course aims and content The course provides an introduction to LATEX using Texmaker. The following topics are covered. • A brief history of LATEX. • Creating a simple LATEX document. • Adding chapters and sections. • Lists and tables. • Typesetting mathematical equations. • Using cross–references, including images, and creating bibliographies. This document The document contains all the information you will need to get you started using LATEX. • Exercises. • Typesetting special characters or Helpful Hints. • The answers to the exercises. • The Not So Short Introduction to LATEX – a widely used guide. • The slides. Getting started Begin by reading Chapter 2 for instructions on how to get started. 1 Chapter 2 Exercises Before you start These exercises aim to illustrate particular features of LATEX. They start very gradually by asking you to create and view a simple document and then move on to more complex examples. If at any time you can’t work out how to produce a particular effect then do consult the answers in Chapter 4, page 23, or ask. Texmaker We will be using Texmaker to create, edit, compile and view LATEX files. To start Texmaker go to Start | All Programs | Texmaker. A window like Figure 2.1 should appear. Figure 2.1: Texmaker: Start–up screen If your screen does not look exactly like this window then look at the View menu and make sure 3 CHAPTER 2. EXERCISES that these items are checked: • Structure • Messages / Log File • PDF Viewer • List of opened files Once Texmaker is correct, find the Run (F6) drop down menu box to the right of PDFLaTeX . See what other options there are. Find the following buttons: • View PDF (F7) • Find (Ctrl+F) • Replace (Ctrl+R) • Save (Ctrl+S) The keyboard shortcuts are included after each command. These buttons are used for building and viewing LATEX documents. Most of the other buttons are used for particular LATEX commands. See if you can find some of these: • Bold • Italic • Left • Part/Chapter/Section • Relation symbols • Greek Letters Have a look at the View menu to open different Texmaker screens. Make sure that • Messages / Log files • List of opened files are both checked. Now you have explored the Texmaker it is time to start using LATEX. Files to download Please download these three files for use during this practical. Browse to http://www.stats.ox.ac.uk/pub/susan/oucs_latex/ and save the three files i. sample.tex ii. panic.png iii. test.bib in your home folder. To be really organised you could create a new folder to keep them in. This booklet can also be downloaded if you want to see an online version of the exercises. 2018-05-14 12:42 4 Rev: 417 2.3. LATEX LATEX Go to File | Open. and open sample.tex. You should see a screen like Figure 2.2. Note that some Figure 2.2: Texmaker: Opening an example file. of the text on the screen (not on this printed page!) is highlighted in different colours. This helps to locate errors. Let’s look at some of the significant lines in the sample.tex file. All LATEX files begin with a \documentclass declaration. \documentclass[12pt,a4paper]{article} The syntax of LATEX commands is consistent. A command begins with a \ (a backslash), is altered by options contained in [. ] (square brackets) and is defined by what’s contained within {. } (curly brackets). The optional arguments contained in [. ] are: 12pt the font size a4paper the paper size The necessary argument contained in {. } is: article defines the type or class of document Conventionally the article class is used for shorter documents and the report class for longer dissertations. Other options include book and letter. Note that everything that appears on a line after a % is a comment and is ignored. The main body of a document – that is the information that you want people to read – begins with \begin{document} and is always ended by Rev: 417 5 2018-05-14 12:42 CHAPTER 2. EXERCISES \end{document} The information has been divided into sections with the commands \section{Simple Text} and \subsection{A Warning or Two} When the file is compiled these sections and subsections will be numbered automatically. Various formatting commands are embedded within the text. For example \emph is used to italicise text and \textbf for bold text. Compiling LATEX files Figure 2.3: A successful LATEX compilation Once you have a finished editing your file it should saved and be compiled. To compile your file click on the light grey arrow by PDFLaTeX . See Figure 2.3 for an example. A small digression on debugging. When LATEX finds errors it shows a line number near where it thinks the error has has been found. If you look at the bottom of the Texmaker screen window, a block of red text will appear, with an error message and a line number. If you click on this text, then you should be taken to the location of the error in the edit window. Viewing LATEX files To look at the compiled version of the file click on the light grey arrow next to View PDF . A new window should open which looks similar to Figure 2.4. It should show a formatted version of the file. Alternatively Quick Build will both compile your .tex file and preview it as long as you have done one PDFLaTeX first. 2018-05-14 12:42 6 Rev: 417 2.4. INTRODUCTORY EXERCISES Figure 2.4: The preview window Introductory Exercises The following exercises are designed to show many features of LATEX. A simple example . Exercise 1 We are now going to input, compile and view a simple LATEX file. Use File | New. and enter these lines \documentclass{article} \begin{document} \section{Introduction} Hello there. Goodbye now. \end{document} in the editing window. Use the File | Save As. menu to save the file as new.tex. It is very important that the file has a .tex suffix. To use the auto-completion feature in Texmaker use the TAB key. Click on the light grey arrow to the left of PDFLaTex to compile the file, or use F6. You should see a compiled version of the file. Now change the file so that it contains a mistake – perhaps by replacing ‘section’ by ‘sektion’ or leaving out the closing } after \begin{document. Now compile the file again and see what happens. Depending on the error you have introduced you may see something like this: ! Undefined control sequence. l.3 \sektion Rev: 417 7 2018-05-14 12:42 CHAPTER 2. EXERCISES {Introduction} or like this: Runaway argument? {document Hello there. ! Paragraph ended before \begin was complete. <to be read again> \par l.4 Can you see the red text in the lower window? This shows that there is an error. Clicking on the error should take you to the place in the edit window where the error was found. Figure 2.5: Texmaker: Locating errors A longer document This exercise uses the sample .tex file which you will have downloaded. Exercise 2 Open the sample.tex file in Texmaker and then compile and view the file. Now we are going to make some changes this file. Remember that you will need to save the file and compile each time you make changes. 1. Change documentclass from article to report and then to book. You might want to include \chapter{Introduction} immediately after \begin{document} 2. Change the documentclass font size option from 12pt to 11pt . 3. Add \usepackage{parskip} to the preamble. How does the paragraph formatting change? 4. Add \usepackage{times} to the preamble. The font should now look different. 5. Change the text colour from red to green. Remember that you will need to include \usepackage{color} in the preamble if it is not already there. 6. Swap the emphasised and bold text. 2018-05-14 12:42 8 Rev: 417 2.5. TYPESETTING TEXT Typesetting Text . Exercise 3 We will now typeset some simple sentences. Included in this document is The Not So Short Introduction to LATEX2e which we will be using for reference for the rest of these exercises. See Chapter 2 Typesetting Text of The Not So Short Introduction for more information. Look at Chapter 3 Helpful Hints, page 15. It contains instructions on how to typeset many characters used in the exercises below.
Recommended publications
  • Latex on Windows
    LaTeX on Windows Installing MikTeX and using TeXworks, as described on the main LaTeX page, is enough to get you started using LaTeX on Windows. This page provides further information for experienced users. Tips for using TeXworks Forward and Inverse Search If you are working on a long document, forward and inverse searching make editing much easier. • Forward search means jumping from a point in your LaTeX source file to the corresponding line in the pdf output file. • Inverse search means jumping from a line in the pdf file back to the corresponding point in the source file. In TeXworks, forward and inverse search are easy. To do a forward search, right-click on text in the source window and choose the option "Jump to PDF". Similarly, to do an inverse search, right-click in the output window and choose "Jump to Source". Other Front End Programs Among front ends, TeXworks has several advantages, principally, it is bundled with MikTeX and it works without any configuration. However, you may want to try other front end programs. The most common ones are listed below. • Texmaker. Installation notes: 1. After you have installed Texmaker, go to the QuickBuild section of the Configuration menu and choose pdflatex+pdfview. 2. Before you use spell-check in Texmaker, you may need to install a dictionary; see section 1.3 of the Texmaker user manual. • Winshell. Installation notes: 1. Install Winshell after installing MiKTeX. 2. When running the Winshell Setup program, choose the pdflatex-optimized toolbar. 3. Winshell uses an external pdf viewer to display output files.
    [Show full text]
  • Installation Guide
    Introduction to LATEX Workshop: Installation Guide This is a brief guide describing various options for installing a LATEX compiler and editor on your laptop or other computational device. The major software providers all provide automatic installers so in most cases it is as simple as navigating to the proper website and double clicking on an application. 1 Installing LATEX on your computer 1.1 Installing LATEX on Mac The standard compiler for Mac computers is called MacTEXwhich can be downloaded and installed from: http://tug.org/mactex/. The editor TEXMaker can be downloaded and installed from: www.xm1math.net/texmaker. 1.2 Installing LATEX on Windows The standard compiler for Windows computers is called MikTEXwhich can be downloaded and installed from: http://miktex.org/. The editor TEXMaker can be downloaded and installed from: www.xm1math.net/texmaker. 1.3 Installing LATEX on Linux Many contemporary Unix distributions are already packaged with a LATEXcompiler and editor. If you are using Ubuntu or Debian then you can install directly from the terminal by entering: sudo apt-get install texlive-full followed by sudo apt-get install texmaker. On RedHat or CentOS you can use sudo yum install tetex to obtain the compiler. In- stalling TEXmaker is a little more complicated but any text editor will work as well. 2 Tablets and Mobile Devices Most of the online editors have app versions that can be used from your phone or tablet. If you want to compile documents on these devices without an internet connection there are a few options. There are two popular ios apps: TeXPad and TeXWriter.
    [Show full text]
  • Build It with Nitrogen the Fast-Off-The-Block Erlang Web Framework
    Build it with Nitrogen The fast-off-the-block Erlang web framework Lloyd R. Prentice & Jesse Gumm dedicated to: Laurie, love of my life— Lloyd Jackie, my best half — Jesse and to: Rusty Klophaus and other giants of Open Source— LRP & JG Contents I. Frying Pan to Fire5 1. You want me to build what?7 2. Enter the lion’s den9 2.1. The big picture........................ 10 2.2. Install Nitrogen........................ 11 2.3. Lay of the land........................ 13 II. Projects 19 3. nitroBoard I 21 3.1. Plan of attack......................... 21 3.2. Create a new project..................... 23 3.3. Prototype welcome page................... 27 3.4. Anatomy of a page...................... 30 3.5. Anatomy of a route...................... 33 3.6. Anatomy of a template.................... 34 3.7. Elements............................ 35 3.8. Actions............................. 38 3.9. Triggers and Targets..................... 39 3.10. Enough theory........................ 40 i 3.11. Visitors............................ 44 3.12. Styling............................. 64 3.13. Debugging........................... 66 3.14. What you’ve learned..................... 66 3.15. Think and do......................... 68 4. nitroBoard II 69 4.1. Plan of attack......................... 69 4.2. Associates........................... 70 4.3. I am in/I am out....................... 78 4.4. Styling............................. 81 4.5. What you’ve learned..................... 82 4.6. Think and do......................... 82 5. A Simple Login System 83 5.1. Getting Started........................ 83 5.2. Dependencies......................... 84 5.2.1. Rebar Dependency: erlpass ............. 84 5.3. The index page........................ 85 5.4. Creating an account..................... 87 5.4.1. db_login module................... 89 5.5. The login form........................ 91 5.5.1.
    [Show full text]
  • LYX Frequently Asked Questions with Answers
    LYX Frequently Asked Questions with Answers by the LYX Team∗ January 20, 2008 Abstract This is the list of Frequently Asked Questions for LYX, the Open Source document processor that provides a What-You-See-Is-What-You-Mean environment for producing high quality documents. For further help, you may wish to contact the LYX User Group mailing list at [email protected] after you have read through the docs. Contents 1 Introduction and General Information 3 1.1 What is LYX? ......................... 3 1.2 That's ne, but is it useful? . 3 1.3 Where do I start? . 4 1.4 Does LYX run on my computer? . 5 1.5 How much hard disk space does LYX need? . 5 1.6 Is LYX really Open Source? . 5 2 Internet Resources 5 2.1 Where should I look on the World Wide Web for LYX stu? 5 2.2 Where can I get LYX material by FTP? . 6 2.3 What mailing lists are there? . 6 2.4 Are the mailing lists archived anywhere? . 6 2.5 Okay, wise guy! Where are they archived? . 6 3 Compatibility with other word/document processors 6 3.1 Can I read/write LATEX les? . 6 3.2 Can I read/write Word les? . 7 3.3 Can I read/write HTML les? . 7 4 Obtaining and Compiling LYX 7 4.1 What do I need? . 7 4.2 How do I compile it? . 8 4.3 I hate compiling. Where are precompiled binaries? . 8 ∗If you have comments or error corrections, please send them to the LYX Documentation mailing list, <[email protected]>.
    [Show full text]
  • X E TEX Live
    X TE EX Live Jonathan Kew SIL International Horsleys Green High Wycombe Bucks HP14 3XL, England jonathan_kew (at) sil dot org 1 X TE EX in TEX Live in the preamble are sufficient to set the typefaces through- out the document. ese fonts were installed by simply e release of TEX Live 2007 marked a milestone for the dropping the .otf or .ttf files in the computer’s Fonts X TE EX project, as the first major TEX distribution to in- folder; no .tfm, .fd, .sty, .map, or other TEX-related files clude X TE EX (version 0.996) as an integral part. Prior to had to be created or installed. this, X TE EX was a tool that could be added to a TEX setup, Release 0.996 of X T X also provides some enhance- but version and configuration differences meant that it was E E ments over earlier, pre-T X Live versions. In particular, difficult to ensure smooth integration in all cases, and it was E there are new primitives for low-level access to glyph infor- only available for users who specifically chose to seek it out mation (useful during font development and testing); some and install it. (One exception to this is the MacTEX pack- preliminary support for the use of OpenType math fonts age, which has included X TE EX for the past year or so, but (such as the Cambria Math font shipped with MS Office this was just one distribution on one platform.) Integration 2007); and a variety of bug fixes.
    [Show full text]
  • Texworks: Lowering the Barrier to Entry
    TEXworks: Lowering the barrier to entry Jonathan Kew 21 Ireton Court Thame OX9 3EB England [email protected] 1 Introduction The standard TEXworks workflow will also be PDF-centric, using pdfT X and X T X as typeset- One of the most successful TEX interfaces in recent E E E years has been Dick Koch's award-winning TeXShop ting engines and generating PDF documents as the on Mac OS X. I believe a large part of its success has default formatted output. Although it will still be been due to its relative simplicity, which has invited possible to configure a processing path based on new users to begin working with the system with- DVI, newcomers to the TEX world need not be con- out baffling them with options or cluttering their cerned with DVI at all, but can generally treat TEX screen with controls and buttons they don't under- as a system that goes directly from marked-up text stand. Experienced users may prefer environments files to ready-to-use PDF documents. T Xworks includes an integrated PDF viewer, such as iTEXMac, AUCTEX (or on other platforms, E based on the Poppler library, so there is no need WinEDT, Kile, TEXmaker, or many others), with more advanced editing features and project man- to switch to an external program such as Acrobat, agement, but the simplicity of the TeXShop model xpdf, etc., to view the typeset output. The inte- has much to recommend it for the new or occasional grated viewer also allows it to support source $ user.
    [Show full text]
  • A Work-Pattern Centric Approach to Building a Personal Knowledge Advantage Machine
    Graduate Theses, Dissertations, and Problem Reports 2012 A Work-Pattern Centric Approach to Building a Personal Knowledge Advantage Machine Daniel Sloan West Virginia University Follow this and additional works at: https://researchrepository.wvu.edu/etd Recommended Citation Sloan, Daniel, "A Work-Pattern Centric Approach to Building a Personal Knowledge Advantage Machine" (2012). Graduate Theses, Dissertations, and Problem Reports. 4919. https://researchrepository.wvu.edu/etd/4919 This Thesis is protected by copyright and/or related rights. It has been brought to you by the The Research Repository @ WVU with permission from the rights-holder(s). You are free to use this Thesis in any way that is permitted by the copyright and related rights legislation that applies to your use. For other uses you must obtain permission from the rights-holder(s) directly, unless additional rights are indicated by a Creative Commons license in the record and/ or on the work itself. This Thesis has been accepted for inclusion in WVU Graduate Theses, Dissertations, and Problem Reports collection by an authorized administrator of The Research Repository @ WVU. For more information, please contact [email protected]. A Work-Pattern Centric Approach to Building a Personal Knowledge Advantage Machine Daniel Sloan Thesis submitted to the College of Engineering and Mineral Resources at West Virginia University in partial fulfillment of the requirements for the degree of Master of Science in Computer Science Yenumula V. Reddy, Ph.D., Chair Bojan Cukic, Ph.D. Cynthia D. Tanner, MS. Lane Department of Computer Science and Electrical Engineering Morgantown, West Virginia 2012 Keywords: Work-patterns, file usage, semantic desktop, machine learning Copyright c 2012 Daniel Sloan Abstract A Work-Pattern Centric Approach to Building a Personal Knowledge Advantage Machine Daniel Sloan A work pattern, also known as a usage pattern, can be broadly defined as the methods by which a user typically utilizes a particular system.
    [Show full text]
  • Setting up Your Working Environment
    Setting Up your Working Environment By Christof Lutteroth This document gives some advice on how to get a working environment set up for an academic project in Computer Science. It outlines the various tools that make research in a group a little bit easier. If you have any questions, please discuss them with your supervisor. Collecting Citations using BibTeX BibTeX is the standard citation subsystem for LaTeX. It allows you to collect citations of various document types, such as conference papers, journal articles, books and technical reports. When using Google Scholar, you need to go to “Scholar Preferences” from the main page (scholar.google.com) and adjust the settings to make Google show links to BibTeX entries for each citation. The BibTex entries can be copied directly into your .bib file. If you are working from home and would like to access PDFs of publications through the university library, you can use the following Google Scholar proxy server: http://scholar.google.com.ezproxy.auckland.ac.nz Writing your Thesis using LaTeX The LaTeX typesetting system is a text-based compiler that reads a document description language and creates relatively nice looking documents such as PDFs. Although not always easy to use, it will help you to produce a thesis without having to worry too much about formatting issues. If you are working on Windows, make sure your computer has the MikTeX distribution installed (www.miktex.org). MikTeX is an implementation of LaTeX specifically for Windows. The “basic MikTeX system” should be enough. There are also LaTeX distributions for other operating systems.
    [Show full text]
  • 1 R Installation Instructions 2 LATEX Installation Instructions
    1 R Installation Instructions 1. Download R from http://cran.r-project.org/mirrors.html.1 2. Once you've picked a mirror download R for your operating system. 3. When it's done downloading, install R. 4. (Optional) Download and install the most recent version of RStudio Desktop from http://www. rstudio.com/products/rstudio/download/.2 • Make sure you install R before RStudio. Not doing so could potentially cause issues. 2 LATEX Installation Instructions LaTeX is a powerful document preparation system. It allows you to output high-quality and customizable pdf documents. LATEX is a document markup language, meaning that it consists of syntax that specifies to the program how the document is to be formatted - that is, typesetting instructions. More common examples of markup languages are HTML and XML. Markup embedded in a LATEX document conveys formatting and processing specifications to the TEX engine. It then allows you to output fancy PDFs like this one (and just about everything else used in the Prefresher) To begin using LATEX you need to things: • LATEX front end or text editor to write a .tex file • LATEX compiler that processes the TEX code you've written and outputs the document you want Windows users: • Compiler: MiKTeX • Some editors: Texmaker , TeXnic Center , LyX. 3 Mac users: • Compiler: MacTeX • Some editors: TeXShop , Aquamacs , Texmaker , TextWrangler , Latexian 1It doesn't really matter which mirror you use. 2RStudio is, in my opinion, the best IDE (integrated development environment) for R. It allows you to simultaneously see your R Console, multiple scripts of code, all the objects in your workspace, your working directory, plots, installed packages, and help files.
    [Show full text]
  • Fileweaver: Flexible File Management with Automatic Dependency Tracking Julien Gori Han L
    FileWeaver: Flexible File Management with Automatic Dependency Tracking Julien Gori Han L. Han Michel Beaudouin-Lafon Université Paris-Saclay, CNRS, Inria, Laboratoire de Recherche en Informatique F-91400 Orsay, France {jgori, han.han, mbl}@lri.fr ABSTRACT Specialized tools typically load and save information in pro- Knowledge management and sharing involves a variety of spe- prietary and/or binary data formats, such as Matlab1 .mat cialized but isolated software tools, tied together by the files files or SPSS2 .sav files. Knowledge workers have to rely on that these tools use and produce. We interviewed 23 scientists standardized exchange file formats and file format converters and found that they all had difficulties using the file system to communicate information from one application to the other, to keep track of, re-find and maintain consistency among re- leading to a multiplication of files. lated but distributed information. We introduce FileWeaver, a system that automatically detects dependencies among files Moreover, as exemplified by Guo’s “typical” workflow of a without explicit user action, tracks their history, and lets users data scientist [8, Fig. 2.1], knowledge workers’ practices often interact directly with the graphs representing these dependen- consist of several iterations of exploratory, production and cies and version history. Changes to a file can trigger recipes, dissemination phases, in which workers create copies of files either automatically or under user control, to keep the file con- to save their work, file revisions, e.g. to revise the logic of sistent with its dependants. Users can merge variants of a file, their code, and file variants, e.g.
    [Show full text]
  • Metadefender Core V4.12.2
    MetaDefender Core v4.12.2 © 2018 OPSWAT, Inc. All rights reserved. OPSWAT®, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc. All other trademarks, trade names, service marks, service names, and images mentioned and/or used herein belong to their respective owners. Table of Contents About This Guide 13 Key Features of Metadefender Core 14 1. Quick Start with Metadefender Core 15 1.1. Installation 15 Operating system invariant initial steps 15 Basic setup 16 1.1.1. Configuration wizard 16 1.2. License Activation 21 1.3. Scan Files with Metadefender Core 21 2. Installing or Upgrading Metadefender Core 22 2.1. Recommended System Requirements 22 System Requirements For Server 22 Browser Requirements for the Metadefender Core Management Console 24 2.2. Installing Metadefender 25 Installation 25 Installation notes 25 2.2.1. Installing Metadefender Core using command line 26 2.2.2. Installing Metadefender Core using the Install Wizard 27 2.3. Upgrading MetaDefender Core 27 Upgrading from MetaDefender Core 3.x 27 Upgrading from MetaDefender Core 4.x 28 2.4. Metadefender Core Licensing 28 2.4.1. Activating Metadefender Licenses 28 2.4.2. Checking Your Metadefender Core License 35 2.5. Performance and Load Estimation 36 What to know before reading the results: Some factors that affect performance 36 How test results are calculated 37 Test Reports 37 Performance Report - Multi-Scanning On Linux 37 Performance Report - Multi-Scanning On Windows 41 2.6. Special installation options 46 Use RAMDISK for the tempdirectory 46 3. Configuring Metadefender Core 50 3.1. Management Console 50 3.2.
    [Show full text]
  • DE-Tex-FAQ (Vers. 72
    Fragen und Antworten (FAQ) über das Textsatzsystem TEX und DANTE, Deutschsprachige Anwendervereinigung TEX e.V. Bernd Raichle, Rolf Niepraschk und Thomas Hafner Version 72 vom September 2003 Dieser Text enthält häufig gestellte Fragen und passende Antworten zum Textsatzsy- stem TEX und zu DANTE e.V. Er kann über beliebige Medien frei verteilt werden, solange er unverändert bleibt (in- klusive dieses Hinweises). Die Autoren bitten bei Verteilung über gedruckte Medien, über Datenträger wie CD-ROM u. ä. um Zusendung von mindestens drei Belegexem- plaren. Anregungen, Ergänzungen, Kommentare und Bemerkungen zur FAQ senden Sie bit- te per E-Mail an [email protected] 1 Inhalt Inhalt 1 Allgemeines 5 1.1 Über diese FAQ . 5 1.2 CTAN, das ‚Comprehensive TEX Archive Network‘ . 8 1.3 Newsgroups und Diskussionslisten . 10 2 Anwendervereinigungen, Tagungen, Literatur 17 2.1 DANTE e.V. 17 2.2 Anwendervereinigungen . 19 2.3 Tagungen »geändert« .................................... 21 2.4 Literatur »geändert« .................................... 22 3 Textsatzsystem TEX – Übersicht 32 3.1 Grundlegendes . 32 3.2 Welche TEX-Formate gibt es? Was ist LATEX? . 38 3.3 Welche TEX-Weiterentwicklungen gibt es? . 41 4 Textsatzsystem TEX – Bezugsquellen 45 4.1 Wie bekomme ich ein TEX-System? . 45 4.2 TEX-Implementierungen »geändert« ........................... 48 4.3 Editoren, Frontend-/GUI-Programme »geändert« .................... 54 5 TEX, LATEX, Makros etc. (I) 62 5.1 LATEX – Grundlegendes . 62 5.2 LATEX – Probleme beim Umstieg von LATEX 2.09 . 67 5.3 (Silben-)Trennung, Absatz-, Seitenumbruch . 68 5.4 Seitenlayout, Layout allgemein, Kopf- und Fußzeilen »geändert« . 72 6 TEX, LATEX, Makros etc. (II) 79 6.1 Abbildungen und Tafeln .
    [Show full text]