|
Revision 2597, 0.9 kB
(checked in by hans, 11 months ago)
|
Add warning message to manual front page.
Edit LISP->Lisp in the manual (*sigh*)
|
| Line | |
|---|
| 1 |
\documentclass[a4paper,11pt,titlepage]{book} |
|---|
| 2 |
\usepackage{amssymb} |
|---|
| 3 |
\usepackage{fancyvrb,color,palatino} |
|---|
| 4 |
\definecolor{gray}{gray}{0.6} |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
\newif\ifpdf |
|---|
| 8 |
\ifx\pdfoutput\undefined |
|---|
| 9 |
\pdffalse % es wird kein PDFLaTeX benutzt |
|---|
| 10 |
\else |
|---|
| 11 |
\pdfoutput=1 % es wird PDFLaTeX benutzt |
|---|
| 12 |
\pdftrue |
|---|
| 13 |
\fi |
|---|
| 14 |
|
|---|
| 15 |
\ifpdf |
|---|
| 16 |
\usepackage[pdftex]{graphicx} |
|---|
| 17 |
\else |
|---|
| 18 |
\usepackage{graphicx} |
|---|
| 19 |
\fi |
|---|
| 20 |
|
|---|
| 21 |
\upshape |
|---|
| 22 |
\frenchspacing |
|---|
| 23 |
\title{BKNR Manual} |
|---|
| 24 |
\author{BKNR} |
|---|
| 25 |
|
|---|
| 26 |
\begin{document} |
|---|
| 27 |
|
|---|
| 28 |
\begin{titlepage} |
|---|
| 29 |
\begin{center} |
|---|
| 30 |
|
|---|
| 31 |
\vspace*{6cm} |
|---|
| 32 |
\begin{figure}[htbp] |
|---|
| 33 |
\centering |
|---|
| 34 |
\includegraphics[scale=0.6]{bknrlogo} |
|---|
| 35 |
\end{figure} |
|---|
| 36 |
\vspace{2cm} |
|---|
| 37 |
\Large |
|---|
| 38 |
CODENAME: VOSTOK |
|---|
| 39 |
(THIS MANUAL IS UNDER EDIT, PLEASE DO NOT PRINT OR DISTRIBUTE) |
|---|
| 40 |
|
|---|
| 41 |
\end{center} |
|---|
| 42 |
\end{titlepage} |
|---|
| 43 |
|
|---|
| 44 |
\tableofcontents |
|---|
| 45 |
|
|---|
| 46 |
\include{introduction} |
|---|
| 47 |
\include{guidedtour} |
|---|
| 48 |
\include{indices} |
|---|
| 49 |
\include{datastore} |
|---|
| 50 |
\include{impex} |
|---|
| 51 |
%\include{web} |
|---|
| 52 |
%\include{templates} |
|---|
| 53 |
%\include{example} |
|---|
| 54 |
|
|---|
| 55 |
\end{document} |
|---|