Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WS-2223 #2

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
13 changes: 10 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,16 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 130

[*.yml]
indent_style = space
[*.{md,mf}]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

[{COPYING,LICENSE,NOTICE,*.{mf,xmp}}]
indent_size = unset
7 changes: 7 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Commits to be ignored for assigning blame
#
# Any bulk formatting commits should be listed here
# Apply this to a local environment with: git config blame.ignoreRevsFile .git-blame-ignore-revs

3c9eff8abc2b3254b831fcbad9a4a3ed381a7a25 # Apply pre-commit hook
85e575ea5b124b79ceb59b9fe106452a33b0cae3 # Indent files
19 changes: 19 additions & 0 deletions .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: check-formatting

on:
push:
branches:
- main
- master
pull_request:

jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Execute Pre-commit Hooks
uses: pre-commit/[email protected]
20 changes: 20 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: end-of-file-fixer
- id: check-yaml
# - id: check-added-large-files
- repo: https://github.com/cmhughes/latexindent.pl.git
rev: V3.18
hooks:
- id: latexindent
args: ["--overwriteIfDifferent", "--silent", "-l=latexindent.yaml"]
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: '2.6.1' # pick a git hash / tag to point to
hooks:
- id: editorconfig-checker
exclude_types: [tex]
alias: ec
Binary file added aktuell/BTTF.ttf
Binary file not shown.
34 changes: 17 additions & 17 deletions aktuell/EInforz.tex
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,28 @@

\begin{document}

% Titelseite
\input{inhalt/titelseite_einforz}
% Titelseite
\input{inhalt/titelseite_einforz}

% Vorwort
\input{inhalt/willkommen/vorwort_fachschaft_einforz}
% Vorwort
\input{inhalt/willkommen/vorwort_fachschaft_einforz}

% Inhaltsverzeichnis
\tableofcontents
\newpage
% Inhaltsverzeichnis
\tableofcontents
\newpage

% Inhalt
% Inhalt

\input{inhalt/willkommen/vorwort_dekanat_oinforz} % aus Oinforz kopiert
\input{inhalt/kapitel_wichtig_einforz}
\input{inhalt/kapitel_studium_einforz}
\input{inhalt/kapitel_informatik_einforz}
\input{inhalt/kapitel_leben_einforz}
\input{inhalt/willkommen/vorwort_dekanat_oinforz} % aus Oinforz kopiert
\input{inhalt/kapitel_wichtig_einforz}
\input{inhalt/kapitel_studium_einforz}
\input{inhalt/kapitel_informatik_einforz}
\input{inhalt/kapitel_leben_einforz}

% Impressum
\input{inhalt/impressum_einforz}
% Impressum
\input{inhalt/impressum_einforz}

% Rückseite
\input{inhalt/rueckseite_einforz}
% Rückseite
\input{inhalt/rueckseite_einforz}

\end{document}
36 changes: 18 additions & 18 deletions aktuell/OInforz_Bachelor.tex
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,33 @@
% Pfad für Grafiken festlegen
\graphicspath{{../shared/grafik}}

%Klingon Font
\newfont{\kling}{pIq scaled 1000}
%Back To The Future Font
\newfont{\bttf}{BTTF scaled 1000}

% Sprache hier einstellen
\usepackage[ngerman]{babel}

\begin{document}
% Titelseite
\input{inhalt/titelseite_oinforz}
% Titelseite
\input{inhalt/titelseite_oinforz}

% Stundenplan
\input{inhalt/stundenplan_oinforz}
% Stundenplan
\input{inhalt/stundenplan_oinforz}

% Inhaltsverzeichnis
\tableofcontents
% Inhaltsverzeichnis
\tableofcontents

% Inhalt
\input{inhalt/kapitel_willkommen_oinforz}
\input{inhalt/kapitel_studium_oinforz}
\input{inhalt/kapitel_universitaet_oinforz}
\input{inhalt/kapitel_freizeit_oinforz}
\input{inhalt/kapitel_nachschlagen_oinforz}
% Inhalt
\input{inhalt/kapitel_willkommen_oinforz}
\input{inhalt/kapitel_studium_oinforz}
\input{inhalt/kapitel_universitaet_oinforz}
\input{inhalt/kapitel_freizeit_oinforz}
\input{inhalt/kapitel_nachschlagen_oinforz}

% Impressum
\input{inhalt/impressum_oinforz}
% Impressum
\input{inhalt/impressum_oinforz}

% Rückseite
\input{inhalt/rueckseite_oinforz}
% Rückseite
\input{inhalt/rueckseite_oinforz}

\end{document}
32 changes: 16 additions & 16 deletions aktuell/OInforz_DSS.tex
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@

\begin{document}

% Titelseite
\input{inhalt/titelseite_oinforz_dss}
% Titelseite
\input{inhalt/titelseite_oinforz_dss}

% Stundenplan
\input{inhalt/stundenplan_oinforz_dss}
% Stundenplan
\input{inhalt/stundenplan_oinforz_dss}


% Inhaltsverzeichnis
\tableofcontents
% Inhaltsverzeichnis
\tableofcontents

