aboutsummaryrefslogtreecommitdiffstats
path: root/tex/fripost.sty
blob: b238641fadd1a7eba4b998c25191782b8914a0f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
%% Package declaration
%    \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{fripost}
\RequirePackage{calc}
\RequirePackage{graphicx}
%    \end{macrocode}
%% Colours
%    \begin{macrocode}
\PassOptionsToPackage{svgnames}{xcolor}
\RequirePackage{xcolor}
\colorlet{fpgray}{white!30!black}
\definecolor{grayFri}{gray}{.3}
%    \end{macrocode}
%% Font macros and basic paragraph formatting
%    \begin{macrocode}
\RequirePackage{lmodern}
\RequirePackage{helvet}
\RequirePackage{soul}
\PassOptionsToPackage{hyphens}{url}
\RequirePackage{url}
\RequirePackage{parskip}
\RequirePackage{multicol}
\RequirePackage{hyphenat}
\newcommand \textemail [1] {\texttt{\small #1}}
\newcommand \texturl [1] {\texttt{\small #1}}
\newcommand \textpath [1] {\texturl{#1}}
\newcommand \texthost [1] {\textit{#1}}
\newcommand \titlefont {\Large\sffamily\mdseries\color{grayFri}}
\newcommand \descriptionfont {\bfseries\color{grayFri}}
\newcommand \textestemate [1] {{\small\sffamily\mdseries\color{grayFri} #1}}
%    \end{macrocode}
%% Titling
%    \begin{macrocode}
\RequirePackage{titling}
\pretitle{\titlefont\centering}
\posttitle{}
\preauthor{\titlefont\centering--~}
\postauthor{\\}
\predate{\titlefont\centering}
\postdate{\par}
\setlength{\droptitle}{-4\baselineskip}
%    \end{macrocode}
%% Options
%    \begin{macrocode}
%% \DeclareOption{standalone}{

%% }

\newif\if@minutes\@minutesfalse
\DeclareOption{minutes}{\@minutestrue}

\DeclareOption{by-laws}{

}
\ProcessOptions\relax
%    \end{macrocode}
%% Sections
%    \begin{macrocode}
\@ifclassloaded{article}{
  \RequirePackage{sectsty}
  \setcounter{secnumdepth}{3} % section numbering by default
  \allsectionsfont{
    \sffamily\mdseries\color{grayFri}
  }
  \if@minutes
  \allsectionsfont{\sffamily\mdseries\color{grayFri}\normalsize}
  \fi
}{}
\@ifclassloaded{leaflet}{
  \RequirePackage{sectsty}
  \allsectionsfont{
    \sffamily\mdseries\color{grayFri}
    \centering
    }
}{}
%    \end{macrocode}
%% Enumeration
%    \begin{macrocode}
\RequirePackage{enumerate}
\newcommand \enumiform {\quad\sffamily\small\color{grayFri}}
\newcommand \textenumerate [1] {{\quad\sffamily\small\color{grayFri} #1}}
\renewcommand{\labelitemi}{\textenumerate{$\bullet$}}
\renewcommand{\labelitemii}{\textenumerate{$\circ$}}
\renewcommand{\labelenumi}{\textenumerate{\arabic{enumi}\,\,}}
\renewcommand{\labelenumii}{\textenumerate{(\alph{enumii})}}
\renewcommand{\descriptionlabel}[1]{%
  \hspace{\labelsep}{\descriptionfont #1}}
%    \end{macrocode}
%% Abstract
%%
%% Note that the fancy page style is issued as part of the
%% abstract. That is due to that \maketitle command issues the plain
%% page style.
%    \begin{macrocode}
\@ifclassloaded{article}{
  \def\abstract{%
    \if@minutes\thispagestyle{fancy}\fi%
    {\descriptionfont \abstractname}\par
    }
}{}
%    \end{macrocode}
%% Headers
%    \begin{macrocode}
\@ifclassloaded{article}{
  \RequirePackage{authoraftertitle}
  \RequirePackage{fancyhdr}
  \RequirePackage{lastpage}
  \setlength {\headheight} {30pt}

  \renewcommand{\headrule}{{%
      \hrule width\headwidth height\headrulewidth \vskip-\headrulewidth}}

  \renewcommand{\footrule}{{%
      \vskip-\footruleskip\vskip-\footrulewidth
      \hrule width\headwidth height\headrulewidth\vskip\footruleskip}}

  \pagestyle{fancy}
  \lhead{\footnotesize{\sffamily{\bfseries fripost} | demokratisk e-post}}
  \chead{\footnotesize}
  \rhead{\footnotesize \MyTitle, \MyDate}
  \lfoot{\footnotesize \url{fripost.org}}
  \cfoot{\footnotesize \thepage}
  \rfoot{\footnotesize utskr.\ \today}
}{}
%    \end{macrocode}
%% Time estimations in meeting agendas
%    \begin{macrocode}
\newcommand \itemtime [2] {%
  \hfill\textestemate{#1\quad{}#2}\hspace{2cm}\mbox{}%
}
%    \end{macrocode}
%% Signature line
%    \begin{macrocode}
\newcommand{\signatureline}[1]{%
  \noindent%
    \parbox{6.5cm}{%
      \mbox{}\vspace{1.5cm}\\%
      \rule{\linewidth}{0.4pt}\\%
      #1%
    }%
}%
%    \end{macrocode}