Compare commits
No commits in common. "main" and "praesentation_at" have entirely different histories.
main
...
praesentat
6 changed files with 37 additions and 25 deletions
18
.github/workflows/build-praesentation_at_gj.yaml
vendored
Normal file
18
.github/workflows/build-praesentation_at_gj.yaml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Build Praesentation_AT_GJ.tex
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build_Praesentation_AT_GJ:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up Git repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Compile Praesentation_AT_GJ.tex
|
||||||
|
uses: xu-cheng/latex-action@v2
|
||||||
|
with:
|
||||||
|
root_file: Praesentation_AT_GJ.tex
|
||||||
|
latexmk_use_lualatex: true
|
||||||
|
- name: Upload PDF file
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: Praesentation_AT_GJ.pdf
|
||||||
|
path: Praesentation_AT_GJ.pdf
|
|
@ -1,7 +1,6 @@
|
||||||
Kategorie,Bonn,Bund
|
Kategorie,Bonn,Bund
|
||||||
Ausgefüllte Gesprächsbögen,231,3380
|
Ausgefüllte Gesprächsbögen,217,3078
|
||||||
TVStud-Botschafter*innen,66,1316
|
TVStud-Botschafter*innen,64,1208
|
||||||
Streikbereit,146,2507
|
Streikbereit,139,2316
|
||||||
Aktionsbereit,129,1884
|
Aktionsbereit,118,1760
|
||||||
Gewerkschaftsmitglied,43,1190
|
Gewerkschaftsmitglied,41,1093
|
||||||
Stand,2023-09-07,2023-09-12
|
|
||||||
|
|
|
|
@ -20,10 +20,8 @@ def get_befragung():
|
||||||
def generate_bundesweite_ziele_tex():
|
def generate_bundesweite_ziele_tex():
|
||||||
template = env.get_template("bundesweite_ziele.tex")
|
template = env.get_template("bundesweite_ziele.tex")
|
||||||
|
|
||||||
data = get_aktueller_stand_data()
|
|
||||||
|
|
||||||
return template.render(
|
return template.render(
|
||||||
boegen=data["Bund"][0],
|
boegen="3078",
|
||||||
eintritte="\\textasciitilde{}~200",
|
eintritte="\\textasciitilde{}~200",
|
||||||
botschafter="?",
|
botschafter="?",
|
||||||
befragung=get_befragung(),
|
befragung=get_befragung(),
|
||||||
|
@ -39,20 +37,17 @@ def update_bundesweite_ziele_tex():
|
||||||
f.write("\n")
|
f.write("\n")
|
||||||
f.write("\n")
|
f.write("\n")
|
||||||
|
|
||||||
def get_aktueller_stand_data():
|
|
||||||
data_file = "data.csv"
|
|
||||||
data = pd.read_csv(data_file)
|
|
||||||
|
|
||||||
return data
|
|
||||||
|
|
||||||
def generate_aktueller_stand_strukturaufbau():
|
def generate_aktueller_stand_strukturaufbau():
|
||||||
template = env.get_template("aktueller_stand_strukturaufbau.tex")
|
template = env.get_template("aktueller_stand_strukturaufbau.tex")
|
||||||
|
|
||||||
data = get_aktueller_stand_data()
|
data_file = "data.csv"
|
||||||
|
data = pd.read_csv(data_file)
|
||||||
|
|
||||||
return template.render(
|
return template.render(
|
||||||
bonn=data["Bonn"],
|
bonn=data["Bonn"],
|
||||||
bund=data["Bund"],
|
bund=data["Bund"],
|
||||||
|
stand=date.fromtimestamp(os.path.getmtime(data_file)).isoformat(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
\end{tabularx}
|
\end{tabularx}
|
||||||
|
|
||||||
\vspace{3em}
|
\vspace{3em}
|
||||||
{\small Stand: {{ bonn[5] }} (Bonn), {{ bund[5] }} (Bund)}
|
{\small Stand: {{ stand }}}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\endinput
|
\endinput
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
\renewcommand{\arraystretch}{1.5}
|
\renewcommand{\arraystretch}{1.5}
|
||||||
\begin{tabularx}{\textwidth}{Xrrr}
|
\begin{tabularx}{\textwidth}{Xrrr}
|
||||||
\textbf{Kategorie} & \textbf{Bonn} & \textbf{Bund} \\
|
\textbf{Kategorie} & \textbf{Bonn} & \textbf{Bund} \\
|
||||||
Ausgefüllte Gesprächsbögen & 231 & 3380 \\
|
Ausgefüllte Gesprächsbögen & 217 & 3078 \\
|
||||||
TVStud-Botschafter*innen & 66 & 1316 \\
|
TVStud-Botschafter*innen & 64 & 1208 \\
|
||||||
Streikbereit & 146 & 2507 \\
|
Streikbereit & 139 & 2316 \\
|
||||||
Aktionsbereit & 129 & 1884 \\
|
Aktionsbereit & 118 & 1760 \\
|
||||||
Gewerkschaftsmitglied \newline
|
Gewerkschaftsmitglied \newline
|
||||||
{\footnotesize ver.di oder GEW} & 43 & 1190
|
{\footnotesize ver.di oder GEW} & 41 & 1093
|
||||||
\end{tabularx}
|
\end{tabularx}
|
||||||
|
|
||||||
\vspace{3em}
|
\vspace{3em}
|
||||||
{\small Stand: 2023-09-07 (Bonn), 2023-09-12 (Bund)}
|
{\small Stand: 2023-09-06}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\endinput
|
\endinput
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
\renewcommand{\arraystretch}{1.5}
|
\renewcommand{\arraystretch}{1.5}
|
||||||
\begin{tabularx}{\textwidth}{Xrrrr}
|
\begin{tabularx}{\textwidth}{Xrrrr}
|
||||||
\textbf{Kategorie} & \textbf{Erfolg} & \textbf{großer Erfolg} & \textbf{sehr großer Erfolg} & \textbf{Stand} \\
|
\textbf{Kategorie} & \textbf{Erfolg} & \textbf{großer Erfolg} & \textbf{sehr großer Erfolg} & \textbf{Stand} \\
|
||||||
Gesprächsbögen & 3100 & 3300 & 3500 & \emph{3380} \\
|
Gesprächsbögen & 3100 & 3300 & 3500 & \emph{3078} \\
|
||||||
ver.di-Neueintritte & 275 & - & - & \emph{\textasciitilde{}~200} \\
|
ver.di-Neueintritte & 275 & - & - & \emph{\textasciitilde{}~200} \\
|
||||||
Tarifbotschafter*innen & 100 & - & - & \emph{?} \\
|
Tarifbotschafter*innen & 100 & - & - & \emph{?} \\
|
||||||
digitale Befragung & 1500 & 2500 & 3500 & \emph{2182}
|
digitale Befragung & 1500 & 2500 & 3500 & \emph{1574}
|
||||||
\end{tabularx}
|
\end{tabularx}
|
||||||
|
|
||||||
\vspace{6em}
|
\vspace{6em}
|
||||||
{\small Stand:~2023-09-15}
|
{\small Stand:~2023-09-06}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\endinput
|
\endinput
|
||||||
|
|
Loading…
Reference in a new issue