TweetFollow Us on Twitter

Oct 98 Online

Volume Number: 14 (1998)
Issue Number: 10
Column Tag: MacTech Online

Getting It In Print

by Jeff Clites, online@mactech.com

Not too many years ago a document was, almost by definition, something which lived on paper. Although the print-based heritage remains, today we think of digital documents just as often. Interestingly, at the same time the distinction between a document and the information it contains has blurred, and where it was once clear (though possibly arbitrary) where one document ends and another begins, it is now more difficult to define. This month we're going to focus on the concept of the document, from several different perspectives.

PostScript

PostScript and the Mac OS have had an interesting relationship, and one which is still continuing to evolve. Apple's LaserWriters were among the first PostScript printers to hit the market, and they helped spark the desktop publishing revolution. The first generation of Apple's new operating system, OS X Server (formerly Rhapsody), will inherit NeXT's use of Display PostScript as its imaging model, later to be replaced by Apple's own resolution-independent graphics subsystem, Extended QuickDraw. Even so, it is likely that PostScript will remain the lingua franca of high-end printing for a while to come, and as a developer it can be helpful to have at least a passing acquaintance with the language and concepts - and under the current Mac OS it is almost essential if you want to print rotated text, for instance.

In actuality, PostScript is a programming language, and a PostScript document is really a program - it just happens to be a program which focusses on producing graphics on a page (a page-description language). The official home of PostScript is of course Adobe's site, and programmers wishing to learn the language can find a wealth of technotes there, along with a bibliography and links to other resources on the web. Beginners can start at A First Guide to PostScript, which includes an operator reference, and you can download an archive containing the entire site for easy off-line viewing. The second place to stop is the RightBrain Software site, where the author of Thinking in PostScript, now out of print, has generously provided a PDF version of the book for free download. And no developer should be without Ghostscript, a free interpreter which allows PostScript files to be viewed, printed to non-PostScript printers, or converted to PDF format.

Adobe's Technical Notes for Developers
http://www.adobe.com/supportservice/devrelations/technotes.html
A First Guide to PostScript
http://www.cs.indiana.edu/docproject/programming/postscript/postscript.html
RightBrain Software
http://www.rightbrain.com/pages/books.html
Ghostscript, Ghostview and Gsview
http://www.cs.wisc.edu/~ghost/index.html

PDF

Adobe's Portable Document Format (PDF) has become the standard for digital documentation which is platform-independent and which prints beautifully in addition to being easily viewable on-screen. Like PostScript, PDF is a final format, as opposed to a revisable format, meaning that it is intended as a format for a finished document rather than for a file which will be edited further. (Although it is possible to modify both sorts of documents after they are generated, and it is easier with PDF documents than with PostScript files.) While PostScript documents are really programs, PDFs are more naturally thought of as object databases. Apple has indicated that PDF will play an important role as a graphics format in OS X, so it may become important for developers to have at least a passing acquaintance with its inner workings.

For those interested in looking under the hood of PDF now, there are a number of independent web sites devoted to the topic, and Adobe's site has the freely available PDF specification and links to other sources of information. The two best sites to get you started are Acrobuddies and the PDF Research Companion. They have a number of documents which explain the structure of PDF files, as well has how to use them or produce them from within an application.

Adobe PDF
http://www.adobe.com/prodindex/acrobat/adobepdf.html
Acrobuddies
http://www.roundtable.com.au/acrobuddies/acrobuds.htm
PDF Research Companion
http://www.performancegraphics.com/

TeX

TeX is a typesetting system invented by Donald Knuth. In his words, it is "intended for the creation of beautiful books - and especially for books that contain a lot of mathematics." It is widely used today to produce technical publications, most often using the LaTeX macro package. In brief, an author prepares a plain text document in the TeX language, and later compiles it into final form (for instance, as PostScript).

Much of the hassle of preparing large documents is lessened by TeX-not only can you quickly set complicated equation, but also it is very easy to build an index or reformat for different paper sizes or for output in different fonts, for example. Its chief strength may be that it gives you fine control over the appearance of you document when you want it, and handles things automatically when you don't. There are also numerous add-on packages to extend the language, for instance allowing you to create complex graphics or display chemical structures.

