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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
%% This file can be redistributed and/or modified under the terms
%% of the LaTeX Project Public License Distributed from CTAN archives
%% in directory macros/latex/base/lppl.txt.
%%
\documentclass{dtk}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{lmodern}%
\usepackage{url}
\def\UrlFont{\small\ttfamily}
\makeatletter
\def\verbatim@font{\small\normalfont\ttfamily}
\makeatother
\usepackage{amscd}
\usepackage{amsmath}
\usepackage{calc}
\usepackage{graphicx}
\usepackage{color}
\usepackage{empheq}
\usepackage{framed}
\definecolor{shadecolor}{rgb}{1,0.9,0.7}
%
\usepackage{esint}
\def\Q#1#2{\frac{\partial #1}{\partial #2}}
%
\definecolor{hellmagenta}{rgb}{1,0.75,0.9}
\definecolor{hellcyan}{rgb}{0.75,1,0.9}
\definecolor{hellgelb}{rgb}{1,1,0.8}
\definecolor{colKeys}{rgb}{0,0,1}
\definecolor{colIdentifier}{rgb}{0,0,0}
\definecolor{colComments}{rgb}{1,0,0}
\definecolor{colString}{rgb}{0,0.5,0}
\definecolor{darkyellow}{rgb}{1,0.9,0}
%
\usepackage{listings}
\lstset{%
language=[AlLaTeX]TEX,%
float=hbp,%
basicstyle=\ttfamily\small, %
identifierstyle=\color{colIdentifier}, %
keywordstyle=\color{colKeys}, %
stringstyle=\color{colString}, %
commentstyle=\color{colComments}, %
columns=flexible, %
tabsize=3, %
frame=single, %
extendedchars=true, %
showspaces=false, %
showstringspaces=false, %
numbers=left, %
numberstyle=\tiny, %
breaklines=true, %
backgroundcolor=\color{hellgelb}, %
breakautoindent=true, %
captionpos=b,%
xleftmargin=18pt,%
xrightmargin=\fboxsep%
}
%\usepackage[colorlinks]{hyperref}
%
\newcommand*{\CMD}[1]{\small\texttt{\textbackslash #1}}
\usepackage{dtk-pdf}
\renewcommand\Volume{2/2004}
\renewcommand\Pages{81-87}
%
\begin{document}
\input{mathCol.tex}
\end{document}
|