Add installation verification file

This commit is contained in:
Knoch 2025-05-10 13:10:30 +02:00
parent c0fb9341d9
commit a49f819d2e
2 changed files with 68 additions and 0 deletions

1
install-verification/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.pdf

View File

@ -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}