TeX is somewhat complex to learn, but many swear by it. It does show its Unix heritage, and the chief hurdle for a Macintosh user may be getting used to a TeX system which usually consists of several different applications and associated files rather than a single application. The place to start is unquestionably the Mac TeX/LaTeX Software Page, with links and descriptions of most of the TeX resources available to Mac users. Among other things, this site has current information on the two most popular shareware packages, CMacTeX and OzTeX, and recommendations on references for beginners.

Macintosh TeX/LaTeX Software Page
http://www.esm.psu.edu/mac-tex/
TeX Frequently Asked Questions
http://www.cogs.susx.ac.uk/cgi-bin/texfaq2html?introduction=yes

SGML

The Standard Generalized Markup Language (SGML) is the final step of abstraction of a document, where content is completely separated from presentation. Like HTML, stretches of plain text are tagged by text within angle brackets, but the idea is to label the logical structure of the document rather than its appearance - content rather than form. How an SGML document is displayed, if it is displayed at all, is decided separately. (Note that HTML 4.0 is explicitly defined as an SGML application.)

The upshot of this rigid separation is that the same document can be retargetted to different methods of output (or different uses) without modification. So, the exact same source can be used to produce an HTML version of a document for publication on the web, a PDF version for distribution on CD, a TeX version for producing printed documentation, and a plain-text version for posting to a newsgroup. In some cases, the target may not be formatted output at all - the markup may be used to tag information for entry into a database.

ArborText has an excellent introduction to SGML and much of the terminology surrounding it, and A Gentle Introduction to SGML provides a more detailed description. XML for Managers describes XML, a subset of SGML developed for web deployment. To delve deeper, the SGML/XML web page is the comprehensive source of information available on the web. There are many books relating to SGML technology (see the last-mentioned site for a large bibliography), but Parseme.1st: SGML for Software Developers by Sean McGrath (ISBN: 0134889673) is a clear and well-illustrated introduction aimed at developers.

SGML: Getting Started
http://www.arbortext.com/wp.html
A Gentle Introduction to SGML
http://sable.ox.ac.uk/ota/teip3sg/
XML for Managers
http://www.arbortext.com/xmlwp.html
The SGML/XML Web Page
http://www.sil.org/sgml/sgml.html

SDF

Finally, I want to mention the Simple Document Format (SDF). It is simpler and less general than SGML, but its goal is to provide an author-friendly markup language for producing documents which can be output in multiple formats from the same source. (Supported output formats include HTML, PostScript, PDF, LaTeX, SGML, POD, RTF, and plain text.) It is Perl-based, and the author has indicated that MacPerl-specific instruction are forthcoming. If your goal is to find a simple way to produce documentation with a minimum of duplicated effort, this may be a good place to start.

SDF - The Author-friendly Markup Language
http://www.mincom.com/mtr/sdf/

These and oodles of other links are available from the MacTech Online web pages at www.mactech.com/online/.

 
AAPL
$561.16
Apple Inc.
-4.16
MSFT
$29.11
Microsoft Corpora
+0.04
GOOG
$590.76
Google Inc.
-12.90
MacTech Search:
Community Search:

Autumn Dynasty Review
Autumn Dynasty Review By Kevin Stout on May 25th, 2012 Our Rating: :: NEARLY FLAWLESSiPad Only App - Designed for the iPad Autumn Dynasty is an oriental-themed real-time strategy game.   | Read more »
Our Annual “Holy Cow It’s Memorial Day A...
So, it’s that time of year again! BBQs, lawn chairs, beer, and the ability to finally wear shorts with sandals without fear of frostbite. Tan those legs and check out all the huge sales that are going on across the App Store below. We’ll try and... | Read more »
FREEday 5/25/12 – “They Call Me FREE but...
Another week of freebies, this time with very little in the way of “Big Name” titles. No need to panic, it’s intentional. Anyone browsing the App Store will no doubt see the more popular games anyway. | Read more »
Shoot the Zombirds Review
Shoot the Zombirds Review By Kevin Stout on May 25th, 2012 Our Rating: :: ADDICTINGUniversal App - Designed for iPhone and iPad Shoot the Zombirds is an archery game where the player shoots arrows at avian zombies.   | Read more »
Apple Debuts Free App of the Week Promot...
Apple has made a couple of changes to their weekly app features that pop up in the Featured tab of the App Store. While “App of the Week” and “Game of the Week” appear to be just rebranded as “Editors’ Choice,” there’s a new feature: the Free Game... | Read more »
Gun Runner Review
Gun Runner Review By Jason Wadsworth on May 25th, 2012 Our Rating: :: RUN AND GUNUniversal App - Designed for iPhone and iPad The name says it all. This clever homage to classic side-scrolling shooters is easy to enjoy but hard to... | Read more »
Five For Friday: Week Of May 25
This week’s Five for Friday is pretty heavy on the apps front but that’s not to say it’s all seriousness here. We’ve got a fun selection of ways to entertain the kids, a powerful web development tool, a companion app for avid golfers and an... | Read more »

