A New Approach to Document Formatting Jeffrey H. Kingston Basser Department of Computer Science University of Sydney 2006 Austra

Total Page:16

File Type:pdf, Size:1020Kb

A New Approach to Document Formatting Jeffrey H. Kingston Basser Department of Computer Science University of Sydney 2006 Austra A New Approach to Document Formatting Jeffrey H. Kingston Basser Department of Computer Science University of Sydney 2006 Australia ABSTRACT This paper describes a new approach to document formatting, in which features are written in a small, coherent, high-level language called Lout. The resulting increase in productivity has permitted many advanced features to be developed quickly and accurately, including page layout of unprecedented flexibility, equation formatting, automatically generated tables of contents, running page headers and footers, cross references, sorted indexes, and access to bibliographic databases. A fully operational production implementation of the Lout system including all these features and many others is freely available. 22 December, 1992 A New Approach to Document Formatting Jeffrey H. Kingston Basser Department of Computer Science University of Sydney 2006 Australia 1. Introduction mented. The personal computer and the laser A second solution is to provide a printer have sparked a revolution in the relatively small system equipped with a production of documents. Many authors now means of defining new features, as in routinely take their work from conception programming languages. This approach to camera-ready copy, many publishers are has been taken by the batch formatters using desktop publishing systems, and it is (those which do not display a continuously probable that manual assembly of documents updated image of the printed document while will become uncommon in the near future. editing) found in academia, notably troff [11], T X [10], and Scribe [12]. Features As control moves into the hands of E such as footnotes and automatic tables of an ever-increasing number of non-technical contents have been added to these systems people, the stresses on document formatting using macro definitions. Unfortunately, such software increase. On the one hand, this soft- extensions are very difficult and error-prone ware must be so simple that anyone can use in practice: T X's footnote macro alone it; on the other, it must supply a bewildering E contains half a page of dense, obscure code, array of features. A book, for example, de- while those who have extended troff have mands fonts, paragraph and page breaking, abandoned the language itself and taken floating figures and tables, footnotes, chap- refuge in preprocessors. A more productive ters and sections, running page headers and basis for developing new features is needed. footers, an automatically generated table of contents, and a sorted index. Add to this an This article presents a high-level open-ended list of specialized features, be- language for document formatting, called ginning with mathematical typesetting, dia- Lout, which is intended to form such a grams, and access to bibliographic databas- basis. Lout is quite accessible to non-expert es, and the result is a nightmare for the soft- users, but its unique property is the ease with ware developer. which expert users can add new features. We begin with a presentation of Lout as it One solution to this feature explosion appears to the non-expert user who employs problem is to implement as a system primi- the standard packages without understanding tive every feature that will ever be required. Lout's principles. Later sections switch to Although all of the successful interactive the expert's view, showing by examples the document editors known to the author take principles of Lout and how advanced features this approach (admittedly with some attempt are defined. to generalize and unify their features), it has 1 clearly reached its limit. Few such systems A Unix-compatible batch formatter for provide equation formatting, fewer still will format a Pascal program, and other special- 1 ized features will simply never be imple- Unix is a trademark of AT&T Bell Laborato- ries. - 2 - Lout (called Basser Lout) has been written headers and footers, access to bibliographic which produces PostScript1 output suitable databases, and a sorted index, among many for printing on most laser printers and many other features. Specialized packages exist other devices. A library of standard packages for mathematical typesetting, drawing written in Lout provides all of the features figures, and formatting Pascal programs. listed above and many others. This system The advanced features maintain the is not an experimental prototype, it is a fully simple style established above. To produce operational production implementation. The a footnote, for example, one simply types software and its supporting documentation [3, 9, 4, 5, 6, 7, 8] are available free of charge @FootNote { ... } from the author. at the appropriate point, and it will be numbered and placed at the bottom of the 2. The non-expert's view page; to add an item to the index, The non-expert user perceives Lout expert @Index { Expert user } as text interspersed with special symbols, in a style reminiscent of many other batch is typed, and the right parameter will appear formatters: in the index, with a page number, at a place determined by the alphabetical ranking of the @Doc @Text @Begin left parameter. No technical knowledge is @Heading { Standard Integrals } required to use these features. @PP The following list of standard integrals should be memorized: 3. Objects @NumberList @Item @Eq {int e sup x dx = e sup x} To the expert user, Lout is a high- @Item @Eq {int dx over level functional language with a relative- sqrt { 1 - x sup 2 } = arc sin x} ly small repertoire of primitive features or- @EndList ganized around four key concepts: objects, @End @Text definitions, cross references, and galleys. An object is a rectangle with at least one horizon- Braces are used for grouping parameters tal and one vertical mark protruding from it. to the features. The symbols are all For example, taken from two of the standard packages: DocumentLayout, which provides headings, Australia paragraphs, lists, footnotes, sections, and so is an object which is viewed by Lout like on, and Eq, which provides mathematical this: typesetting in a style copied from the eqn language of Kernighan and Cherry [2]. Australia At the time of writing, packages exist Horizontal and vertical concatenation for formatting general documents, technical operators, denoted by the symbols | and /, are reports, and books, the latter providing an used to assemble larger objects: automatic table of contents, running page USA |0.2i Australia is the object 1PostScript is a trademark of Adobe Systems, Incorporated. - 3 - USA Australia The length will be widened if necessary to prevent the parameters from overlapping, The parameters are separated by the length thus implementing the baseline-to-baseline given after the concatenation symbol (0.2 spacing used between lines of text. Other inches in this example), and their horizontal modes provide tabulation from the left marks are aligned. margin, overstriking, and hyphenation. Tables are made by combining the The final appearance of an object is two operators, with | having the higher affected by a limited amount of information precedence: inherited from the context, principally the USA |0.2i Australia font and the width available for the object to /0.1i Washington | Canberra occupy. There are operators for setting these attributes: is the object Slope @Font { USA Australia Hello, world Washington Canberra } The second horizontal concatenation sym- produces bol needs no length, since the first one de- Hello, world termines the separation between the two columns created by the alignment of the ver- and in a similar way tical marks. Objects of arbitrary complex- ity may be assembled using these and other 1.5i @Wide { operators, and braces used for grouping, in a (1) |0.1i A small manner analogous to the assembly of expres- indented paragraph sions in programming languages. of text. } The lengths attached to concatenation symbols have features which permit objects produces to be positioned very precisely. In addition to the usual units of measurement (inches, (1) A small indented centimetres, points, and ems), lengths may paragraph of text. be measured in units of the current font size, space width, inter-line space, and available with the paragraph inheriting and being width (for centering and right justification). broken to an available width of 1.4 inches minus the width of (1). This size inheritance There are also six gap modes, which remains secure through all the complexities determine where the lengths are measured of gap modes, mark alignment, the @Wide from. Previous examples have used edge- and other operators, and so on, providing a to-edge mode: high-level service comparable in value with strong typing in programming languages. Lout also provides a mark-to-mark mode, 4. Definitions obtained by appending x to the length: Lout permits the user to define operators which take objects as parameters and return objects as results. This feature, - 4 - unremarkable in itself, has some surprising ators combine together. All are Lout prim- applications, most notably to a problem itives except @HLine, which calls upon which is the litmus test of flexibility in Lout's graphics primitives to draw a horizon- document formatting: the specification of tal line. The // and ^// operators are variants page layout. of vertical concatenation which omit mark The use of operators in document alignment; the separation is 0.2 times the cur- formatting seems to have been pioneered rent font size. The two |0.5rt operators cen- by the eqn equation formatting language ter each parameter in the column. Finally, of Kernighan and Cherry [2]. In eqn, the the @OneRow and ^// operators work togeth- mathematical formula er to ensure that only one horizontal mark protrudes, rather than three; the result has the x2 + 1 structure 4 x2 + 1 for example is expressed as 4 { x sup 2 + 1 } over 4 and so will be aligned correctly with adjacent parts of the equation. This identical expression is also used in Lout, As is usual in functional languages, but in Lout the operators (sup, over and so sequences are obtained by recursive on) have visible definitions which are easy to definitions.
Recommended publications
  • Tinn-R Team Has a New Member Working on the Source Code: Wel- Come Huashan Chen
    Editus eBook Series Editus eBooks is a series of electronic books aimed at students and re- searchers of arts and sciences in general. Tinn-R Editor (2010 1. ed. Rmetrics) Tinn-R Editor - GUI forR Language and Environment (2014 2. ed. Editus) José Cláudio Faria Philippe Grosjean Enio Galinkin Jelihovschi Ricardo Pietrobon Philipe Silva Farias Universidade Estadual de Santa Cruz GOVERNO DO ESTADO DA BAHIA JAQUES WAGNER - GOVERNADOR SECRETARIA DE EDUCAÇÃO OSVALDO BARRETO FILHO - SECRETÁRIO UNIVERSIDADE ESTADUAL DE SANTA CRUZ ADÉLIA MARIA CARVALHO DE MELO PINHEIRO - REITORA EVANDRO SENA FREIRE - VICE-REITOR DIRETORA DA EDITUS RITA VIRGINIA ALVES SANTOS ARGOLLO Conselho Editorial: Rita Virginia Alves Santos Argollo – Presidente Andréa de Azevedo Morégula André Luiz Rosa Ribeiro Adriana dos Santos Reis Lemos Dorival de Freitas Evandro Sena Freire Francisco Mendes Costa José Montival Alencar Junior Lurdes Bertol Rocha Maria Laura de Oliveira Gomes Marileide dos Santos de Oliveira Raimunda Alves Moreira de Assis Roseanne Montargil Rocha Silvia Maria Santos Carvalho Copyright©2015 by JOSÉ CLÁUDIO FARIA PHILIPPE GROSJEAN ENIO GALINKIN JELIHOVSCHI RICARDO PIETROBON PHILIPE SILVA FARIAS Direitos desta edição reservados à EDITUS - EDITORA DA UESC A reprodução não autorizada desta publicação, por qualquer meio, seja total ou parcial, constitui violação da Lei nº 9.610/98. Depósito legal na Biblioteca Nacional, conforme Lei nº 10.994, de 14 de dezembro de 2004. CAPA Carolina Sartório Faria REVISÃO Amek Traduções Dados Internacionais de Catalogação na Publicação (CIP) T591 Tinn-R Editor – GUI for R Language and Environment / José Cláudio Faria [et al.]. – 2. ed. – Ilhéus, BA : Editus, 2015. xvii, 279 p. ; pdf Texto em inglês.
    [Show full text]
  • Markdown Markup Languages What Is Markdown? Symbol
    Markdown What is Markdown? ● Markdown is a lightweight markup language with plain text formatting syntax. Péter Jeszenszky – See: https://en.wikipedia.org/wiki/Markdown Faculty of Informatics, University of Debrecen [email protected] Last modified: October 4, 2019 3 Markup Languages Symbol ● Markup languages are computer languages for annotating ● Dustin Curtis. The Markdown Mark. text. https://dcurt.is/the-markdown-mark – They allow the association of metadata with parts of text in a https://github.com/dcurtis/markdown-mark clearly distinguishable way. ● Examples: – TeX, LaTeX https://www.latex-project.org/ – Markdown https://daringfireball.net/projects/markdown/ – troff (man pages) https://www.gnu.org/software/groff/ – XML https://www.w3.org/XML/ – Wikitext https://en.wikipedia.org/wiki/Help:Wikitext 2 4 Characteristics Usage (2) ● An easy-to-read and easy-to-write plain text ● Collaboration platforms and tools: format that. – GitHub https://github.com/ ● Can be converted to various output formats ● See: Writing on GitHub (e.g., HTML). https://help.github.com/en/categories/writing-on-github – Trello https://trello.com/ ● Specifically targeted at non-technical users. ● See: How To Format Your Text in Trello ● The syntax is mostly inspired by the format of https://help.trello.com/article/821-using-markdown-in-trell o plain text email. 5 7 Usage (1) Usage (3) ● Markdown is widely used on the web for ● Blogging platforms and content management entering text. systems: – ● The main application areas include: Ghost https://ghost.org/
    [Show full text]
  • Using NROFF and TROFF
    Using NROFF and TROFF Part Number: 800-1755-10 Revision A, of 9 May 1988 UNIX is a registered trademark of AT&T. SunOS is a trademark of Sun Microsystems, Inc. Sun Workstation is a registered trademark of Sun Microsystems, Inc. Material in this manual comes from a number of sources: NrofflTroff User's Manual, Joseph F. Ossanna, Bell Laboratories, Murray Hill, New Jersey; A Troff Tutorial, Brian W. Kernighan, Bell Laboratories, Murray Hill, New Jersey; Typ­ ing Documents on the UNIXSystem: Using the -ms Macros with Troff and Nroff, M. E. Lesk, Bell Laboratories, Murray Hill, New Jersey; A Guide to Preparing Documents with -ms, M. E. Lesk, Bell Laboratories, Murray Hill, New Jersey; Document Formatting on UNIXUsing the -ms Macros, Joel Kies, University of California, Berkeley, California; Writing Papers with Nroff Using -me, Eric P. Allman, University of California, Berkeley; and Introducing the UNIXSystem, Henry McGilton, Rachel Morgan, McGraw-Hill Book Company, 1983. These materials are gratefully acknowledged. Copyright © 1987, 1988 by Sun Microsystems, Inc. This publication is protected by Federal Copyright Law, with all rights reserved. No part of this publication may be reproduced, stored in a retrieval system, translated, transcribed, or transmitted, in any form, or by any means manual, electric, electronic, electro-magnetic, mechanical, chemical, optical, or other­ wise, without prior explicit written permission from Sun Microsystems. Contents Chapter 1 Introduction . 1.1. nrof f andtrof f . Text Formatting Versus Word Processing TheEvolutionof nr of f andt ro f f Preprocessors and Postprocessors 1.2. tr of f, Typesetters, and Special-Purpose Formatters ............ 1.3.
    [Show full text]
  • Deployment of XML for Office Documents in Organizations
    JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen DeployPent of XML for OfÀFe DoFXPents in Organizations JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen Deployment of XML for Office Documents in Organizations UNIVERSITY OF JYVÄSKYLÄ JYVÄSKYLÄ 2014 Deployment of XML for Office Documents in Organizations JYVÄSKYLÄ LICENTIATE THESES IN COMPUTING 16 Eliisa Jauhiainen Deployment of XML for Office Documents in Organizations UNIVERSITY OF JYVÄSKYLÄ JYVÄSKYLÄ 2014 Editor Mauri Leppänen Department of Computer Science and Information Systems, University of Jyväskylä URN:ISBN:978-951-39-5600-4 ISBN 978-951-39-5600-4 (PDF) ISBN 978-951-39-5599-1 (nid.) ISSN 1795-9713 Copyright © 2014, by University of Jyväskylä Jyväskylä University Printing House, Jyväskylä 2014 ABSTRACT Jauhiainen, Eliisa Deployment of XML for office documents in organizations Jyväskylä: University of Jyväskylä, 201, 63 p. (+ four included articles) (-\YlVN\Ol/LFHQWLDWH7KHVHVLQ&RPSXWLQJ ISSN) ,6%1 (nid.), 978-951-39-5600-4 (PDF) Licentiate Thesis Majority of the content in organizations is stored as documents. Structured documents, like XML documents, allow the structure definitions, document instances, and layout specifications to be handled as separate entities. This is an important feature to realize from a document management point of view. A class of similar documents with the same structure constitutes a document type. The documents are built from components that are logical units of information within the context of the document type. Office documents are typically authored using word-processing software, they are relatively short in length, and intended for human consumption. The development of open office standards brought XML to organizations’ office en- vironments and changed the capabilities of using document content in ways that were previously impossible or difficult.
    [Show full text]
  • System Tools Reference Manual for Filenet Image Services
    IBM FileNet Image Services Version 4.2 System Tools Reference Manual SC19-3326-00 IBM FileNet Image Services Version 4.2 System Tools Reference Manual SC19-3326-00 Note Before using this information and the product it supports, read the information in “Notices” on page 1439. This edition applies to version 4.2 of IBM FileNet Image Services (product number 5724-R95) and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright IBM Corporation 1984, 2019. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents About this manual 17 Manual Organization 18 Document revision history 18 What to Read First 19 Related Documents 19 Accessing IBM FileNet Documentation 20 IBM FileNet Education 20 Feedback 20 Documentation feedback 20 Product consumability feedback 21 Introduction 22 Tools Overview 22 Subsection Descriptions 35 Description 35 Use 35 Syntax 35 Flags and Options 35 Commands 35 Examples or Sample Output 36 Checklist 36 Procedure 36 May 2011 FileNet Image Services System Tools Reference Manual, Version 4.2 5 Contents Related Topics 36 Running Image Services Tools Remotely 37 How an Image Services Server can hang 37 Best Practices 37 Why an intermediate server works 38 Cross Reference 39 Backup Preparation and Analysis 39 Batches 39 Cache 40 Configuration 41 Core Files 41 Databases 42 Data Dictionary 43 Document Committal 43 Document Deletion 43 Document Services 44 Document Retrieval 44 Enterprise Backup/Restore (EBR)
    [Show full text]
  • Looking to the Future by JOHN BALDWIN
    1 of 3 Looking to the Future BY JOHN BALDWIN FreeBSD’s 13.0 release delivers new features to users and refines the workflow for new contri- butions. FreeBSD contributors have been busy fixing bugs and adding new features since 12.0’s release in December of 2018. In addition, FreeBSD developers have refined their vision to focus on FreeBSD’s future users. An abbreviated list of some of the changes in 13.0 is given below. A more detailed list can be found in the release notes. Shifting Tools Not all of the changes in the FreeBSD Project over the last two years have taken the form of patches. Some of the largest changes have been made in the tools used to contribute to FreeBSD. The first major change is that FreeBSD has switched from Subversion to Git for storing source code, documentation, and ports. Git is widely used in the software industry and is more familiar to new contribu- tors than Subversion. Git’s distributed nature also more easily facilitates contributions from individuals who are Not all of the changes in the not committers. FreeBSD had been providing Git mir- rors of the Subversion repositories for several years, and FreeBSD Project over the last many developers had used Git to manage in-progress patches. The Git mirrors have now become the offi- two years have taken the form cial repositories and changes are now pushed directly of patches. to Git instead of Subversion. FreeBSD 13.0 is the first release whose sources are only available via Git rather than Subversion.
    [Show full text]
  • Interface Specification – Archive Content Services
    gSPECIFICATION REV. 484-0200155 F5 NCR Corporation Image & Payment Systems 50 Northland Road Unit 100 Waterloo, Ontario N2V1 N3 PROGRAM: ImageMark Archive 5.1 TITLE: Interface Specification – Archive Content Services DATE: December 7, 2016 RELEASE: Draft SOURCE ORGANIZATION: Solutions Architecture Prepared By: Peter Robinson, Solutions Architecture Date Approved By: Judy Sandison, Manager, Solutions Architecture Date Copyright © 2016 by NCR Corporation, Duluth, Georgia, USA. All rights reserved. SPECIFICATION REV. 484-0200155 F5 NCR Corporation Image & Payment Systems 50 Northland Road Unit 100 Waterloo, Ontario N2V1 N3 PROGRAM: ImageMark Archive 5.1 TITLE: Interface Specification – Archive Content Services DATE: December 7, 2016 RELEASE: Draft SOURCE ORGANIZATION: Solutions Architecture Copyright © 2016 by NCR Corporation, Duluth, Ohio, USA. All rights reserved. ImageMark Archive 4.01 484-0200155, Rev F13 Interface Specification – Archive Content Services Page 3 of 62 CHANGE SHEET Rev Date Section Description of Change By A 06/13/2003 All Initial Release – 53DR25561 Peter Robinson B 09/03/2003 All Change Release – 53DR25690 Peter Robinson C 11/30/2003 All Change Release – 53DR25905 Peter Robinson D 10/28/2004 All Change Release – 53DR26456 Peter Robinson E 02/16/2005 All Change Release – 53DR24994 F1 06/01/2005 Peter Robinson F All Change Rev.F is a copy of draft Rev.Fn Peter Robinson F All Released on 53DRnnnnn Peter Robinson F2 03/28/2006 6.2 Added error codes for Fill element F3 09/22/2014 All Updated 5.1 Release Information Saurabh Patel F4 10/17/2016 6, 7, 12 New sections Anjali Phatak F5 11/18/2016 13 New section - FAQs Anjali Phatak NCR Corporation December 7, 2016 ImageMark Archive 4.01 484-0200155, Rev F13 Interface Specification – Archive Content Services Page 4 of 62 TABLE OF CONTENTS 1.
    [Show full text]
  • A User's Guide to the Lout Document Formatting System
    A User’s Guide to the Lout Document Formatting System Jeffrey H. Kingston Version 3.40 June 2013 Copyright 1991, 2013 Jeffrey H. Kingston, School of Information Technologies, The University of Sydney 2006, Australia. ISBN 0 86758 9515. Preface This User’s Guide brings together in one document everything needed for the day-to-day use of Version 3 of the Lout document formatting system. There are three other documents describing Lout: the Expert’s Guide [5], which you need if you want to add new features to Lout; a journal paper on the design and implementation of Lout [3]; and a set of overhead transparencies [4]that cover much the same ground as this Guide. These documents are all distributed with the software. Lout is distributed free of charge under the GNU Public License. The primary source is ftp://ftp.it.usyd.edu.au/jeff/lout containing a gzipped tar file of the current version, and various other things including a PostScript version of this guide. The distribution contains source code, libraries,documentation, license, and installation instructions. A mailing list has been set up for discussion of all topics related to Lout. To subscribe (or unsubscribe), visit http://lists.nongnu.org/mailman/listinfo/lout-users After subscribing, to post an item send email to [email protected]; it will be forwarded to all subscribers via email. There is also a web site at http://savannah.nongnu.org/projects/lout. Lout began in 1984 as a research project into the design of a high-level language for document formatting.
    [Show full text]
  • Triroff, an Adaptation of the Device-Independent Troff for Formatting Tri-Directional Text
    ELECTRONIC PUBLISHING, VOL . 2(3), 119±142 (OCTOBER 1989) triroff, an adaptation of the device-independent troff for formatting tri-directional text ( K9J+ דניאל ברי) 69K ) AND DANIEL BERRY זאב בקר) ZEEV BECKER 9 T Computer Science Department Technion , Haifa 32000 N , Israel X SUMMARY This paper describes a system for formatting documents consisting of text written in languages printed in three different directions, left-to-right, right-to-left, and top-to-bottom. For example, this paper is such a document because it contains text written in English, Hebrew, Japanese, and Chinese. The system assumes that the input is in the order in which the text is read aloud, and it produces output in which each language is printed in its own correct direction, but for which a human cognizant of the reading conventions will reproduce the input order. The system consists of three major pieces of software: Ossana and Kernighan's ditroff for formatting text consisting of only left-to-right or unidirectional text, Buchman and Berry's ffortid for rearranging right-to-left language text occurring in ditroff output to be printed from right to left, and a new program bditroff for rearranging top-to- bottom text occurring in ditroff output to be printed from top to bottom. Below are translations of this English language abstract, except for this paragraph, into Hebrew, Japanese, and Chinese. The latter two are each printed twice, once in a modern left- to-right style, and once in a more traditional top-to-bottom style. The software described in this paper was used to format and typeset this paper.
    [Show full text]
  • GNU A2ps, Version 4.14 General Purpose Postscript Generating Utility Edition 4.14, 2 May 2007
    GNU a2ps, version 4.14 General Purpose PostScript Generating Utility Edition 4.14, 2 May 2007 Akim Demaille Miguel Santana Copyright c 1988-1993 Miguel Santana Copyright c 1995-2000 Akim Demaille, Miguel Santana Copyright c 2007 Akim Demaille, Miguel Santana and Masayuki Hatta Permission is granted to make and distribute verbatim copies of this manual provided the copy- right notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the condi- tions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice maybe stated in a translation approved by the Free Software Foundation. i Short Contents 1 Introduction :::::::::::::::::::::::::::::::::::::::::::::::::::::::: 1 2 User's Guide :::::::::::::::::::::::::::::::::::::::::::::::::::::::: 4 3 Invoking a2ps ::::::::::::::::::::::::::::::::::::::::::::::::::::::: 9 4 Configuration Files :::::::::::::::::::::::::::::::::::::::::::::::::: 27 5 Library Files ::::::::::::::::::::::::::::::::::::::::::::::::::::::: 35 6 Encodings ::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 39 7 Pretty Printing ::::::::::::::::::::::::::::::::::::::::::::::::::::: 44 8 PostScript ::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 71 9 Contributions
    [Show full text]
  • Unix Programmer's Manual
    There is no warranty of merchantability nor any warranty of fitness for a particu!ar purpose nor any other warranty, either expressed or imp!ied, a’s to the accuracy of the enclosed m~=:crials or a~ Io ~helr ,~.ui~::~::.j!it’/ for ~ny p~rficu~ar pur~.~o~e. ~".-~--, ....-.re: " n~ I T~ ~hone Laaorator es 8ssumg$ no rO, p::::nS,-,,.:~:y ~or their use by the recipient. Furln=,, [: ’ La:::.c:,:e?o:,os ~:’urnes no ob~ja~tjon ~o furnish 6ny a~o,~,,..n~e at ~ny k:nd v,,hetsoever, or to furnish any additional jnformstjcn or documenta’tjon. UNIX PROGRAMMER’S MANUAL F~ifth ~ K. Thompson D. M. Ritchie June, 1974 Copyright:.©d972, 1973, 1974 Bell Telephone:Laboratories, Incorporated Copyright © 1972, 1973, 1974 Bell Telephone Laboratories, Incorporated This manual was set by a Graphic Systems photo- typesetter driven by the troff formatting program operating under the UNIX system. The text of the manual was prepared using the ed text editor. PREFACE to the Fifth Edition . The number of UNIX installations is now above 50, and many more are expected. None of these has exactly the same complement of hardware or software. Therefore, at any particular installa- tion, it is quite possible that this manual will give inappropriate information. The authors are grateful to L. L. Cherry, L. A. Dimino, R. C. Haight, S. C. Johnson, B. W. Ker- nighan, M. E. Lesk, and E. N. Pinson for their contributions to the system software, and to L. E. McMahon for software and for his contributions to this manual.
    [Show full text]
  • Lilypond Informations Générales
    LilyPond Le syst`eme de notation musicale Informations g´en´erales Equipe´ de d´eveloppement de LilyPond Copyright ⃝c 2009–2020 par les auteurs. This file documents the LilyPond website. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections. A copy of the license is included in the section entitled “GNU Free Documentation License”. Pour LilyPond version 2.21.82 1 LilyPond ... la notation musicale pour tous LilyPond est un logiciel de gravure musicale, destin´e`aproduire des partitions de qualit´e optimale. Ce projet apporte `al’´edition musicale informatis´ee l’esth´etique typographique de la gravure traditionnelle. LilyPond est un logiciel libre rattach´eau projet GNU (https://gnu. org). Plus sur LilyPond dans notre [Introduction], page 3, ! La beaut´epar l’exemple LilyPond est un outil `ala fois puissant et flexible qui se charge de graver toutes sortes de partitions, qu’il s’agisse de musique classique (comme cet exemple de J.S. Bach), notation complexe, musique ancienne, musique moderne, tablature, musique vocale, feuille de chant, applications p´edagogiques, grands projets, sortie personnalis´ee ainsi que des diagrammes de Schenker. Venez puiser l’inspiration dans notre galerie [Exemples], page 6, 2 Actualit´es ⟨undefined⟩ [News], page ⟨undefined⟩, ⟨undefined⟩ [News], page ⟨undefined⟩, ⟨undefined⟩ [News], page ⟨undefined⟩, [Actualit´es], page 103, i Table des mati`eres
    [Show full text]