cleared repeated packages

This commit is contained in:
Hedongliang Liu 2025-08-20 18:21:10 +02:00 committed by Andrej Rode
parent a80bde5b71
commit 8dc64784bc
3 changed files with 30 additions and 44 deletions

View File

@ -92,10 +92,11 @@
\LoadClass[17pt,utf8,onlytextwidth]{beamer} \LoadClass[17pt,utf8,onlytextwidth]{beamer}
% \renewcommand{\normalsize}{20pt} % \renewcommand{\normalsize}{20pt}
\renewcommand{\normalsize}{\fontsize{18pt}{24pt}\selectfont} \renewcommand{\normalsize}{\fontsize{18pt}{24pt}\selectfont}
% Babel-Paket wird nur bei deutscher Sprache benötigt % If German language is used, the babel package is required.
\ifgerman % For English, it is not required, but it ensures consistent hyphenation and date formats.
\RequirePackage[ngerman]{babel} % \ifgerman
\fi \RequirePackage[english, ngerman]{babel}
% \fi
\RequirePackage{csquotes} \RequirePackage{csquotes}
\RequirePackage{hyperref} \RequirePackage{hyperref}
\RequirePackage[absolute,overlay]{textpos} \RequirePackage[absolute,overlay]{textpos}

View File

@ -121,6 +121,10 @@ https://sdq.kastel.kit.edu/wiki/BibTeX-Literaturlisten
--------------- ---------------
Document class for CEL presentations in KIT design. Document class for CEL presentations in KIT design.
`packages.tex`
--------------
TeX file to put all the necessary packages. Current version inherient from the old (before 2025) CEL beamer template.
`logos/` `logos/`
-------- --------
This directory contains the KIT, CEL, and funding logos in various color variants as PDF. This directory contains the KIT, CEL, and funding logos in various color variants as PDF.

View File

@ -1,49 +1,34 @@
%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%
% Usepackages % Usepackages
%
%\usepackage[ngerman]{babel}
%\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amssymb,amsthm}
\usepackage{array}
\usepackage{multicol}
\usepackage{lipsum}
\usepackage[overlay,absolute]{textpos}
\usepackage{tabularx}
% importing packages for encoding and fonts % importing packages for encoding and fonts
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} \usepackage[utf8]{inputenc}
\usefonttheme[onlymath]{serif} \usefonttheme[onlymath]{serif}
\usepackage[english,ngerman]{babel} % Math stuff
\usepackage{amsmath,amssymb,amsthm}
% math stuff
\usepackage{amssymb,amsthm}
\usepackage{bbm} \usepackage{bbm}
\usepackage{dsfont} % more blackboard bold symbols like digits and lowercase letters
\usepackage{bm} % bold math symbols
\usepackage{array} \usepackage{array}
\usepackage{multicol} \usepackage{multicol}
\usepackage{lipsum} \usepackage{lipsum}
\usepackage{tabularx}
\usepackage[overlay,absolute]{textpos} \usepackage{xkeyval} % for defining keys in commands and environments
%\usepackage[absolute]{textpos}
\usepackage{amsmath,amssymb}
\usepackage{xkeyval}
\usepackage{todonotes} \usepackage{todonotes}
\presetkeys{todonotes}{inline}{} \presetkeys{todonotes}{inline}{} % make todos inline by default
\presetkeys{todonotes}{size=\tiny}{} \presetkeys{todonotes}{size=\tiny}{} % make todos font smaller by default
\presetkeys{todonotes}{color=kit-yellow50}{} % make todos box color yellow by default
\presetkeys{todonotes}{textcolor=kit-red}{} % make todos textcolor red by default
% Links in pdf % Links in pdf
\usepackage[depth=4,open,openlevel=2]{bookmark} \usepackage[depth=4,open,openlevel=2]{bookmark}
% Um bei Listen erklärenden Text in einem gleichmäßigen Abstand zu setzen: % Um bei Listen erklärenden Text in einem gleichmäßigen Abstand zu setzen:
% In order to set explanatory text in a uniform distance in lists:
\usepackage{makebox} \usepackage{makebox}
% SI units: % SI units:
@ -54,16 +39,14 @@
% Tables % Tables
\usepackage{booktabs} \usepackage{booktabs}
% For cancelling (errata) \usepackage{comment} % enable the envioment \begin{comment}
\usepackage{comment}
\usepackage{soul}
\usepackage{cancel} % For emphasizing or cancelling
\usepackage{soul} % for text highlighting, \hl{highlight}, \ul{underline}, \st{strikeout}
\usepackage[normalem]{ulem}
\usepackage{cancel} % draw diagonal lines through math expressions, e.g. \cancel{a+b}, \bcancel{a+b}, \xcancel{a+b} for different styles
% bold math for vector notation %\usepackage{adjustbox} % allows to scale, resize, trim, clip, rotate, and frame content
\usepackage{bm}
\usepackage{xifthen}
%\usepackage{adjustbox}
% TikZ and stuff % TikZ and stuff
\usepackage{tikz, pgfplots} \usepackage{tikz, pgfplots}
@ -78,17 +61,15 @@
%\tikzexternalize[prefix=TikzPictures/] %\tikzexternalize[prefix=TikzPictures/]
\usepackage{dsfont}
% Index finger % Index finger
\usepackage{bbding} \usepackage{bbding} % provvides decorative symbols like \Checkmark, \Cross, \ThumbsUp, \ThumbsDown, \Index, \PointingHand
% ifthenelse % ifthenelse
\usepackage{ifthen} \usepackage{ifthen} % basic logics
\usepackage{xifthen} % extended logics, e.g. \ifempty{arg}{true}{false}
\usepackage[normalem]{ulem}
% \mleft( and \mright) to avoid weird spaces before functions % \mleft( and \mright) to avoid weird spaces before functions
\usepackage{mleftright} \usepackage{mleftright}