Skip to content
Snippets Groups Projects
stratum0doc.sty 2.13 KiB
Newer Older
%% stratum0doc.sty
%%
\NeedsTeXFormat{LaTeX2e}[1995/12/01]

\ProvidesPackage{stratum0doc}

%% Package options
\makeatletter
  \DeclareOption{transcript}{%
    \def\@sndsectionmark{TOP\ }%
  }
  \DeclareOption{legal}{
    \def\@sndsectionmark{§\ }
  \ExecuteOptions{transcript}
  \ProcessOptions\relax
\makeatother

%% fancyhdr setup
\newcommand{\myfancysetup}[2]{%
  \pagestyle{fancy}
  \fancyhf{}
  \fancyhead[L]{\sc #1}%
  \fancyhead[R]{\sc #2}%
  \fancyfoot[C]{Seite \thepage\ von \pageref{LastPage}}
  \fancypagestyle{plain}{% for first page
    \renewcommand{\headrulewidth}{0pt}%
    \fancyhf{}%
    \fancyfoot[C]{Seite \thepage\ von \pageref{LastPage}}%
  }
}

%% list bullets, section prefix
\makeatletter
\renewcommand{\labelenumi}{(\arabic{enumi})}
\renewcommand{\labelitemi}{--}

% set table of contents number field to max width of section numbers
\settowidth{\cftsecnumwidth}{\@sndsectionmark 10 }
\settowidth{\cftsubsecnumwidth}{\@sndsectionmark 1.10 }

\let\theoldsection\thesection
\renewcommand*{\thesection}{%
  \@sndsectionmark\theoldsection
rohieb's avatar
rohieb committed
\setcounter{section}{-1} % Hacker fangen ab 0 an zu zählen.
\makeatother

%% Parameters: text, pros, contras, abstentions
\newcommand{\vote}[4]{%
  \marginpar{\footnotesize #1:\\#2~pro, #3~con, #4~neutral}%
}
%% consensus without explicit vote
\newcommand{\consensus}[1]{%
%% no vote at all, disagreement
\newcommand{\novote}{%
  \marginpar{\footnotesize Kein Beschluss}%
}
%% postponed agenda items
\newcommand{\postponed}{%
  \marginpar{\footnotesize Beschluss vertagt}%
}
%% withdrawn agenda items
\newcommand{\withdrawn}{%
  \marginpar{\footnotesize TOP zurückgezogen}%
}
%% elected persons
%% Parameters: appointment, name, votes, max. possible votes
\newcommand{\elected}[4]{%
  \marginpar{\footnotesize #1: #2 (#3/#4)}
}
\RequirePackage{fancyhdr}
\RequirePackage{lastpage}

%% bootstrapping
\makeatletter
\AtBeginDocument{%
  \let\mytitle\@title%
  \let\mydate\@date%
  \myfancysetup{\mytitle}{\mydate}%
}
\makeatother
rohieb's avatar
rohieb committed
% vim: set tw=80 et sw=2 ts=2: