Merge branch '36-diagbox-implementation' into 'master'

Resolve "Diagbox Implementation"

Closes #34 and #36

See merge request fastexitlane/latex-boilerplate!17
This commit is contained in:
Dominik Becker 2020-04-30 16:38:53 +00:00
commit 8f8d54a2f1
4 changed files with 39 additions and 7 deletions

View File

@ -15,11 +15,21 @@ latexmk:
- mv main.pdf main@$ci_commit_sha_short.pdf - mv main.pdf main@$ci_commit_sha_short.pdf
hunspell: hunspell_chapters:
image: tmaier/hunspell:latest image: tmaier/hunspell:latest
stage: test stage: test
script: script:
- export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
- echo $HUNSPELL_FINDINGS - echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == "" - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true allow_failure: true
hunspell_appendix:
image: tmaier/hunspell:latest
stage: test
script:
- export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
- echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == ""
allow_failure: true

13
appendix/appendix.tex Normal file
View File

@ -0,0 +1,13 @@
%!TEX root = ../main.tex
\addchap{Anhang}
\label{appendix}
% create a table of appendices here manually like this:
% \contentsline{section}{\numberline{1}AppendixTitle}{\pageref{app:appendixlabel}}{app:appendixlabel}
\newpage
% input the appendix files here like this:
% \input{appendix/appendix1.tex}
% \newpage

View File

@ -42,8 +42,20 @@
% Bessere Tabellen % Bessere Tabellen
\usepackage{tabularx} \usepackage{tabularx}
% diagonal unterteilte Tabellencellen
\usepackage{diagbox}
% Tabellenzellen über mehrere Reihen oder Spalten
\usepackage{multirow}
% Möglichkeit für Zeilenumbrüche in Tabellen
\usepackage{makecell}
% Tabellen im Querformat
\usepackage{rotating}
% mehr Zeilenabstand in Tabellen % mehr Zeilenabstand in Tabellen
\renewcommand{\arraystretch}{1.5} \renewcommand{\arraystretch}{1.15}
% Für die Befehle \toprule, \midrule und \bottomrule, z.B. in Tabellen % Für die Befehle \toprule, \midrule und \bottomrule, z.B. in Tabellen
\usepackage{booktabs} \usepackage{booktabs}
@ -184,9 +196,6 @@
\usepackage{chngcntr} \usepackage{chngcntr}
\counterwithout{footnote}{chapter} \counterwithout{footnote}{chapter}
% mehrzeilige Tabellenzellen
\usepackage{multirow}
% UTF8-Zeichen für math-Umgebung % UTF8-Zeichen für math-Umgebung
\usepackage{amsmath} \usepackage{amsmath}

View File

@ -71,7 +71,7 @@
\newpage \newpage
% appendix - uncomment if needed % appendix - uncomment if needed
% \input{additionals/appendix.tex} % \input{appendix/appendix.tex}
% \newpage % \newpage
% affirmation % affirmation