Impressum in der Fusszeile

This commit is contained in:
Amma 2019-06-30 14:46:17 +02:00
parent d3da3b4b31
commit 90c22def1d
2 changed files with 33 additions and 14 deletions

Binary file not shown.

View File

@ -3,11 +3,14 @@
% Attention: Must be included even BEFORE \documentclass!
% Source: http://www.howtotex.com/packages/9-essential-latex-packages-everyone-should-use/
\RequirePackage[l2tabu,orthodox]{nag}
\documentclass[12pt]{scrartcl}
\documentclass[12pt, usegeometry]{scrartcl}
\usepackage{fontawesome}
% Needed for fonts
% Replaces fontenc and inputenc for XeLaTeX and LuaTex
\usepackage{fontspec}
\fontspec [Path=font/]{FontAwesome5Free-Regular-400.otf}
% Enables translations for packages
% Replaces babel for XeLaTeX and LuaTeX (requires fontspec)
@ -18,7 +21,20 @@
% Set fonts
%\setmainfont[Path=./fonts/,UprightFont=*-Regular,BoldFont=*-Bold]{SourceSerifPro}
\usepackage[left=1.5cm,right=1.5cm,top=1cm,bottom=1cm]{geometry}
%\usepackage[left=1.5cm,right=1.5cm,top=1cm,bottom=1cm,includefoot=true]{geometry}
\usepackage{geometry}
\geometry{left=1.5cm,right=1.5cm,top=1cm,bottom=2cm,includefoot=true}
%% Kopf- und Fußzeile
\usepackage[headsepline=false,footsepline,automark]{scrlayer-scrpage}% sets pagestyle scrheadings automatically
%\clearpairofpagestyles
\ihead[]{}
\chead[]{}
\ohead[]{}
\ofoot[]{Impressum: Fachschaft WIAI, Raum WE5/02.104,\\ \MVAt~\href{mailto://fachschaft-wiai.stuve@uni-bamberg.de}{fachschaft-wiai.stuve@uni-bamberg.de}, \Telefon~\href{tel:+49951863-1219}{+49~951~863-1219}, \faExternalLink~\url{https://wiai.de}}
\cfoot[]{}
\ifoot[]{}
\setkomafont{pageheadfoot}{\sffamily}
% For embedding graphics
\usepackage{graphicx}
@ -52,8 +68,9 @@
% Do not insert pagebreak after title page
\let\endtitlepage\relax
\usepackage{marvosym}
\begin{document}
\thispagestyle{empty}
\begin{titlepage}
\begin{center}
@ -62,6 +79,8 @@
\end{center}
\end{titlepage}
\thispagestyle{headings}
\begin{multicols}{2}
\section*{Termine}
@ -111,17 +130,17 @@
\includegraphics[width=0.7\linewidth]{xkcd-1807}
\end{figure}
\section*{Impressum}
\footnotesize{%
\begin{tabularx}{\linewidth}{@{}>{\bfseries}l X@{}}
\multicolumn{2}{@{}l}{\bfseries{Fachschaft WIAI}} \\
WWW: & \url{https://wiai.de} \\
E-Mail: & \href{mailto://fachschaft-wiai.stuve@uni-bamberg.de}{fachschaft-wiai.stuve@uni-bamberg.de}\\
Telefon: & \href{tel:+49951863-1219}{+49 951 863-1219}\\
Raum: & WE5/02.104
\end{tabularx}
}
% \section*{Impressum}
%
% \footnotesize{%
% \begin{tabularx}{\linewidth}{@{}>{\bfseries}l X@{}}
% \multicolumn{2}{@{}l}{\bfseries{Fachschaft WIAI}} \\
% WWW: & \url{https://wiai.de} \\
% E-Mail: & \href{mailto://fachschaft-wiai.stuve@uni-bamberg.de}{fachschaft-wiai.stuve@uni-bamberg.de}\\
% Telefon: & \href{tel:+49951863-1219}{+49 951 863-1219}\\
% Raum: & WE5/02.104
% \end{tabularx}
% }
\end{multicols}
\end{document}