Price Scanner via MacPrices.net

Apple Maintains Leading Mobile Device Manufacturer...
Milennial Media says Apple continued to be the number one mobile device manufacturer on their platform in Q1, representing 28% of the top manufacturers impression share. Apple iPhone accounted for 15... Read more
Asustek To Launch Three New ZenBook Ultrabook Mode...
Digitimes’ Rebecca Kuo and Steve Shen report that PC-maker Asustek Computer will launch three new models to its ZenBook Prime Ultrabook lineup – the UX21A, UX31A and UX32VD – in June, featuring full... Read more
Yahoo! Introduces Axis Search Browser For Mobile D...
Yahoo! has announced the availability of Yahoo! Axis, a new Web browser tool that it claims will re-imagine how people search and browse on the web, Axis offering a faster, smarter search with... Read more
Android- and iOS-Powered Smartphones Expand Market...
Smartphones powered by Android and iOS mobile operating systems accounted for more than eight out of ten smartphones shipped in the first quarter of 2012 (1Q12), according to the International Data... Read more
Roundup of Memorial Day Weekend MacBook Pro sales,...
 Apple resellers have MacBook Pros on sale for up to $240 off MSRP this Holiday weekend. Here is a roundup of the best prices available from any reseller: (1) B&H Photo has MacBook Pros on sale... Read more
iPad wait times down to 1-3 days at The Apple Stor...
The Apple Store Online is now reporting a 1-3 business day wait on all iPad orders, as it appears that Apple is clearing out their backlog. The iPad is available in Wi-Fi or Wi-Fi + Cellular... Read more
Roundup of Memorial Day Weekend MacBook Air sales,...
 Apple resellers have MacBook Airs on sale for up to $101 off MSRP this Holiday weekend. Here is a roundup of the best prices available from any reseller: (1) B&H Photo has 11-inch and 13-inch... Read more
13″ 2.8GHz MacBook Pro on sale for $100 off MSRP
Adorama has lowered their price on the 13″ 2.8GHz MacBook Pro to $1399 including free shipping plus NY/NJ sales tax only. Their price is $100 off MSRP, and it’s the lowest price for this model from... Read more

Jobs Board

*Apple* Retail - Manager - Natick Colle...
Much more than just a place for amazing products, the Apple Retail Store serves a dazzling range of needs for its customers. Not only can users get hands-on experience Read more
XML image iPhone App at Elance.com (Uppe...
I want a similar iphone app like the following App below: /us/app/hd-tattoo-designs-catalog/id524766650?mt=8 I want a ... can tell who knows the expertise and who outsources the project to others.... Read more
iPhone Modem DSP Firmware Engineer at Ap...
Firmware Engineer to help develop our next generation of iPhone products. This position requires directly related ... to deliver high performance best in class modem for iPhone products. Strong... Read more
iPhone Developer at Third Eye Consulting...
Third Eye is looking for an iPhone Developer.The ideal candidate will have the following:3-6 years experience in iOS design and developmentknowledge of iPhone Native AppsKnowledge of Java and... Read more
iPhone Mobile Developer at Mapmyfitness...
About MapMyFitness, Inc.: We're a well-funded and fast growing start-up. We're building the future of fitness applications on both the web and mobile. MapMyFitness is consistently ranked among the... Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.