commit 1c35155952cbac5d9f9c3203bc44fd80996ae6d1
parent 43a8938d04511c109b9f5f0197b32017e5ac0f19
Author: Joel-Haeberli <haebu@rubigen.ch>
Date: Thu, 9 May 2024 14:46:39 +0200
poster: basic setup
Diffstat:
3 files changed, 78 insertions(+), 0 deletions(-)
diff --git a/poster/.gitignore b/poster/.gitignore
@@ -0,0 +1,12 @@
+DEMO-BFHSciPoster.tex
+*.glg
+*.glo
+*.gls
+*.ist
+*.lol
+*.bbl
+*.aux
+*.fls
+*.fdb_latexmk
+*.tcbtemp
+*.log
+\ No newline at end of file
diff --git a/poster/Makefile b/poster/Makefile
@@ -0,0 +1,9 @@
+pdf:
+ latexmk -pdf cashless2ecash_poster.tex
+
+demo-pdf:
+ latexmk -pdf DEMO-BFHSciPoster.tex
+
+clean:
+ latexmk -C
+ rm -Rf *.glg *.glo *.gls *.ist *.lol *.bbl *.aux *.fls *.fdb_latexmk *.tcbtemp *.log
+\ No newline at end of file
diff --git a/poster/cashless2ecash_poster.tex b/poster/cashless2ecash_poster.tex
@@ -0,0 +1,54 @@
+\documentclass[
+ paper=a0,
+ style=ruled,
+]{bfhsciposter}
+
+%% Sprache
+\usepackage[nswissgerman]{babel}
+\usepackage[autostyle]{csquotes}
+
+\begin{document}
+
+\title{Making GNU Taler accessible}
+\author{Joel Häberli\inst{*}\thanks{habej2@bfh.ch}}
+\institute{Berner Fachhochschule, Departement Technik und Informatik, \inst{*}Institute for Cybersecurity and Engineering ICE}
+%% \inst kann in den Autor und Institutsfeldern genutzt werden um eine Zuordnung zu ermöglichen. Bei Nummerierung ist der Nutzer dafür verantwortlich Konflikte mit \thanks zu vermeiden.
+%% \titlegraphic{\includegraphics[width=10cm]{example-image}}
+\footerqrcode{https://taler-c2ec.ti.bfh.ch}
+\footer{Foooteer}
+
+\footergraphics{
+ \includegraphics[height=\height]{taler_logo.png}
+ \includegraphics[height=\height]{wallee_logo.png}
+}
+
+\begin{tcbposter}[
+ poster={
+ columns=4,
+ rows=7,
+ spacing=1cm,
+ showframe, %Gitter einblenden. Für Platzierung häufig hilfreich
+ }]
+
+\begin{posterboxenv}[,BFH-abstract,title=Introduction]{name=intro,column=1,row=1,span=4}
+ Introduction text
+\end{posterboxenv}
+
+\begin{posterboxenv}[title=API Specification]{name=api,column=1,row=2,span=4}
+ Explain new API
+\end{posterboxenv}
+
+%% Titelei
+\begin{posterboxenv}[title=Integrating Wallee]{name=wallee, row=3, span=3, span=4}
+ Explain Wallee Integration
+\end{posterboxenv}
+
+
+\begin{posterboxenv}[title=Integrate your platform!]{name=title, row=4, span=4}
+ How to integrate other platforms
+\end{posterboxenv}
+
+\end{tcbposter}
+
+
+\end{document}
+\ No newline at end of file