% Inhalt
\input{inhalt/kapitel_willkommen_oinforz_dss}
\input{inhalt/kapitel_studium_oinforz_dss}
\input{inhalt/kapitel_universitaet_oinforz_dss}
\input{inhalt/kapitel_freizeit_oinforz_dss}
\input{inhalt/kapitel_nachschlagen_oinforz_dss}
% Inhalt
\input{inhalt/kapitel_willkommen_oinforz_dss}
\input{inhalt/kapitel_studium_oinforz_dss}
\input{inhalt/kapitel_universitaet_oinforz_dss}
\input{inhalt/kapitel_freizeit_oinforz_dss}
\input{inhalt/kapitel_nachschlagen_oinforz_dss}

% Impressum
\input{inhalt/impressum_oinforz_dss}
% Impressum
\input{inhalt/impressum_oinforz_dss}

% Rückseite
\input{inhalt/rueckseite_oinforz_dss}
% Rückseite
\input{inhalt/rueckseite_oinforz_dss}

\end{document}
34 changes: 17 additions & 17 deletions aktuell/OInforz_Master.tex
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@

\begin{document}

% Titelseite
\input{inhalt/titelseite_oinforz_master}
% Titelseite
\input{inhalt/titelseite_oinforz_master}

% Stundenplan
\input{inhalt/stundenplan_oinforz_master}
% Stundenplan
\input{inhalt/stundenplan_oinforz_master}

% Inhaltsverzeichnis
\tableofcontents
% Inhaltsverzeichnis
\tableofcontents

% Inhalt
\input{inhalt/kapitel_willkommen_oinforz_master}
\input{inhalt/kapitel_studium_oinforz_master}
\input{inhalt/kapitel_universitaet_oinforz_master}
\input{inhalt/kapitel_freizeit_oinforz_master}
\null\newpage
\input{inhalt/kapitel_nachschlagen_oinforz_master}
% Inhalt
\input{inhalt/kapitel_willkommen_oinforz_master}
\input{inhalt/kapitel_studium_oinforz_master}
\input{inhalt/kapitel_universitaet_oinforz_master}
\input{inhalt/kapitel_freizeit_oinforz_master}
\null\newpage
\input{inhalt/kapitel_nachschlagen_oinforz_master}

% Impressum
\input{inhalt/impressum_oinforz_master}
% Impressum
\input{inhalt/impressum_oinforz_master}

% Rückseite
\input{inhalt/rueckseite_oinforz_master}
% Rückseite
\input{inhalt/rueckseite_oinforz_master}

\end{document}
58 changes: 58 additions & 0 deletions aktuell/Oinforz_lite.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
% Vorlage für ein Inforz
% Erstellt von: Tobias Otterbein, [email protected], Stand: 31.08.2014
% Darf beliebig für ein Inforz angepasst werden.
\documentclass[
a5paper,
pagesize,
twoside,
fontsize=8pt,
DIV=15
]{scrreprt}

% Seitenränder festlegen
\usepackage[
paperheight=214mm,
paperwidth=152mm,
left=17mm,
right=17mm,
top=17mm,
bottom=22mm
]{geometry}

% Inforz-Definitionen laden
\usepackage{inforz}

% Pfad für Grafiken festlegen
\graphicspath{{../shared/grafik}}

%Back To The Future Font
\newfont{\bttf}{BTTF scaled 1000}

% Sprache hier einstellen
\usepackage[ngerman]{babel}

\begin{document}
% Titelseite
\input{inhalt/titelseite_oinforz}

% Lageplan
\thispagestyle{empty}
\ThisCenterWallPaper{.9}{lageplan_mit_markierungen}
\mbox{}\newpage

% QR-Code
\input{inhalt/willkommen/qrcode-ophase}

%\input{inhalt/willkommen/workshops}

% Stundenplan
\thispagestyle{empty}
% Draw the Background centered
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=center] at (current page.center) {\includegraphics[angle=90,width=\textwidth,height=\textheight,keepaspectratio]{stundenplan}};
\end{tikzpicture}
\begin{textblock*}{10cm}(7mm,6mm)
\normalsize \textbf{Dieses Inforz gehört:}
\end{textblock*}

\end{document}
30 changes: 15 additions & 15 deletions aktuell/SInforz.tex
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@

\begin{document}

% Titelseite
\input{inhalt/titelseite_sinforz}
% Titelseite
\input{inhalt/titelseite_sinforz}

% Vorwort
\input{inhalt/willkommen/vorwort_fachschaft_sinforz}
% Vorwort
\input{inhalt/willkommen/vorwort_fachschaft_sinforz}

% Inhaltsverzeichnis
\tableofcontents
\newpage
% Inhaltsverzeichnis
\tableofcontents
\newpage

% Inhalt
\input{inhalt/willkommen/vorwort_dekanat_sinforz}
\input{inhalt/kapitel_studium_sinforz}
\input{inhalt/kapitel_nachschlagen_sinforz}
% Inhalt
\input{inhalt/willkommen/vorwort_dekanat_sinforz}
\input{inhalt/kapitel_studium_sinforz}
\input{inhalt/kapitel_nachschlagen_sinforz}

% Impressum
\input{inhalt/impressum_sinforz}
% Impressum
\input{inhalt/impressum_sinforz}

% Rückseite
\input{inhalt/rueckseite_sinforz}
% Rückseite
\input{inhalt/rueckseite_sinforz}

\end{document}
Loading