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:
commit
8f8d54a2f1
|
@ -15,7 +15,7 @@ latexmk:
|
|||
- mv main.pdf main@$ci_commit_sha_short.pdf
|
||||
|
||||
|
||||
hunspell:
|
||||
hunspell_chapters:
|
||||
image: tmaier/hunspell:latest
|
||||
stage: test
|
||||
script:
|
||||
|
@ -23,3 +23,13 @@ hunspell:
|
|||
- echo $HUNSPELL_FINDINGS
|
||||
- test "$HUNSPELL_FINDINGS" == ""
|
||||
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
13
appendix/appendix.tex
Normal 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
|
17
config.tex
17
config.tex
|
@ -42,8 +42,20 @@
|
|||
% Bessere Tabellen
|
||||
\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
|
||||
\renewcommand{\arraystretch}{1.5}
|
||||
\renewcommand{\arraystretch}{1.15}
|
||||
|
||||
% Für die Befehle \toprule, \midrule und \bottomrule, z.B. in Tabellen
|
||||
\usepackage{booktabs}
|
||||
|
@ -184,9 +196,6 @@
|
|||
\usepackage{chngcntr}
|
||||
\counterwithout{footnote}{chapter}
|
||||
|
||||
% mehrzeilige Tabellenzellen
|
||||
\usepackage{multirow}
|
||||
|
||||
% UTF8-Zeichen für math-Umgebung
|
||||
\usepackage{amsmath}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user