]> git.sur5r.net Git - bacula/docs/blob - docs/bacula-web/bacula.sty
Update winbin.php
[bacula/docs] / docs / bacula-web / bacula.sty
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 %%