LaTeX

LaTeX is a standard of mathematical and scientific publishing. The basic TeX engine was developed by renowned computer scientisit Donald Knuth at Stanford and made freely available to the community of computer users. It runs on essentially all computer platforms. Most current users use a set of "macros" called LaTeX built on the TeX engine to provide a higher-level interface for the user.

Introduction

In a word processor, typing your first document is a piece of cake. You launch the program and start typing. Sadly, most LaTeX implementations make that first document much more of a challenge. However, the stability of LaTeX, its ability to handle mathematics and text, in short documents and long ones, and the superior quality of the typeset text make learning it worth your effort.

Some resources for using LaTeX

A Trivial Example

Taking as the prototype of scientific equations Einstein's venerable classic E = m c^2, let us create a LaTeX document that describes this important equation. Click on the link to display the document, which you can save on your local disk for processing with LaTeX.

A More Involved Example

Here's a very trivial document, to get you up and running with PNS.sty. For a more detailed example, try the source code for exercise 1.

\documentclass[11pt]{article}
\usepackage[math,headers,noapple]{PNS} % other options: problems, nographics
\renewcommand{\theTitle}{My Jolly Title}
\begin{document}
Stuff as normal. See the actual file for what is loaded and what definitions are made. Eventually, I may document.
\end{document}