~ubuntu-branches/ubuntu/gutsy/bacula-doc/gutsy

« back to all changes in this revision

Viewing changes to manual-de/bacula.sty

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2006-08-15 09:44:08 UTC
  • Revision ID: james.westby@ubuntu.com-20060815094408-1kvvfls2hs3d9uw8
Tags: upstream-1.38.11.1
ImportĀ upstreamĀ versionĀ 1.38.11.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%% bacula.sty
 
2
%% Provides macros and other stuff for the bacula manual
 
3
%% 
 
4
%% Original Creation -- K. Cunningham 2005-01-09
 
5
%% 
 
6
%% 
 
7
%% 
 
8
%% New Commands Currently implemented:
 
9
%% 
 
10
%% \elink{target}{text}
 
11
%%    Inserts the text indicated (highlighted) and provides
 
12
%%    an external hyperlink to the target.
 
13
%% 
 
14
%% 
 
15
%% \ilink{target}{text}
 
16
%%    Inserts the text indicated (highlighted) and provides
 
17
%%    an internal hyperlink to the target. Target must be a
 
18
%%    \label somewhere in the same document.
 
19
%% 
 
20
%% \lt
 
21
%%    Inserts a less-than character (<).
 
22
%%
 
23
%% \gt
 
24
%%    Inserts a greater-than character (>).
 
25
%% 
 
26
%% 
 
27
\ProvidesPackage{bacula}[2005/01/09]
 
28
%%
 
29
%%
 
30
\newcommand*{\elink}[2]{%
 
31
  \htmladdnormallink{#1}{#2}%
 
32
}
 
33
%%
 
34
\newcommand*{\ilink}[2]{%
 
35
  \htmlref{#1}{#2}%
 
36
}
 
37
%%
 
38
\newcommand{\lt}{$<$}
 
39
\newcommand{\gt}{$>$}
 
40
 
 
41
%% copied from /usr/share/texmf/tex/latex/base/book.cls, and
 
42
%%  modified to suit.  KEC 4-28-05
 
43
%% KEC: Removed the two-column arrangement, and added \newpage
 
44
\renewenvironment{theindex}
 
45
               {\if@twocolumn
 
46
                  \@restonecolfalse
 
47
                \else
 
48
                  \@restonecoltrue
 
49
                \fi
 
50
%% KEC:  Switch to one column.
 
51
%%              \columnseprule \z@
 
52
%%              \columnsep 35\p@
 
53
%%              \twocolumn[\@makeschapterhead{\indexname}]%
 
54
                \@mkboth{\MakeUppercase\indexname}%
 
55
                        {\MakeUppercase\indexname}%
 
56
                                \clearpage
 
57
                                \subsection*{\indexname}
 
58
                                \addcontentsline{toc}{subsection}{\indexname}
 
59
                \thispagestyle{plain}\parindent\z@
 
60
                \parskip\z@ \@plus .3\p@\relax
 
61
                \let\item\@idxitem}
 
62
                                {\if@restonecol\onecolumn\else\clearpage\fi}   %% Is this needed???
 
63
 
 
64
%% 
 
65
\endinput
 
66
%%