diff options
Diffstat (limited to 'Build/tests/dvi-latex5-tugboat/tublatex.tex')
-rw-r--r-- | Build/tests/dvi-latex5-tugboat/tublatex.tex | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Build/tests/dvi-latex5-tugboat/tublatex.tex b/Build/tests/dvi-latex5-tugboat/tublatex.tex new file mode 100644 index 00000000000..277084467bf --- /dev/null +++ b/Build/tests/dvi-latex5-tugboat/tublatex.tex @@ -0,0 +1,44 @@ +% $Id$ +% Originally written 2004 by Karl Berry. Public domain. +% Minimal TUGboat article in LaTeX, essentially the sample on the web page. +% Make sure that some of the commonly used packages can coexist. + +% [final] is to avoid date/time in output. +\documentclass[final]{ltugboat} +\usepackage{ifpdf} + +\ifpdf + \usepackage[pdftex]{graphicx} + \usepackage[pdftex,breaklinks,colorlinks,linkcolor=black,citecolor=black, + pagecolor=black,urlcolor=black]{hyperref} % for live url's. +\else + \usepackage[dvips]{graphicx} + \usepackage{url} +\fi + +\begin{document} + +\title{Example \TUB\ Regular Article} + +% repeat info for each author. +\author{First Last} +\address{Street Address \\ Town, Postal \\ Country} +\netaddress{user@example.org} +\personalURL{http://example.org/~user/} + +\maketitle + +% The abstract comes after \maketitle in ltugboat. +\begin{abstract} +This is an example article for a regular \TUB{} issue. +\end{abstract} + +\section{Introduction} + +This is an example article for \TUB, from +\url{http://tug.org/TUGboat/location.html}. + + +\makesignature + +\end{document} |