]> git.sur5r.net Git - bacula/docs/blob - docs/manuals/bacula.sty.in
Correct problems in DE manual
[bacula/docs] / docs / manuals / bacula.sty.in
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 %% \idir
27 %%    Inserts the path to the images
28 %%
29 %% 
30 %% 
31 \ProvidesPackage{bacula}[2008/10/03]
32 %%
33 %%
34 %% define images directory -- KES 15Aug08
35 \def\idir{@BUILD_DIR@/images/}  %% images directory
36
37 \def\version{@VERSION@}
38
39 \def\fullversion{@VERSION@ (@DATE@)}
40
41 %%
42 \newcommand*{\elink}[2]{%
43   \htmladdnormallink{#1}{#2}%
44 }
45 %%
46 \newcommand*{\ilink}[2]{%
47   \htmlref{#1}{#2}%
48 }
49 %%
50 \newcommand{\dq}{\verb+"+}
51 \newcommand{\vb}{$|$}
52 \newcommand{\lt}{$<$}
53 \newcommand{\gt}{$>$}
54
55 %% copied from /usr/share/texmf/tex/latex/base/book.cls, and
56 %%  modified to suit.  KEC 4-28-05
57 %% KEC: Removed the two-column arrangement, and added \newpage
58 \renewenvironment{theindex}
59                {\if@twocolumn
60                   \@restonecolfalse
61                 \else
62                   \@restonecoltrue
63                 \fi
64 %% KEC:  Switch to one column.
65 %%              \columnseprule \z@
66 %%              \columnsep 35\p@
67 %%              \twocolumn[\@makeschapterhead{\indexname}]%
68                 \@mkboth{\MakeUppercase\indexname}%
69                         {\MakeUppercase\indexname}%
70                                 \clearpage
71                                 \subsection*{\indexname}
72                                 \addcontentsline{toc}{subsection}{\indexname}
73                 \thispagestyle{plain}\parindent\z@
74                 \parskip\z@ \@plus .3\p@\relax
75                 \let\item\@idxitem}
76                                 {\if@restonecol\onecolumn\else\clearpage\fi}   %% Is this needed???
77
78 %% 
79 \endinput
80 %%