From a49f819d2ec5803934f71c1832d122ea0205966f Mon Sep 17 00:00:00 2001 From: Florian Knoch Date: Sat, 10 May 2025 13:10:30 +0200 Subject: [PATCH] Add installation verification file --- install-verification/.gitignore | 1 + install-verification/main.tex | 67 +++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 install-verification/.gitignore create mode 100644 install-verification/main.tex diff --git a/install-verification/.gitignore b/install-verification/.gitignore new file mode 100644 index 0000000..f08278d --- /dev/null +++ b/install-verification/.gitignore @@ -0,0 +1 @@ +*.pdf \ No newline at end of file diff --git a/install-verification/main.tex b/install-verification/main.tex new file mode 100644 index 0000000..52fafd2 --- /dev/null +++ b/install-verification/main.tex @@ -0,0 +1,67 @@ +\documentclass[a4paper,english]{report} + +\IfFileExists{listings-mode.tex}{ + \input{listings-mode.tex} +}{ + \newcommand\listingsmode{default} +} + +% Language and font encoding +\usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage[english,ngerman]{babel} + +% Special characters +\usepackage{eurosym, tipa, textcomp, textgreek, upgreek} + +% Mathematical symbols +\usepackage{amssymb, amsfonts, amsmath, dsfont} + +% References and URLs +\usepackage[hidelinks]{hyperref} +\usepackage{cleveref} + +% Images +\usepackage{graphicx} +\usepackage{float} + +% Text color +\usepackage[usenames,dvipsnames]{xcolor} + +% Multiple captions in one figure +\usepackage{subcaption} + +% Compact lists +\usepackage{paralist} + +% Tables +\usepackage{longtable, array, tabularx, booktabs, colortbl} + +% PDF imports +\usepackage{pdfpages} + +% ToDos +\usepackage{todonotes} +\usepackage{changes} + +% Source code listings +\usepackage{listings} +\ifthenelse{\equal{\listingsmode}{minted}}{\usepackage{minted}}{} + +% Quotes (\enquote) +\usepackage[autostyle,autopunct=false]{csquotes} + +% Literature +\usepackage{natbib} + +% Line wraps in monospace font +\usepackage[htt]{hyphenat} + +% Tracking changes +\usepackage{changes} + +\begin{document} + +It works. + +\end{document}