mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-01-11 15:33:02 +00:00
774c5e7897
his PR introduces several enhancements to the Eisvogel LaTeX template: - **Custom Styling:** Added custom colors for headings, captions, blockquotes, and listings. - **New Commands:** Added \customheading and \customcaption for flexible text styling. - **Title Page and Background:** Added support for custom background images on the title page and all pages. - **Layout Improvements:** Enhanced handling of paragraph and list spacing for better readability. ### Detailed Changes - **LaTeX Template (eisvogel.latex):** - Defined new color variables for consistent styling. - Added commands for custom headings and captions. - Enhanced layout options for title pages. - Improved spacing and formatting for paragraphs and lists.
648 lines
18 KiB
TeX
648 lines
18 KiB
TeX
%%
|
|
% Copyright (c) 2017 - 2023, Pascal Wagler;
|
|
% Copyright (c) 2014 - 2023, John MacFarlane
|
|
%
|
|
% All rights reserved.
|
|
%
|
|
% Redistribution and use in source and binary forms, with or without
|
|
% modification, are permitted provided that the following conditions
|
|
% are met:
|
|
%
|
|
% - Redistributions of source code must retain the above copyright
|
|
% notice, this list of conditions and the following disclaimer.
|
|
%
|
|
% - Redistributions in binary form must reproduce the above copyright
|
|
% notice, this list of conditions and the following disclaimer in the
|
|
% documentation and/or other materials provided with the distribution.
|
|
%
|
|
% - Neither the name of John MacFarlane nor the names of other
|
|
% contributors may be used to endorse or promote products derived
|
|
% from this software without specific prior written permission.
|
|
%
|
|
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
% "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
% LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
% FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
% COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
% INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
% BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
% LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
% CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
% ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
% POSSIBILITY OF SUCH DAMAGE.
|
|
%%
|
|
|
|
%%
|
|
% This is the Eisvogel pandoc LaTeX template.
|
|
%
|
|
% For usage information and examples visit the official GitHub page:
|
|
% https://github.com/Wandmalfarbe/pandoc-latex-template
|
|
%%
|
|
|
|
% Options for packages loaded elsewhere
|
|
\PassOptionsToPackage{unicode$for(hyperrefoptions)$,$hyperrefoptions$$endfor$}{hyperref}
|
|
\PassOptionsToPackage{hyphens}{url}
|
|
\PassOptionsToPackage{dvipsnames,svgnames,x11names,table}{xcolor}
|
|
$if(CJKmainfont)$
|
|
\PassOptionsToPackage{space}{xeCJK}
|
|
$endif$
|
|
%
|
|
\documentclass[
|
|
$if(fontsize)$
|
|
$fontsize$,
|
|
$endif$
|
|
$if(papersize)$
|
|
$papersize$paper,
|
|
$else$
|
|
paper=a4,
|
|
$endif$
|
|
$if(beamer)$
|
|
ignorenonframetext,
|
|
$if(handout)$
|
|
handout,
|
|
$endif$
|
|
$if(aspectratio)$
|
|
aspectratio=$aspectratio$,
|
|
$endif$
|
|
$endif$
|
|
$for(classoption)$
|
|
$classoption$$sep$,
|
|
$endfor$
|
|
,captions=tableheading
|
|
]{$if(beamer)$$documentclass$$else$$if(book)$scrbook$else$scrartcl$endif$$endif$}
|
|
$if(beamer)$
|
|
$if(background-image)$
|
|
\usebackgroundtemplate{%
|
|
\includegraphics[width=\paperwidth]{$background-image$}%
|
|
}
|
|
% In beamer background-image does not work well when other images are used, so this is the workaround
|
|
\pgfdeclareimage[width=\paperwidth,height=\paperheight]{background}{$background-image$}
|
|
\usebackgroundtemplate{\pgfuseimage{background}}
|
|
$endif$
|
|
\usepackage{pgfpages}
|
|
\setbeamertemplate{caption}[numbered]
|
|
\setbeamertemplate{caption label separator}{: }
|
|
\setbeamercolor{caption name}{fg=normal text.fg}
|
|
\beamertemplatenavigationsymbols$if(navigation)$$navigation$$else$empty$endif$
|
|
$for(beameroption)$
|
|
\setbeameroption{$beameroption$}
|
|
$endfor$
|
|
% Prevent slide breaks in the middle of a paragraph
|
|
\widowpenalties 1 10000
|
|
\raggedbottom
|
|
$if(section-titles)$
|
|
\setbeamertemplate{part page}{
|
|
\centering
|
|
\begin{beamercolorbox}[sep=16pt,center]{part title}
|
|
\usebeamerfont{part title}\insertpart\par
|
|
\end{beamercolorbox}
|
|
}
|
|
\setbeamertemplate{section page}{
|
|
\centering
|
|
\begin{beamercolorbox}[sep=12pt,center]{part title}
|
|
\usebeamerfont{section title}\insertsection\par
|
|
\end{beamercolorbox}
|
|
}
|
|
\setbeamertemplate{subsection page}{
|
|
\centering
|
|
\begin{beamercolorbox}[sep=8pt,center]{part title}
|
|
\usebeamerfont{subsection title}\insertsubsection\par
|
|
\end{beamercolorbox}
|
|
}
|
|
\AtBeginPart{
|
|
\frame{\partpage}
|
|
}
|
|
\AtBeginSection{
|
|
\ifbibliography
|
|
\else
|
|
\frame{\sectionpage}
|
|
\fi
|
|
}
|
|
\AtBeginSubsection{
|
|
\frame{\subsectionpage}
|
|
}
|
|
$endif$
|
|
$endif$
|
|
$if(beamerarticle)$
|
|
\usepackage{beamerarticle} % needs to be loaded first
|
|
$endif$
|
|
\usepackage{amsmath,amssymb}
|
|
$if(linestretch)$
|
|
\usepackage{setspace}
|
|
$else$
|
|
% Use setspace anyway because we change the default line spacing.
|
|
% The spacing is changed early to affect the titlepage and the TOC.
|
|
\usepackage{setspace}
|
|
\setstretch{1.2}
|
|
$endif$
|
|
\usepackage{iftex}
|
|
\ifPDFTeX
|
|
\usepackage[$if(fontenc)$$fontenc$$else$T1$endif$]{fontenc}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{textcomp} % provide euro and other symbols
|
|
\else % if luatex or xetex
|
|
$if(mathspec)$
|
|
\ifXeTeX
|
|
\usepackage{mathspec} % this also loads fontspec
|
|
\else
|
|
\usepackage{unicode-math} % this also loads fontspec
|
|
\fi
|
|
$else$
|
|
\usepackage{unicode-math} % this also loads fontspec
|
|
$endif$
|
|
\defaultfontfeatures{Scale=MatchLowercase}$-- must come before Beamer theme
|
|
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
|
|
\fi
|
|
$if(fontfamily)$
|
|
$else$
|
|
$-- Set default font before Beamer theme so the theme can override it
|
|
\usepackage{lmodern}
|
|
$endif$
|
|
$-- Set Beamer theme before user font settings so they can override theme
|
|
$if(beamer)$
|
|
$if(theme)$
|
|
\usetheme[$for(themeoptions)$$themeoptions$$sep$,$endfor$]{$theme$}
|
|
$endif$
|
|
$if(colortheme)$
|
|
\usecolortheme{$colortheme$}
|
|
$endif$
|
|
$if(fonttheme)$
|
|
\usefonttheme{$fonttheme$}
|
|
$endif$
|
|
$if(mainfont)$
|
|
\usefonttheme{serif} % use mainfont rather than sansfont for slide text
|
|
$endif$
|
|
$if(innertheme)$
|
|
\useinnertheme{$innertheme$}
|
|
$endif$
|
|
$if(outertheme)$
|
|
\useoutertheme{$outertheme$}
|
|
$endif$
|
|
$endif$
|
|
$-- User font settings (must come after default font and Beamer theme)
|
|
$if(fontfamily)$
|
|
\usepackage[$for(fontfamilyoptions)$$fontfamilyoptions$$sep$,$endfor$]{$fontfamily$}
|
|
$endif$
|
|
\ifPDFTeX\else
|
|
% xetex/luatex font selection
|
|
$if(mainfont)$
|
|
\setmainfont[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$}
|
|
$endif$
|
|
$if(sansfont)$
|
|
\setsansfont[$for(sansfontoptions)$$sansfontoptions$$sep$,$endfor$]{$sansfont$}
|
|
$endif$
|
|
$if(monofont)$
|
|
\setmonofont[$for(monofontoptions)$$monofontoptions$$sep$,$endfor$]{$monofont$}
|
|
$endif$
|
|
$for(fontfamilies)$
|
|
\newfontfamily{$fontfamilies.name$}[$for(fontfamilies.options)$$fontfamilies.options$$sep$,$endfor$]{$fontfamilies.font$}
|
|
$endfor$
|
|
$if(mathfont)$
|
|
$if(mathspec)$
|
|
\ifXeTeX
|
|
\setmathfont(Digits,Latin,Greek)[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$}
|
|
\else
|
|
\setmathfont[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$}
|
|
\fi
|
|
$else$
|
|
\setmathfont[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$}
|
|
$endif$
|
|
$endif$
|
|
$if(CJKmainfont)$
|
|
\ifXeTeX
|
|
\usepackage{xeCJK}
|
|
\setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$}
|
|
$if(CJKsansfont)$
|
|
\setCJKsansfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKsansfont$}
|
|
$endif$
|
|
$if(CJKmonofont)$
|
|
\setCJKmonofont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmonofont$}
|
|
$endif$
|
|
\fi
|
|
$endif$
|
|
$if(luatexjapresetoptions)$
|
|
\ifLuaTeX
|
|
\usepackage[$for(luatexjapresetoptions)$$luatexjapresetoptions$$sep$,$endfor$]{luatexja-preset}
|
|
\fi
|
|
$endif$
|
|
$if(CJKmainfont)$
|
|
\ifLuaTeX
|
|
\usepackage[$for(luatexjafontspecoptions)$$luatexjafontspecoptions$$sep$,$endfor$]{luatexja-fontspec}
|
|
\setmainjfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$}
|
|
\fi
|
|
$endif$
|
|
\fi
|
|
$if(zero-width-non-joiner)$
|
|
%% Support for zero-width non-joiner characters.
|
|
\makeatletter
|
|
\def\zerowidthnonjoiner{%
|
|
% Prevent ligatures and adjust kerning, but still support hyphenating.
|
|
\texorpdfstring{%
|
|
\TextOrMath{\nobreak\discretionary{-}{}{\kern.03em}%
|
|
\ifvmode\else\nobreak\hskip\z@skip\fi}{}%
|
|
}{}%
|
|
}
|
|
\makeatother
|
|
\ifPDFTeX
|
|
\DeclareUnicodeCharacter{200C}{\zerowidthnonjoiner}
|
|
\else
|
|
\catcode`^^^^200c=\active
|
|
\protected\def ^^^^200c{\zerowidthnonjoiner}
|
|
\fi
|
|
%% End of ZWNJ support
|
|
$endif$
|
|
% Use upquote if available, for straight quotes in verbatim environments
|
|
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
|
|
\IfFileExists{microtype.sty}{% use microtype if available
|
|
\usepackage[$for(microtypeoptions)$$microtypeoptions$$sep$,$endfor$]{microtype}
|
|
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
|
|
}{}
|
|
$if(indent)$
|
|
$else$
|
|
\makeatletter
|
|
\@ifundefined{KOMAClassName}{% if non-KOMA class
|
|
\IfFileExists{parskip.sty}{%
|
|
\usepackage{parskip}
|
|
}{% else
|
|
\setlength{\parindent}{0pt}
|
|
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
|
|
}{% if KOMA class
|
|
\KOMAoptions{parskip=half}}
|
|
\makeatother
|
|
$endif$
|
|
$if(verbatim-in-note)$
|
|
\usepackage{fancyvrb}
|
|
$endif$
|
|
\usepackage{xcolor}
|
|
\definecolor{default-linkcolor}{HTML}{A50000}
|
|
\definecolor{default-filecolor}{HTML}{A50000}
|
|
\definecolor{default-citecolor}{HTML}{4077C0}
|
|
\definecolor{default-urlcolor}{HTML}{4077C0}
|
|
$if(footnotes-pretty)$
|
|
% load footmisc in order to customize footnotes (footmisc has to be loaded before hyperref, cf. https://tex.stackexchange.com/a/169124/144087)
|
|
\usepackage[hang,flushmargin,bottom,multiple]{footmisc}
|
|
\setlength{\footnotemargin}{0.8em} % set space between footnote nr and text
|
|
\setlength{\footnotesep}{\baselineskip} % set space between multiple footnotes
|
|
\setlength{\skip\footins}{0.3cm} % set space between page content and footnote
|
|
\setlength{\footskip}{0.9cm} % set space between footnote and page bottom
|
|
$endif$
|
|
$if(geometry)$
|
|
$if(beamer)$
|
|
\geometry{$for(geometry)$$geometry$$sep$,$endfor$}
|
|
$else$
|
|
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
|
|
$endif$
|
|
$else$
|
|
$if(beamer)$
|
|
$else$
|
|
\usepackage[margin=2.5cm,includehead=true,includefoot=true,centering,$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
|
|
$endif$
|
|
$endif$
|
|
$if(titlepage-logo)$
|
|
\usepackage[export]{adjustbox}
|
|
\usepackage{graphicx}
|
|
$endif$
|
|
$if(beamer)$
|
|
\newif\ifbibliography
|
|
$endif$
|
|
$if(listings)$
|
|
\usepackage{listings}
|
|
\newcommand{\passthrough}[1]{#1}
|
|
\lstset{defaultdialect=[5.3]Lua}
|
|
\lstset{defaultdialect=[x86masm]Assembler}
|
|
$endif$
|
|
$if(listings-no-page-break)$
|
|
\usepackage{etoolbox}
|
|
\BeforeBeginEnvironment{lstlisting}{\par\noindent\begin{minipage}{\linewidth}}
|
|
\AfterEndEnvironment{lstlisting}{\end{minipage}\par\addvspace{\topskip}}
|
|
$endif$
|
|
$if(lhs)$
|
|
\lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{}
|
|
$endif$
|
|
$if(highlighting-macros)$
|
|
$highlighting-macros$
|
|
|
|
% Workaround/bugfix from jannick0.
|
|
% See https://github.com/jgm/pandoc/issues/4302#issuecomment-360669013)
|
|
% or https://github.com/Wandmalfarbe/pandoc-latex-template/issues/2
|
|
%
|
|
% Redefine the verbatim environment 'Highlighting' to break long lines (with
|
|
% the help of fvextra). Redefinition is necessary because it is unlikely that
|
|
% pandoc includes fvextra in the default template.
|
|
\usepackage{fvextra}
|
|
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{breaklines,fontsize=$if(code-block-font-size)$$code-block-font-size$$else$\small$endif$,commandchars=\\\{\}}
|
|
|
|
$endif$
|
|
$if(tables)$
|
|
\usepackage{longtable,booktabs,array}
|
|
$if(multirow)$
|
|
\usepackage{multirow}
|
|
$endif$
|
|
\usepackage{calc} % for calculating minipage widths
|
|
$if(beamer)$
|
|
\usepackage{caption}
|
|
% Make caption package work with longtable
|
|
\makeatletter
|
|
\def\fnum@table{\tablename~\thetable}
|
|
\makeatother
|
|
$else$
|
|
% Correct order of tables after \paragraph or \subparagraph
|
|
\usepackage{etoolbox}
|
|
\makeatletter
|
|
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
|
|
\makeatother
|
|
% Allow footnotes in longtable head/foot
|
|
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
|
|
\makesavenoteenv{longtable}
|
|
$endif$
|
|
$endif$
|
|
% add backlinks to footnote references, cf. https://tex.stackexchange.com/questions/302266/make-footnote-clickable-both-ways
|
|
$if(footnotes-disable-backlinks)$
|
|
$else$
|
|
\usepackage{footnotebackref}
|
|
$endif$
|
|
$if(graphics)$
|
|
\usepackage{graphicx}
|
|
\makeatletter
|
|
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
|
|
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
|
|
\makeatother
|
|
% Scale images if necessary, so that they will not overflow the page
|
|
% margins by default, and it is still possible to overwrite the defaults
|
|
% using explicit options in \includegraphics[width, height, ...]{}
|
|
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
|
|
% Set default figure placement to htbp
|
|
\makeatletter
|
|
% Make use of float-package and set default placement for figures to H.
|
|
% The option H means 'PUT IT HERE' (as opposed to the standard h option which means 'You may put it here if you like').
|
|
\usepackage{float}
|
|
\floatplacement{figure}{$if(float-placement-figure)$$float-placement-figure$$else$H$endif$}
|
|
\makeatother
|
|
$endif$
|
|
$if(svg)$
|
|
\usepackage{svg}
|
|
$endif$
|
|
$if(strikeout)$
|
|
$-- also used for underline
|
|
\ifLuaTeX
|
|
\usepackage{luacolor}
|
|
\usepackage[soul]{lua-ul}
|
|
\else
|
|
\usepackage{soul}
|
|
$if(CJKmainfont)$
|
|
\ifXeTeX
|
|
% soul's \st doesn't work for CJK:
|
|
\usepackage{xeCJKfntef}
|
|
\renewcommand{\st}[1]{\sout{#1}}
|
|
\fi
|
|
$endif$
|
|
\fi
|
|
$endif$
|
|
\setlength{\emergencystretch}{3em} % prevent overfull lines
|
|
\providecommand{\tightlist}{%
|
|
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
|
$if(numbersections)$
|
|
\setcounter{secnumdepth}{$if(secnumdepth)$$secnumdepth$$else$5$endif$}
|
|
$else$
|
|
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering
|
|
$endif$
|
|
$if(verbatim-in-note)$
|
|
\VerbatimFootnotes % allow verbatim text in footnotes
|
|
$endif$
|
|
$if(links-as-notes)$
|
|
% Make links footnotes instead of hotlinks:
|
|
\renewcommand{\href}[2]{#2\footnote{\url{#1}}}
|
|
$endif$
|
|
\usepackage{hyperref}
|
|
\hypersetup{
|
|
$if(title-meta)$
|
|
pdftitle={$title-meta$},
|
|
$endif$
|
|
$if(author-meta)$
|
|
pdfauthor={$author-meta$},
|
|
$endif$
|
|
$if(subject)$
|
|
pdfsubject={$subject$},
|
|
$endif$
|
|
$if(keywords)$
|
|
pdfkeywords={$for(keywords)$$keywords$$sep$, $endfor$},
|
|
$endif$
|
|
$if(colorlinks)$
|
|
colorlinks=true,
|
|
linkcolor=$if(linkcolor)$$linkcolor$$else$default-linkcolor$endif$,
|
|
filecolor=$if(filecolor)$$filecolor$$else$default-filecolor$endif$,
|
|
citecolor=$if(citecolor)$$citecolor$$else$default-citecolor$endif$,
|
|
urlcolor=$if(urlcolor)$$urlcolor$$else$default-urlcolor$endif$,
|
|
$else$
|
|
hidelinks,
|
|
$endif$
|
|
breaklinks=true,
|
|
pdfcreator={LaTeX via pandoc with the Eisvogel template}}
|
|
\urlstyle{same} % don't use monospace font for urls
|
|
$if(geometry)$
|
|
$if(beamer)$
|
|
\geometry{$for(geometry)$$geometry$$sep$,$endfor$}
|
|
$else$
|
|
\usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
|
|
$endif$
|
|
$else$
|
|
$if(beamer)$
|
|
$else$
|
|
\usepackage[margin=2.5cm,includehead=true,includefoot=true,centering]{geometry}
|
|
$endif$
|
|
$endif$
|
|
|
|
%%
|
|
%% begin titlepage
|
|
%%
|
|
$if(titlepage)$
|
|
\usepackage{pagecolor}
|
|
\usepackage{afterpage}
|
|
$if(titlepage-background)$
|
|
\usepackage{tikz}
|
|
$endif$
|
|
\newcommand{\colorRule}[3][black]{\textcolor[HTML]{#1}{\rule{#2}{#3}}}
|
|
\newcommand{\HRule}{\colorRule[2e6c80]{\textwidth}{1pt}}
|
|
\newcommand{\HRuleHeight}[1]{\colorRule[2e6c80]{\textwidth}{#1}}
|
|
\newcommand{\HRuleColor}[2]{\colorRule[#1]{\textwidth}{#2}}
|
|
\newcommand{\HRuleWidthColor}[3]{\colorRule[#2]{#3}{#1}}
|
|
$if(titlepage-color)$
|
|
\definecolor{titlepage-color}{HTML}{$titlepage-color$}
|
|
\newpagecolor{titlepage-color}\afterpage{\restorepagecolor}
|
|
$endif$
|
|
$if(titlepage-text-color)$
|
|
\definecolor{titlepage-text-color}{HTML}{$titlepage-text-color$}
|
|
\else
|
|
\definecolor{titlepage-text-color}{HTML}{5F5F5F}
|
|
$endif$
|
|
$if(titlepage-rule-color)$
|
|
\definecolor{titlepage-rule-color}{HTML}{$titlepage-rule-color$}
|
|
\else
|
|
\definecolor{titlepage-rule-color}{HTML}{2e6c80}
|
|
$endif$
|
|
\newgeometry{left=0cm,right=0cm,bottom=0cm}
|
|
\begin{titlepage}
|
|
\thispagestyle{empty}
|
|
$if(titlepage-background)$
|
|
\tikz[remember picture,overlay] \node[inner sep=0pt] at (current page.center){\includegraphics[width=\paperwidth,height=\paperheight]{$titlepage-background$}};
|
|
$endif$
|
|
\noindent
|
|
\begin{minipage}[c][\textheight]{1\textwidth}
|
|
\centering
|
|
\vspace*{3cm}
|
|
\begingroup
|
|
\color{titlepage-text-color}
|
|
\HRule\\[0.4cm]
|
|
{\huge\textbf{$title$}}\\
|
|
\HRule\\[0.5cm]
|
|
$if(subtitle)$
|
|
{\Large $subtitle$}\\[0.5cm]
|
|
$endif$
|
|
$if(titlepage-logo)$
|
|
\includegraphics[width=$if(logo-width)$$logo-width$$else$10cm$endif$]{$titlepage-logo$}\\[0.5cm]
|
|
$endif$
|
|
$if(affiliation)$
|
|
{\large $for(affiliation)$$affiliation$$sep$\\[1em] $endfor$}\\
|
|
$endif$
|
|
\vfill
|
|
$if(author)$
|
|
{\large $for(author)$$author$$sep$\\[1em] $endfor$}\\[1em]
|
|
$endif$
|
|
{\large $date$}\\[1em]
|
|
\vfill
|
|
\endgroup
|
|
\end{minipage}
|
|
\end{titlepage}
|
|
\restoregeometry
|
|
$endif$
|
|
%%
|
|
%% end titlepage
|
|
%%
|
|
|
|
%%
|
|
%% begin custom colors and commands
|
|
%%
|
|
|
|
% Define custom colors
|
|
\definecolor{heading-color}{RGB}{40,40,40}
|
|
\definecolor{caption-color}{HTML}{777777}
|
|
\definecolor{blockquote-border}{RGB}{221,221,221}
|
|
\definecolor{blockquote-text}{RGB}{119,119,119}
|
|
|
|
% Define custom commands
|
|
\newcommand{\customheading}[1]{\color{heading-color}\textbf{#1}}
|
|
\newcommand{\customcaption}[1]{\color{caption-color}\small\textit{#1}}
|
|
|
|
%%
|
|
%% end custom colors and commands
|
|
%%
|
|
|
|
%%
|
|
%% begin document
|
|
%%
|
|
|
|
$if(has-frontmatter)$
|
|
\frontmatter
|
|
$endif$
|
|
$if(title)$
|
|
$if(beamer)$
|
|
\frame{\titlepage}
|
|
$endif$
|
|
$if(abstract)$
|
|
\begin{abstract}
|
|
$abstract$
|
|
\end{abstract}
|
|
$endif$
|
|
$endif$
|
|
|
|
$if(first-chapter)$
|
|
\setcounter{chapter}{$first-chapter$}
|
|
\addtocounter{chapter}{-1}
|
|
$endif$
|
|
|
|
$for(include-before)$
|
|
$include-before$
|
|
|
|
$endfor$
|
|
$if(toc)$
|
|
$if(toc-title)$
|
|
\renewcommand*\contentsname{$toc-title$}
|
|
$endif$
|
|
$if(beamer)$
|
|
\begin{frame}
|
|
$if(toc-title)$
|
|
\frametitle{$toc-title$}
|
|
$endif$
|
|
\tableofcontents[hideallsubsections]
|
|
\end{frame}
|
|
$if(toc-own-page)$
|
|
\newpage
|
|
$endif$
|
|
$else$
|
|
{
|
|
$if(colorlinks)$
|
|
\hypersetup{linkcolor=$if(toccolor)$$toccolor$$else$default-linkcolor$endif$}
|
|
$endif$
|
|
\setcounter{tocdepth}{$if(toc-depth)$$toc-depth$$else$3$endif$}
|
|
\tableofcontents
|
|
$if(toc-own-page)$
|
|
\newpage
|
|
$endif$
|
|
}
|
|
$endif$
|
|
$endif$
|
|
$if(lot)$
|
|
\listoftables
|
|
$endif$
|
|
$if(lof)$
|
|
\listoffigures
|
|
$endif$
|
|
$if(linestretch)$
|
|
\setstretch{$linestretch$}
|
|
$endif$
|
|
$if(has-frontmatter)$
|
|
\mainmatter
|
|
$endif$
|
|
$body$
|
|
|
|
$if(has-frontmatter)$
|
|
\backmatter
|
|
$endif$
|
|
$if(natbib)$
|
|
$if(bibliography)$
|
|
$if(biblio-title)$
|
|
$if(has-chapters)$
|
|
\renewcommand\bibname{$biblio-title$}
|
|
$else$
|
|
\renewcommand\refname{$biblio-title$}
|
|
$endif$
|
|
$endif$
|
|
$if(beamer)$
|
|
\begin{frame}[allowframebreaks]{$biblio-title$}
|
|
\bibliographytrue
|
|
$endif$
|
|
\bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$}
|
|
$if(beamer)$
|
|
\end{frame}
|
|
$endif$
|
|
|
|
$endif$
|
|
$endif$
|
|
$if(biblatex)$
|
|
$if(beamer)$
|
|
\begin{frame}[allowframebreaks]{$biblio-title$}
|
|
\bibliographytrue
|
|
\printbibliography[heading=none]
|
|
\end{frame}
|
|
$else$
|
|
\printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$
|
|
$endif$
|
|
|
|
$endif$
|
|
$for(include-after)$
|
|
$include-after$
|
|
|
|
$endfor$
|
|
\end{document}
|