58 lines
1.0 KiB
TeX
58 lines
1.0 KiB
TeX
% !TEX root = ../HSRTReport.cls
|
|
% ==== Core Packages ====
|
|
% Essential LaTeX packages for basic functionality
|
|
|
|
% Calculation package
|
|
\RequirePackage{calc}
|
|
|
|
% Floating point calculations
|
|
\RequirePackage[nomessages]{fp}% http://ctan.org/pkg/fp
|
|
\RequirePackage{xfp}
|
|
|
|
% Key-value interface
|
|
\RequirePackage{keyval}
|
|
|
|
% Conditional commands
|
|
\RequirePackage{ifthen}
|
|
|
|
% Command patching
|
|
\RequirePackage{etoolbox}
|
|
|
|
% Array handling
|
|
\RequirePackage{arrayjobx}
|
|
|
|
% Environment definitions
|
|
\RequirePackage{environ}
|
|
|
|
% Hook management
|
|
\RequirePackage{bophook}
|
|
|
|
% Counter manipulation
|
|
\RequirePackage{chngcntr}
|
|
|
|
% Extended color support
|
|
\RequirePackage{xcolor}
|
|
\RequirePackage{color}
|
|
|
|
% Graphics support
|
|
\RequirePackage{graphicx}
|
|
|
|
% SVG support
|
|
\RequirePackage{svg}
|
|
|
|
% Transparent images
|
|
\RequirePackage{transparent}
|
|
|
|
% Font encoding and selection
|
|
\RequirePackage[T1]{fontenc}
|
|
\RequirePackage{fontspec}
|
|
|
|
% Modern Latin fonts
|
|
\RequirePackage{lmodern}
|
|
|
|
% Arbitrary font sizes
|
|
\RequirePackage{anyfontsize}
|
|
|
|
% Silence package warnings
|
|
\RequirePackage{silence}
|