blob: 707e6c6cf861fb99a61360ab009c47f8cafcf244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
% version to use latin modern, and not luximono or trying to do dinglines
\RequirePackage[T1]{fontenc}%
\RequirePackage{lmodern}% for sans fonts
\RequirePackage{textcomp}%
\AtBeginDocument{%
\let\save@textcurrency\textcurrency
\def\textcurrency{%
{%
\fontfamily{lmr}\selectfont
\save@textcurrency
}%
}%
}
\boldmathavailfalse
\DeclareRobustCommand{\$}{\char`\$}% otherwise tries to load tctt....
\let\Dings\relax
\DeclareRobustCommand\acro[1]{#1\@{}}
|