blob: 277084467bf309d3e303d80debe3dae8f5b74e2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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}
|