Compare commits
2 commits
36ee056237
...
8bc06134c4
Author | SHA1 | Date | |
---|---|---|---|
|
8bc06134c4 | ||
|
6c3ac32cfa |
4 changed files with 4 additions and 141 deletions
|
@ -1,6 +1,5 @@
|
||||||
# Handbook of Truth
|
# IT-Syndikat statuten
|
||||||
|
|
||||||
The recommended way of building this document depends on [latexrun](https://github.com/aclements/latexrun).
|
Here, thy shall find the statutes of the IT-Syndikat community, legally known as
|
||||||
Additionally you require a working LaTeX setup, which can be installed with:
|
`IT-Syndikat -- Verein zur Förderung des freien Zugangs zu technischer Fort- und Weiterbildung jeglicher Art`
|
||||||
|
with ZVR number `553029636`.
|
||||||
sudo apt install texlive-full
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
\chapter{Infrastructure}
|
|
||||||
\label{cha:infrastructure}
|
|
|
@ -1,45 +0,0 @@
|
||||||
\chapter{Introduction}
|
|
||||||
\label{cha:introduction}
|
|
||||||
|
|
||||||
\section{Welcome}
|
|
||||||
\label{sec:welcome}
|
|
||||||
|
|
||||||
% TODO
|
|
||||||
\lipsum[1]
|
|
||||||
|
|
||||||
\section{Who we are}
|
|
||||||
\label{sec:who_we_are}
|
|
||||||
|
|
||||||
% TODO
|
|
||||||
\lipsum[2]
|
|
||||||
|
|
||||||
\section{Why we are}
|
|
||||||
\label{sec:why_we_are}
|
|
||||||
|
|
||||||
% TODO
|
|
||||||
\lipsum[2]
|
|
||||||
|
|
||||||
\section{Where we are}
|
|
||||||
\label{sec:where_we_are}
|
|
||||||
|
|
||||||
\begin{multicols}{2}
|
|
||||||
\faHome{} \textbf{Meatspace}\\
|
|
||||||
Tschamlerstraße 3\\
|
|
||||||
6020 Innsbruck\\
|
|
||||||
Austria
|
|
||||||
|
|
||||||
\faGithub{} \textbf{GitHub}\\
|
|
||||||
\href{https://github.com/it-syndikat}{IT-Syndikat}
|
|
||||||
|
|
||||||
\columnbreak
|
|
||||||
|
|
||||||
\faSlack{} \textbf{IRC}\\
|
|
||||||
\href{https://freenode.net}{freenode.net}\\
|
|
||||||
\#itsyndikat
|
|
||||||
|
|
||||||
\faBullhorn{} \textbf{Discourse}\\
|
|
||||||
\href{https://meta.it-syndikat.org}{meta.it-syndikat.org}
|
|
||||||
\end{multicols}
|
|
||||||
|
|
||||||
\faSearch{}
|
|
||||||
\href{https://duckduckgo.com/?q=IT-Syndikat}{or search for IT-Syndikat}
|
|
89
handbook.tex
89
handbook.tex
|
@ -1,89 +0,0 @@
|
||||||
\documentclass[a5paper,DIV=calc,parskip=half]{scrbook}
|
|
||||||
\title{Handbook of Truth}
|
|
||||||
\author{IT-Syndikat}
|
|
||||||
\date{\today}
|
|
||||||
|
|
||||||
% Fixes
|
|
||||||
\usepackage{scrhack}
|
|
||||||
|
|
||||||
% Title
|
|
||||||
\usepackage{titling}
|
|
||||||
\pretitle{\begin{center}\includegraphics{gfx/its_logo.pdf}\LARGE\\[5em]}
|
|
||||||
\posttitle{\end{center}}
|
|
||||||
|
|
||||||
% Fonts
|
|
||||||
\usepackage[T1]{fontenc}
|
|
||||||
\usepackage{fontawesome}
|
|
||||||
|
|
||||||
% Unicode Support
|
|
||||||
\usepackage[utf8]{inputenc}
|
|
||||||
|
|
||||||
% Language
|
|
||||||
\usepackage[main=british,german]{babel}
|
|
||||||
|
|
||||||
% Text
|
|
||||||
\usepackage{enumitem}
|
|
||||||
\usepackage{microtype}
|
|
||||||
\usepackage{multicol}
|
|
||||||
\usepackage{seqsplit}
|
|
||||||
|
|
||||||
% Graphics
|
|
||||||
\usepackage{graphicx}
|
|
||||||
|
|
||||||
% Color
|
|
||||||
\usepackage[svgnames]{xcolor}
|
|
||||||
\colorlet{linkcolor}{DarkBlue}
|
|
||||||
|
|
||||||
% Hyperlinks
|
|
||||||
\usepackage[pdfusetitle]{hyperref}
|
|
||||||
\hypersetup{
|
|
||||||
colorlinks=true,
|
|
||||||
linkcolor=linkcolor,
|
|
||||||
citecolor=linkcolor,
|
|
||||||
urlcolor=linkcolor
|
|
||||||
}
|
|
||||||
|
|
||||||
% References
|
|
||||||
\usepackage[capitalise,nameinlink,noabbrev]{cleveref}
|
|
||||||
|
|
||||||
% Source Code
|
|
||||||
\usepackage{listings}
|
|
||||||
\lstset{
|
|
||||||
basicstyle=\footnotesize\ttfamily,
|
|
||||||
breaklines=true,
|
|
||||||
frame=tb,
|
|
||||||
numberstyle=\tiny,
|
|
||||||
showstringspaces=false,
|
|
||||||
xleftmargin=2em
|
|
||||||
}
|
|
||||||
|
|
||||||
% Document Specific Packages
|
|
||||||
\usepackage{lipsum}
|
|
||||||
|
|
||||||
% Document Specific Macros
|
|
||||||
\newcommand{\maintainer}[2]{%
|
|
||||||
{\footnotesize%
|
|
||||||
\textbf{Maintainer:} #1
|
|
||||||
\href{mailto:#2}{\texttt{\seqsplit{<#2>}}}
|
|
||||||
}%
|
|
||||||
}
|
|
||||||
|
|
||||||
% Use a Sans font family by default
|
|
||||||
\renewcommand*{\familydefault}{\sfdefault}
|
|
||||||
|
|
||||||
\begin{document}
|
|
||||||
|
|
||||||
\frontmatter
|
|
||||||
\maketitle
|
|
||||||
\tableofcontents
|
|
||||||
|
|
||||||
\mainmatter
|
|
||||||
\include{content/introduction}
|
|
||||||
\include{content/infrastructure}
|
|
||||||
|
|
||||||
\appendix
|
|
||||||
\include{content/statuten}
|
|
||||||
|
|
||||||
\backmatter
|
|
||||||
|
|
||||||
\end{document}
|
|
Loading…
Reference in a new issue