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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
% FAQ-printout.tex,v 1.5 2003/05/15 12:32:01 hansfn Exp
%
% TeXPower bundle - dynamic online presentations with LaTeX
% Copyright (C) 1999-2002 Stephan Lehmke
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 2
% of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
%-----------------------------------------------------------------------------------------------------------------
% File: FAQ-printout.tex
%
% Frequently Asked Questions list for the TeXPower bundle (printout version).
%
%-----------------------------------------------------------------------------------------------------------------
% Autor: Stephan Lehmke <Stephan.Lehmke@cs.uni-dortmund.de>
%
% v0.0.1 May 31, 2000: First version for the pre-alpha release of TeXPower.
%
\documentclass[12pt]{scrartcl}
%-----------------------------------------------------------------------------------------------------------------
% We need some more packages...
%
\usepackage{url}
\usepackage[latin1]{inputenc}
% The following package makes code look a little nicer, but it may not be present on all systems.
\IfFileExists{cmtt.sty}{\usepackage[override]{cmtt}}{}
% Loading the soul package enables the \highlighttext command.
\usepackage{soul}
% One more Text emphasis command...
\let\name=\textsc
\usepackage{fancyvrb}
\usepackage{array}
\usepackage{longtable}
%-----------------------------------------------------------------------------------------------------------------
% Load hyperref.
%
\usepackage[bookmarksopen,colorlinks]{hyperref}
%-----------------------------------------------------------------------------------------------------------------
% Finally, the texpower package is loaded.
%
\usepackage{texpower}
%-----------------------------------------------------------------------------------------------------------------
% The configuration file allows user-specific settings.
\input{__TP.cfg}
%-----------------------------------------------------------------------------------------------------------------
% The code in the file __TPFAQ is meant for the document class seminar. Thus, it contains some seminar-specific commands
% which are replaced by dummies here.
\let\newslide=\relax
%-----------------------------------------------------------------------------------------------------------------
% The following command produces the title for this document.
\newcommand{\makeslidetitle}[1]
{%
\hypersetup{pdftitle={#1}}
\title{The \TeX Power bundle\\{\normalfont #1}}
\author{Stephan Lehmke\\\url{mailto:Stephan.Lehmke@cs.uni-dortmund.de}}
\maketitle
}
\tolerance 1414
\hbadness 1414
\emergencystretch 1.5em
\hfuzz 0.3pt
\vfuzz \hfuzz
\relax
%-----------------------------------------------------------------------------------------------------------------
% Finally, everything is set up. Here we go...
%
\begin{document}
\input{__TPFAQ}
\end{document}
% Local Variables:
% fill-column: 120
% TeX-master: t
% End:
|