-
Hi is there an option to change the font used in mathmode for the whole document in the preamble? I am using the following preamble to write a thesis
Now if I am trying to write mathematical statements I am presented with the following font: I would like to change this font to the default mathmode font, but I couldn't find the option in the documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, your example is neither minimal nor gives it the output shown. The option you are looking for is \documentclass[%
english,ngerman,%
cdmath=false
]{tudscrbook}
% Kodierung, Schrift und Sprache auswählen
\usepackage{iftex}
\iftutex
\usepackage{fontspec}
\else
\usepackage[T1]{fontenc}
\fi
\usepackage
%[english] either use global or package options, not both
{babel}
%\usepackage{cmap}% moved to kernel 2021-06-01
% https://github.com/latex3/latex2e/issues/465
\begin{document}
$\psi$
\end{document} |
Beta Was this translation helpful? Give feedback.
Hi,
your example is neither minimal nor gives it the output shown. The option you are looking for is
cdmath=false
and I am wondering, why you didn't find it as it is documented in one of the very first sections (2.1.2)