Add latex stuff
This commit is contained in:
220
manoppbible.tex
Normal file
220
manoppbible.tex
Normal file
@@ -0,0 +1,220 @@
|
||||
% **************************************************
|
||||
% Document Class Definition
|
||||
% **************************************************
|
||||
\documentclass[%
|
||||
paper=A4, % paper size --> A4 is default in Germany
|
||||
twoside=false, % onesite or twoside printing
|
||||
openright, % doublepage cleaning ends up right side
|
||||
parskip=full, % spacing value / method for paragraphs
|
||||
chapterprefix=true, % prefix for chapter marks
|
||||
11pt, % font size
|
||||
headings=normal, % size of headings
|
||||
bibliography=totoc, % include bib in toc
|
||||
listof=totoc, % include listof entries in toc
|
||||
titlepage=on, % own page for each title page
|
||||
captions=tableabove, % display table captions above the float env
|
||||
draft=false, % value for draft version
|
||||
]{scrbook}%
|
||||
|
||||
% **************************************************
|
||||
% Debug LaTeX Information
|
||||
% **************************************************
|
||||
%\listfiles
|
||||
|
||||
% **************************************************
|
||||
% Information and Commands for Reuse
|
||||
% **************************************************
|
||||
\newcommand{\thesisTitle}{ManOpp Bible}
|
||||
\newcommand{\thesisName}{Info-H1}
|
||||
\newcommand{\thesisSubject}{Bible}
|
||||
\newcommand{\thesisDate}{\today} %Sollte auf das entsprechende Datum geändert werden
|
||||
\newcommand{\thesisVersion}{Version 1.0}
|
||||
|
||||
%\newcommand{\thesisFirstReviewer}{Jane Doe}
|
||||
%\newcommand{\thesisFirstReviewerUniversity}{\protect{Clean Thesis Style University}}
|
||||
%\newcommand{\thesisFirstReviewerDepartment}{Department of Clean Thesis Style}
|
||||
|
||||
%\newcommand{\thesisSecondReviewer}{John Doe}
|
||||
%\newcommand{\thesisSecondReviewerUniversity}{\protect{Clean Thesis Style University}}
|
||||
%\newcommand{\thesisSecondReviewerDepartment}{Department of Clean Thesis Style}
|
||||
|
||||
%\newcommand{\thesisFirstSupervisor}{Jane Doe}
|
||||
%\newcommand{\thesisSecondSupervisor}{John Smith}
|
||||
|
||||
\newcommand{\thesisUniversity}{\protect{Clean Thesis Style University}}
|
||||
\newcommand{\thesisUniversityDepartment}{Department of Clean Thesis Style}
|
||||
\newcommand{\thesisUniversityInstitute}{Institut for Clean Thesis Dev}
|
||||
\newcommand{\thesisUniversityGroup}{Clean Thesis Group (CTG)}
|
||||
\newcommand{\thesisUniversityCity}{City}
|
||||
\newcommand{\thesisUniversityStreetAddress}{Street address}
|
||||
\newcommand{\thesisUniversityPostalCode}{Postal Code}
|
||||
|
||||
% **************************************************
|
||||
% Load and Configure Packages
|
||||
% **************************************************
|
||||
\usepackage[utf8]{inputenc} % defines file's character encoding
|
||||
\usepackage[ngerman]{babel} % babel system, adjust the language of the content
|
||||
\usepackage{pdflscape} % Package for single sites in landscape format
|
||||
\usepackage{makecell} % Multiline table cells and \thead
|
||||
\usepackage{eurosym} % Eurosymbol mit \euro oder \EUR{20}
|
||||
\usepackage{color, colortbl} %For table colors
|
||||
%\usepackage{subcaption} %Figures side by side (subfigures)
|
||||
\usepackage{subfig} %Figures side by side (subfigures)
|
||||
\usepackage{pifont} %Dingbats for checkmarks
|
||||
\usepackage{footnote} %For compatibility with footnote inside of tables
|
||||
\usepackage{placeins} %Set a barrier for floats with \FloatBarrier
|
||||
\usepackage{listings} %Code listings
|
||||
\usepackage{etoc} %second table of contents
|
||||
\usepackage{paralist} %compactitem for smaller itemize
|
||||
%\usepackage[final]{pdfpages} %import pdfs
|
||||
|
||||
\usepackage[ % clean thesis style
|
||||
figuresep=colon,%
|
||||
sansserif=false,%
|
||||
hangfigurecaption=false,%
|
||||
hangsection=true,%
|
||||
hangsubsection=true,%
|
||||
colorize=full,%
|
||||
colortheme=bluemagenta,%
|
||||
]{cleanthesis}
|
||||
|
||||
\hypersetup{ % setup the hyperref-package options
|
||||
pdftitle={\thesisTitle}, % - title (PDF meta)
|
||||
pdfsubject={\thesisSubject},% - subject (PDF meta)
|
||||
pdfauthor={\thesisName}, % - author (PDF meta)
|
||||
plainpages=false, % -
|
||||
colorlinks=false, % - colorize links?
|
||||
pdfborder={0 0 0}, % -
|
||||
breaklinks=true, % - allow line break inside links
|
||||
bookmarksnumbered=true, %
|
||||
bookmarksopen=true %
|
||||
}
|
||||
|
||||
|
||||
%Eigene Anpassungen
|
||||
|
||||
% Überschriften in Tabellen fett und mittig
|
||||
\renewcommand\theadalign{bc}
|
||||
\renewcommand\theadfont{\bfseries}
|
||||
\renewcommand\theadgape{\Gape[4pt]}
|
||||
\renewcommand\cellgape{\Gape[4pt]}
|
||||
|
||||
%Checkmarks
|
||||
\newcommand{\cmark}{\ding{51}}% checkmark
|
||||
\newcommand{\xmark}{\ding{55}}% x mark
|
||||
|
||||
%Footnote innerhalb von Tabellen bereitstellen
|
||||
\makesavenoteenv{tabular}
|
||||
\makesavenoteenv{table}
|
||||
|
||||
%listoffigures
|
||||
\setcounter{lofdepth}{2} % we want subfigures in the list of figures
|
||||
|
||||
% Einstellungen für Code Highlighting
|
||||
\definecolor{mygreen}{rgb}{0,0.6,0}
|
||||
\definecolor{mygray}{rgb}{0.5,0.5,0.5}
|
||||
\definecolor{mymauve}{rgb}{0.58,0,0.82}
|
||||
\lstset{
|
||||
backgroundcolor=\color{white}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}; should come as last argument
|
||||
basicstyle=\footnotesize, % the size of the fonts that are used for the code
|
||||
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
|
||||
breaklines=true, % sets automatic line breaking
|
||||
captionpos=b, % sets the caption-position to bottom
|
||||
commentstyle=\color{mygreen}, % comment style
|
||||
deletekeywords={...}, % if you want to delete keywords from the given language
|
||||
escapeinside={\%*}{*)}, % if you want to add LaTeX within your code
|
||||
extendedchars=true, % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8
|
||||
frame=single, % adds a frame around the code
|
||||
keepspaces=true, % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible)
|
||||
keywordstyle=\color{blue}, % keyword style
|
||||
language=bash, % the language of the code
|
||||
morekeywords={*,...}, % if you want to add more keywords to the set
|
||||
numbers=none, % where to put the line-numbers; possible values are (none, left, right)
|
||||
numbersep=5pt, % how far the line-numbers are from the code
|
||||
numberstyle=\tiny\color{mygray}, % the style that is used for the line-numbers
|
||||
rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
|
||||
showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces'
|
||||
showstringspaces=false, % underline spaces within strings only
|
||||
showtabs=false, % show tabs within strings adding particular underscores
|
||||
stepnumber=2, % the step between two line-numbers. If it's 1, each line will be numbered
|
||||
stringstyle=\color{mymauve}, % string literal style
|
||||
tabsize=2, % sets default tabsize to 2 spaces
|
||||
%title=\lstname % show the filename of files included with \lstinputlisting; also try caption instead of title
|
||||
}
|
||||
|
||||
%paragraph mit einem Linebreak
|
||||
\newcommand{\myparagraph}[1]{\paragraph{#1}\mbox{}\\}
|
||||
|
||||
|
||||
|
||||
% **************************************************
|
||||
% Document CONTENT
|
||||
% **************************************************
|
||||
\begin{document}
|
||||
|
||||
% --------------------------
|
||||
% rename document parts
|
||||
% --------------------------
|
||||
\renewcaptionname{ngerman}{\figurename}{Abb.}
|
||||
\renewcaptionname{ngerman}{\tablename}{Tab.}
|
||||
%\renewcaptionname{english}{\figurename}{Fig.}
|
||||
%\renewcaptionname{english}{\tablename}{Tab.}
|
||||
|
||||
% --------------------------
|
||||
% Front matter
|
||||
% --------------------------
|
||||
\pagenumbering{roman} % roman page numbing (invisible for empty page style)
|
||||
\pagestyle{empty} % no header or footers
|
||||
\input{content/titelblatt} % INCLUDE: all titlepages
|
||||
%\cleardoublepage
|
||||
|
||||
\begin{titlepage}
|
||||
\pagestyle{empty}
|
||||
\setcounter{tocdepth}{4} % define depth of toc
|
||||
\pagenumbering{gobble}
|
||||
\tableofcontents % display table of contents
|
||||
\end{titlepage}
|
||||
\cleardoublepage
|
||||
|
||||
% --------------------------
|
||||
% Body matter
|
||||
% --------------------------
|
||||
\pagenumbering{arabic} % arabic page numbering
|
||||
\setcounter{page}{3} % set page counter
|
||||
|
||||
\pagestyle{maincontentstyle} % fancy header and footer
|
||||
|
||||
%\setcounter{secnumdepth}{0} %Kapitel Nummern deaktivieren (-2 für subsections)
|
||||
\setcounter{secnumdepth}{4} % Kapitel Nummern ab hier aktivieren (3 --> Section, Subsection, Subsubsection, 4 --> Paragraph)
|
||||
\input{manoppbible/ManOpp_Uebersetzung_1912.txt}
|
||||
% --------------------------
|
||||
% Back matter
|
||||
% --------------------------
|
||||
%{%
|
||||
%\setstretch{1.1}
|
||||
%\renewcommand{\bibfont}{\normalfont\small}
|
||||
%\setlength{\biblabelsep}{0pt}
|
||||
%\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
|
||||
%\printbibliography[nottype=online]
|
||||
%\printbibliography[heading=subbibliography,title={Webseiten},type=online,prefixnumbers={@}]
|
||||
%}
|
||||
%\cleardoublepage
|
||||
|
||||
%\listoffigures
|
||||
%\cleardoublepage
|
||||
|
||||
%\listoftables
|
||||
%\cleardoublepage
|
||||
|
||||
%\input{content/colophon}
|
||||
%\cleardoublepage
|
||||
|
||||
%\input{content/declaration}
|
||||
%\clearpage
|
||||
%\newpage
|
||||
%\mbox{}
|
||||
|
||||
% **************************************************
|
||||
% End of Document CONTENT
|
||||
% **************************************************
|
||||
\end{document}
|
Reference in New Issue
Block a user