Advanced Formatting in LATEX

Total Page:16

File Type:pdf, Size:1020Kb

Load more

Advanced Formatting in LATEX Gianluca Bianchin [email protected] Graduate Quantitative Methods Center University of California, Riverside LFSC1425 - March 15, 2018 G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 1 / 31 What is LATEX LaTeX is a document preparation system. When writing, the writer uses plain text as opposed to the formatted text found in WYSIWYG ("what you see is what you get") word processors like Microsoft Worda. ahttps://en.wikipedia.org/wiki/LaTeX G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 2 / 31 About this workshop Why you are here: Your advisor gets mad when he/she sees MS Word documents!! Papers written by your peers look a lot fancier than yours!!! This workshop: Provides useful references to start using LATEX Discusses the usage of templates, and how to start using them LATEX is a lot of "guess-and-check" The most effective way is to learn by doing G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 3 / 31 About this workshop Why you are here: Your advisor gets mad when he/she sees MS Word documents!! Papers written by your peers look a lot fancier than yours!!! This workshop: Provides useful references to start using LATEX Discusses the usage of templates, and how to start using them LATEX is a lot of "guess-and-check" The most effective way is to learn by doing G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 3 / 31 Advanced Formatting in LATEX: Outline 1 Using Templates 2 Document Body 3 Citations Using BibTeX G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 4 / 31 Using Templates G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 5 / 31 Articles template: IEEE Most scientific paper venues provide templates for manuscripts: For instance: IEEE templates link G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 6 / 31 UCR thesis template Another template you may be looking for: UCR thesis template link G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 7 / 31 Components of a template or LATEX documents Source code file: .tex file (source code) ) the only document you should edit Formatting files: .cls file (document class file) .clo file (class option file) .sty file (style file) .bst file (BibTeX style file) .bib file (BibTeX file) G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 8 / 31 Document Body G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 9 / 31 Sectioning The main matter of a typical shorter document is divided into sections LATEXis instructed to start a section with the nsectionftitleg command A section may be subdivided into subsections, which may themselves be divided into subsubsections, paragraphs, and subparagraphs 1 nsectionfg 2 nsubsectionfg 3 nsubsubsectionfg 4 nparagraphfg 5 nsubparagraphfg G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 10 / 31 Sectioning The main matter of a typical shorter document is divided into sections LATEXis instructed to start a section with the nsectionftitleg command A section may be subdivided into subsections, which may themselves be divided into subsubsections, paragraphs, and subparagraphs 1 nsectionfg 2 nsubsectionfg 3 nsubsubsectionfg 4 nparagraphfg 5 nsubparagraphfg G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 10 / 31 Sectioning Any nsection command may be followed by a nlabel command, so that you can refer to the section number generated by LATEX 1 nsectionfIntroductiong 2 nlabelfSec:introg 3 The command nreffS:introg refers to the number of the section and the command npagereffS:introg refers to the number of the typeset page where the section title appears. G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 11 / 31 Backslash operator in LATEX The Backslah operator is used for Commands nsectionfg, ncitefg, nreffg, nlabelfg, nbeginfg, nendfg Formatting (discuss double backslash) ntetxitfg, ntextbffg, nn Special characters and math nsigma, nPhi, nfracfgfg,nsum fgˆfg Show reserved characters n#, n$, nˆ, n%, n&, nf, ng G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 12 / 31 Numbered lists A numbered list is created with the enumerate environment: 1 This space has the following properties: 2 nbeginfenumerateg 3 nitem Grade 2 Cantor; nlabelfCantorg 4 nitem Half-smooth Hausdorff; nlabelfHausdorffg 5 nitem Metrizably smooth. nlabelfsmoothg 6 nendfenumerateg 7 Therefore, we can apply the Main Theorem. G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 13 / 31 Numbered lists A numbered list is created with the enumerate environment: 1 This space has the following properties: 2 nbeginfenumerateg 3 nitem Grade 2 Cantor; nlabelfCantorg 4 nitem Half-smooth Hausdorff; nlabelfHausdorffg 5 nitem Metrizably smooth. nlabelfsmoothg 6 nendfenumerateg 7 Therefore, we can apply the Main Theorem. G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 13 / 31 Bulleted lists A bulleted list is created with the itemize environment: 1 We set out to accomplish a variety of goals: 2 nbeginfitemizeg 3 nitem To introduce the concept of smooth functions. 4 nitem To show their usefulness in differentiation. 5 nitem To point out the efficacy of using smooth functions in Calculus. 6 nendfitemizeg G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 14 / 31 Bulleted lists A bulleted list is created with the itemize environment: 1 We set out to accomplish a variety of goals: 2 nbeginfitemizeg 3 nitem To introduce the concept of smooth functions. 4 nitem To show their usefulness in differentiation. 5 nitem To point out the efficacy of using smooth functions in Calculus. 6 nendfitemizeg G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 14 / 31 Floating: tables and figures Figures and tables are treated in a special way in LATEXsince they cannot be broken across pages LATEXmoves (floats) a table or an illustration to the top or bottom of the current or the next page if possible Further away otherwise Placing tables and figures is often a tedious guess-and-check process, that requires extensive help from Google G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 15 / 31 Floating: tables and figures Figures and tables are treated in a special way in LATEXsince they cannot be broken across pages LATEXmoves (floats) a table or an illustration to the top or bottom of the current or the next page if possible Further away otherwise Placing tables and figures is often a tedious guess-and-check process, that requires extensive help from Google G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 15 / 31 Tables A table environment is set up as follows: 1 nbeginftableg 2 Place the table here 3 ncaptionftitle g 4 nlabelfTa:xxx g 5 nendftableg where nreffTa:xxx g references the table in the text Most templates have strict rules on tables formatting (see conference.tex) G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 16 / 31 Figures A figure environment is set up as follows: 1 ( nusepackagefgraphicxg ) 2 3 nbeginffigureg 4 Place the graphics here 5 ncaptionftitle g 6 nlabelfFi:xxx g 7 nendffigureg where nreffFi:xxx g references the figure in the text Most templates have strict rules on figures formatting (see conference.tex) G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 17 / 31 In-Line vs Displayed formulas P1 k This is an in-line formula k=0 r , while the following is a displayed formula: 1 X rk (1) k=0 Large symbols appear in a "compact" version in in-line formulas. 1 This is an in-line formula $nsum fk=0gˆfninftyg rˆk$, 2 while the following is a displayed formula G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 18 / 31 In-Line vs Displayed formulas P1 k This is an in-line formula k=0 r , while the following is a displayed formula: 1 X rk (1) k=0 Large symbols appear in a "compact" version in in-line formulas. 1 This is an in-line formula $nsum fk=0gˆfninftyg rˆk$, 2 while the following is a displayed formula G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 18 / 31 Displayed formulas The equation environment creates a displayed formula and automatically generates an equation number 1 nbeginfequationg 2 nlabelfE:firstIntegralg 3 nint f0gˆfnpig nsinx n, dx = 2 4 nendfequationg The equation number, which is automatically generated, depends on how many numbered displayed formulas occur before the given equation G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 19 / 31 Displayed formulas The equation environment creates a displayed formula and automatically generates an equation number 1 nbeginfequationg 2 nlabelfE:firstIntegralg 3 nint f0gˆfnpig nsinx n, dx = 2 4 nendfequationg The equation number, which is automatically generated, depends on how many numbered displayed formulas occur before the given equation G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 19 / 31 Displayed formulas: referencing To reference a formula without having to remember its number (which also can change when you edit your document) give the equation a symbolic label by using the nlabel command and refer to the equation in your document by using 1 see~(nreffE:firstIntegralg) on page~npagereffE:firstIntegralg. G. Bianchin (UCR GradQuant) Advanced Formatting in LATEX March 15, 2018 20 / 31 Aligned formulas Alignment is very important for multi-line formulas, especially when working with double column documents. LATEX has many ways to typeset multiline formulas. One of these is the align environment. r2 = s2 + t2; 2u + 1 = v + wα; x + z x = p s + 2u 1 nbeginfalign*g % Non-starred version will add multiple numbers 2 rˆf2g = nsqrtfsg,nn 3 2u + 1 = v + wˆfnalphag,nn 4 x = nfracfx+zgfnsqrtfs+2uggnn 5 nendfalign*g G.
Recommended publications
  • Rich Text Editor Control in Asp Net

    Rich Text Editor Control in Asp Net

    Rich Text Editor Control In Asp Net Ginger te-heed his Manaus orchestrating tolerantly, but high-tension Peirce never recirculated so amazingly. Empathetic lemuroidOlin inarches Iggie bellicosely communizing while some Wait sipper always so rule open-mindedly! his exodes aggrandizing obliquely, he master so manfully. Dietetical and Find and rich text control is dependent on mobile applications which will be renamed to the asp. Net rich text editors and when working on mobile development and size can controls in. This tutorial help. Numerous optimization methods have been applied. Net ajax saving for controlling the editors, it only the access database in. Moving forward, we will see how this editor can be used in ASP. ASPNET WYSIWYG rich HTML editor for WebForms MVC and all versions of working Framework. Many formats, including HTML. Output jpeg and png picture in original format reducing file sizes substantially. Providing a Richer Means for Entering Text Data. Rich Text Editor for aspnet is by yet the fastest cleanest most powerful online wysiwyg content editor It's also project for PHP and ASP It enables aspnet web developers to clean any textboxtextarea with an intuitive word-like wysiwyg editor. Any form elements appear in kendo ui features are used to select. Use the sublime text editor control hero Power Apps Power Apps. For controlling the control into another way to your desired width. Rich Text Editor is from award-winning UI control that replaces a standard HTML. Add love to TINYMCE Editor TextBox using jQuery Uploadify Plugin in ASP. Read below for it appear showing in my aim is important for! Lite version is free.
  • Text Formatting with LATEX, Eclipse and SVN

    Text Formatting with LATEX, Eclipse and SVN

    Formatting Text LATEX DEMO LATEX beamer Text Formatting with LATEX, Eclipse and SVN Desislava Zhekova CIS, LMU [email protected] July 1, 2013 Desislava Zhekova Text Formatting with LATEX, Eclipse and SVN Formatting Text LATEX DEMO LATEX beamer Outline 1 Formatting Text Text Editor vs. Word Processor What You See Is What You Get 2 LATEX What is LATEX? Microsoft Word vs LATEX Eclipse & SVN 3 DEMO Document Classes Document Class Options Basics Style Files/Packages LATEX for Linguists 4 LATEX beamer Desislava Zhekova Text Formatting with LATEX, Eclipse and SVN http://en.wikipedia.org/wiki/Comparison_of_text_editors Formatting Text LATEX Text Editor vs. Word Processor DEMO What You See Is What You Get LATEX beamer Text Editor vs. Word Processor Text Editors used to handle plain text (a simple character set, such as ASCII, is used to represent numbers, letters, and a small number of symbols) the only non-printing characters they support are: newline, tab, and form feed Desislava Zhekova Text Formatting with LATEX, Eclipse and SVN Formatting Text LATEX Text Editor vs. Word Processor DEMO What You See Is What You Get LATEX beamer Text Editor vs. Word Processor Text Editors used to handle plain text (a simple character set, such as ASCII, is used to represent numbers, letters, and a small number of symbols) the only non-printing characters they support are: newline, tab, and form feed http://en.wikipedia.org/wiki/Comparison_of_text_editors Desislava Zhekova Text Formatting with LATEX, Eclipse and SVN Formatting Text LATEX Text Editor vs. Word Processor DEMO What You See Is What You Get LATEX beamer Text Editors Notepad Bundled with Microsoft Windows Desislava Zhekova Text Formatting with LATEX, Eclipse and SVN Formatting Text LATEX Text Editor vs.
  • Microsoft Office Word 2003 Rich Text Format (RTF) Specification White Paper Published: April 2004 Table of Contents

    Microsoft Office Word 2003 Rich Text Format (RTF) Specification White Paper Published: April 2004 Table of Contents

    Microsoft Office Word 2003 Rich Text Format (RTF) Specification White Paper Published: April 2004 Table of Contents Introduction......................................................................................................................................1 RTF Syntax.......................................................................................................................................2 Conventions of an RTF Reader.............................................................................................................4 Formal Syntax...................................................................................................................................5 Contents of an RTF File.......................................................................................................................6 Header.........................................................................................................................................6 Document Area............................................................................................................................29 East ASIAN Support........................................................................................................................142 Escaped Expressions...................................................................................................................142 Character Set.............................................................................................................................143 Character Mapping......................................................................................................................143
  • Revisiting XSS Sanitization

    Revisiting XSS Sanitization

    Revisiting XSS Sanitization Ashar Javed Chair for Network and Data Security Horst G¨ortzInstitute for IT-Security, Ruhr-University Bochum [email protected] Abstract. Cross-Site Scripting (XSS) | around fourteen years old vul- nerability is still on the rise and a continuous threat to the web applica- tions. Only last year, 150505 defacements (this is a least, an XSS can do) have been reported and archived in Zone-H (a cybercrime archive)1. The online WYSIWYG (What You See Is What You Get) or rich-text editors are now a days an essential component of the web applications. They allow users of web applications to edit and enter HTML rich text (i.e., formatted text, images, links and videos etc) inside the web browser window. The web applications use WYSIWYG editors as a part of comment functionality, private messaging among users of applications, blogs, notes, forums post, spellcheck as-you-type, ticketing feature, and other online services. The XSS in WYSIWYG editors is considered more dangerous and exploitable because the user-supplied rich-text con- tents (may be dangerous) are viewable by other users of web applications. In this paper, we present a security analysis of twenty five (25) pop- ular WYSIWYG editors powering thousands of web sites. The anal- ysis includes WYSIWYG editors like Enterprise TinyMCE, EditLive, Lithium, Jive, TinyMCE, PHP HTML Editor, markItUp! universal markup jQuery editor, FreeTextBox (popular ASP.NET editor), Froala Editor, elRTE, and CKEditor. At the same time, we also analyze rich-text ed- itors available on very popular sites like Twitter, Yahoo Mail, Amazon, GitHub and Magento and many more.
  • A Brief LATEX Tutorial

    A Brief LATEX Tutorial

    A brief LATEX tutorial. Henri P. Gavin Department of Civil and Environmental Engineering Duke University Durham, NC 27708{0287 [email protected] September 30, 2002 Abstract LATEX is a very powerful text processing system available to all students through the university's network of Unix work stations. Versions of LATEX which run on PC's and Mac's are available through the Internet. LATEX is becoming the \standard" text processor for publications in science, engineering, and mathematics. LATEX has many features, including: • The printed output is BEAUT IFUL! • Equations are relatively easy to enter, once you get the hang of it. • LATEX automatically numbers the sections, subsections, figures, tables, footnotes, equations, theorems, lemmas, and the references of your paper. When you add a new section or sub-section, or a new reference, every item is re-numbered au- tomatically! It can create its own table of contents and indices automatically as well. • It can easily manage very long documents, like theses and books. The down-side of LATEX is that it is somewhat cumbersome to use and can be difficult to learn. Many LATEX manuals are not written for the rank beginner, and don't make it terribly clear how to make simple formatting changes such as margins, font size, or line spacing. For many people, learning LATEX through examples is the easiest way to go. The purpose of this document is to illustrate what LATEX can do for you, and (without getting into too much detail) show you how to do it, so that you can learn to use LATEX quickly and easily.
  • LATEX Quick Start a first Guide to Document Preparation

    LATEX Quick Start a first Guide to Document Preparation

    Thomas E. Price Lance Carnes LATEX Quick Start A first guide to document preparation Published by Personal TEX, Inc. First Edition, September 2009. Personal TEX Inc. E-mail/Internet: [email protected] • www.pctex.com Notices: Information in this manual is subject to change without notice and does not represent a commitment on the part of Personal TEX Inc. (PTI). PTI makes no represen- tation, express or implied, with respect to this documentation or the software it describes, including without limitations, any implied warranties of merchantability or fitness for a particular purpose, all of which are expressly disclaimed. PTI shall in no way be liable for any indirect, incidental, or consequential damages. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, for any purpose, without the express written permission of Personal TEX Inc. Copyright c 2009 by Personal TEX Inc. All rights reserved. Printed in the United States of America. PCTEX, PCTEX for Windows, and Personal TEX, Inc. are registered trademarks of Personal TEX, Inc. PostScript is a registered trademark of Adobe Systems, Inc. TEX is a trademark of the American Mathematical Society (AMS). MathTıme is a trademark of Publish or Perish, Inc. Lucida R is a trademark of Bigelow & Holmes, Inc. All other brand, product, and trade names are the trademarks of their respective owners. Library of Congress Cataloging-in-Publication Data Price, Thomas E. LaTeX Quick Start : A first guide to document preparation / Thomas E. Price and Lance Carnes. p. cm. Includes bibliographical references.
  • Enhancing RTF Output with RTF Control Words and In-Line Formatting

    Enhancing RTF Output with RTF Control Words and In-Line Formatting

    Paper PO04 Enhancing RTF Output with RTF Control Words and In-Line Formatting Lori S. Parsons, Ovation Research Group, Seattle, Washington ABSTRACT The SAS® Output Delivery System (ODS) allows output to be printed directly to a Rich Text Format (RTF) file. RTF can be read by word processors such as Microsoft Word and WordPerfect. In SAS 8.1, options were added to enhance SAS TITLES and FOOTNOTES. Also added was the ability to use RTF control words within cells. In SAS 8.2, ODS supported in-line formatting and added the TEXT= option. All of these formatting methods give us the ability to insert formatting text into a cell or paragraph and can be used to enhance output. In this paper, an RTF file will be created with enhanced SAS TITLES, footnote markers in variable labels and values, custom footnotes, an inserted image, and an inserted hyperlink. The code was run with SAS Version 9.1.2 on Windows XP Professional. The RTF files are viewed with Microsoft® Office Word 2003. INTRODUCTION Rich Text Format (RTF) is a file type used to transfer formatted text and graphics between applications, even those that run on different platforms such as Windows, IBM and Macintosh. With RTF, documents created under different operating systems and with different software applications can be transferred between those operating systems and applications. It has become increasingly popular to produce output in SAS and then distribute it to others who will view the file in a word processor. Being able to customize SAS output through RTF code is an invaluable tool.
  • DP LATEX Formatting Guidelines, Particularly Fig

    DP LATEX Formatting Guidelines, Particularly Fig

    Distributed Proofreaders LATEX Formatting Manual August 2012 Contents 1 Overview1 1.1 The DP Process . .1 1.2 For New LATEXers . .3 2 Guidelines7 2.1 Formatting Text . .7 2.2 Formatting Mathematics . 13 2.3 Aligned Material . 19 1 Overview This manual contains guidelines for volunteers at Distributed Proofreaders who format projects using the typesetting languageLATEX. It's geared toward a variety of back- grounds: those who have proofed and formatted thousands of pages at DP but have always avoided LATEX, long-time LATEX users who are fairly new to DP and its ways, and (it is hoped) everyone in between. In the interest of brevity, this manual discusses only well-standardized, project- independent formatting, and cautions mostly against common errors. Frequently, where formatting decisions are concerned, you're directed to external resources (especially, writing to dp-feedback or posting in the forums). Section1 is a very brief introduction to DP, L ATEX, and their distinctive inter- relationship. Section2 constitutes a user's guide and reference manual, meant both to be read for tutorial information and to be thumbed through as you format your first pages. Both parts are written in mostly-independent sections, culled from existing DP wiki pages, forum posts, and private discussions. Do feel free to skip around as you read.1 Important items (such as reminders to ask for human help) are repeated as necessary so they won't be overlooked by non-serial readers, and potential pitfalls are clearly marked. 1.1 The DP Process A book's contents go through three major stages at Distributed Proofreaders: proof- reading (\proofing”), formatting (\F1 and F2"), and post-processing (\PP").
  • WYSIWYG Formatted Text & Images Editor for VCL & Firemonkey

    WYSIWYG Formatted Text & Images Editor for VCL & Firemonkey

    TMS WYSIWYG text editor controls for VCL & FireMonkey WYSIWYG formatted text & images editor for VCL & FireMonkey Background The standard rich text editor that ships with Delphi for over 15 years now is based on the Windows riched20.dll library control. While Microsoft introduced meanwhile newer versions 3.0 and 4.1 of this rich editor control, the VCL version continued to be based on a wrapper of the v2.0. This means that the feature set of this rich editor control is quite limited. On the other side, in the Delphi cross platform framework FireMonkey, there is no edit control for rich text at all. The only editor control that is available there in the framework is TMemo. As many of our customers requested both more flexibility from a Windows VCL based rich editor and also a rich editor for FireMonkey, the TMS team decided to take on these projects. From the start, we want to create a control for FireMonkey that would fit neatly the FMX paradigm of one source code to rule all platforms (Windows, iOS, Android, Mac OSX at this time) but realizing this would be a huge effort, we wanted that this effort would also be usable for VCL developers targetting Windows only. Architecture After a lot of research was done on performance (as we knew from our experience with other FMX controls this would be difficult) we decided on what we internally disrespectfully call a sandwich architecture. This sandwich architecture should enable us to isolate a core formatted text handling layer from the framework, i.e.
  • Html Rich Text Editor

    Html Rich Text Editor

    Html Rich Text Editor Renaldo enflaming his abetment begriming tonetically or bitterly after Iggy ingather and restyling spiritoso, platinic and Numidian. Rounding Roberto still stonker: obverse and terete Ave enforcing quite beamily but cauterizes her caruncle high. Wolf remains combatable after Granville yellows maritally or mends any dolefulness. The html elements to conceptualise something else can add to another source html rich and happy? This stuff with our text. Nvu when i commented the html code will toggle again. Will do it easy. In html generated by design and security stack web fonts, or edit it will close as expected editor based in html rich text editor allows users to control. Flexible image in html rich editor? Delightful and script files to vim is not be sure to get a good for wysiwyg text editor will be nested lists. The rich text editor font size can i like asking for editing for rich text editor automatically inserts the witcher the handler as java. Javascript libraries with html elements and html rich text editor that while we are you for modifying the optional subject to. Can see html rich text editor development plans you! There are planning to prevent your images can then click and is a table lists all. The rich text fields on different elements, but nowhere when you learn basic skills? Read italicized text editor plugin needs to rich text editor is not work on the skin apply styles, which is set a variety of the tool. Wysiwyg ux for the next list with this should learn new website that proper html tags, but that you need to implement the information security stack.
  • Integrating the World-Wide Web and Multi-User Domains to Support Advanced Network-Based Learning Environments

    Integrating the World-Wide Web and Multi-User Domains to Support Advanced Network-Based Learning Environments

    Integrating The World-Wide Web and Multi-User Domains to Support Advanced Network-Based Learning Environments Lee A. Newberg, Richard O. Rouse III, and John A. Kruper Biological Sciences Division O±ce of Academic Computing The University of Chicago Chicago, Illinois, USA E-Mail: [email protected] October 21, 1994 The World-Wide Web consists of over ¯ve million documents distributed throughout the world and organized by a web of hypertext links connecting related topics. Object- Oriented Multi-User Domains are text- and network-based applications that allow in- dividuals to converse in real time with each other and to interact with user-de¯ned simulation objects. As part of our e®orts to develop advanced network-based learning tools, we describe how we have integrated these two highly powerful and popular Inter- net applications. Our integration merges the strengths of the World-Wide Web (font styles, images, hypermedia, and hypertext), with the strengths of Multi-User Domains (interactivity and easy construction of software controlled objects). 1 Introduction 1.1 The World-Wide Web The World-Wide Web consists of over ¯ve million documents and a vast collection of database information distributed throughout the world and organized by a web of hypertext links connecting related topics. Reflecting the popularity and growth of this distributed information system, Web-based information is doubling every six months to a year. Much of the power of the Web is derived from its seamlessness and ease of use. By clicking the mouse a user can fetch a page of information from any computer worldwide without knowing anything about how a given page is located, generated, or retrieved.
  • Plain Text by Brian Patterson

    Plain Text by Brian Patterson

    from NOVEMBER 2014 Volume 26, Issue 4 A publication of the American Society of Trial Consultants FAVORITE THING Plain Text by Brian Patterson LAIN TEXT IS THE COCKROACH of file types: it will out- You can write in plain text without worrying about what it live us all. If you’ve ever tried opening a document from will eventually look like. It is sort of like writing in long hand, Pan old or obsolete word processor or page layout pro- except with a keyboard and screen instead of a pen and paper. gram, you know how difficult, if not impossible, it is to do. If The content is the center of attention, not which font to use, you can find software that will actually open it, you might be how big the font should be, how far apart the lines should be, lucky enough to see something you recognize hidden among or the millions of other choices a program like Microsoft Word the computer gibberish that surrounds it. Digging through the puts in front of us. rubble to salvage what you can may eventually get you some- thing useful, but it’s no one’s idea of a good time. Many things you write never have to go beyond plain, un- formatted text. Notes (maybe organized with a program such On the other hand, if you have any old .txt files you want to as Simplenote or Drafts) or todo lists may never leave their browse, they’ll open easily and look exactly the same as they did humble beginnings.