如何恢复 sty 文件中数学方程式的 LaTeX 标准字体?

如何恢复 sty 文件中数学方程式的 LaTeX 标准字体?

我使用的是经典论文的样式文件,可以下载在此链接中并可以查看在此链接中。除了用于数学方程式的字体之外,我喜欢此样式文件的一切。我如何修改以classicthesis.sty使数学方程式的打印效果与标准 LaTeX 数学相同?

答案1

这是我从这个简单的例子中得到的:

\documentclass[11pt,a5paper,footinclude=true,headinclude=true]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[linedheaders,parts,pdfspacing]{classicthesis}
\begin{document}
This is inline math $a+b=c$ and a displayed formula follows:
\[
\int_{-\infty}^{\infty}e^{-x^2}\,dx=\sqrt{\pi}
\]
\end{document}

在此处输入图片描述

用于数学的字体是 MathPaZo,它是专门为配合默认的 Palatino 文本字体而定制的。

如果我按照以下方式更改示例

\documentclass[11pt,a5paper,footinclude=true,headinclude=true]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[linedheaders,parts,pdfspacing,eulermath]{classicthesis}
\begin{document}
This is inline math $a+b=c$ and a displayed formula follows:
\[
\int_{-\infty}^{\infty}e^{-x^2}\,dx=\sqrt{\pi}
\]
\end{document}

(注意eulermath选项),我得到了欧拉数学公式。

在此处输入图片描述

如果您lmodern在之后加载classicthesis

\documentclass[11pt,a5paper,footinclude=true,headinclude=true]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[linedheaders,parts,pdfspacing]{classicthesis}
\usepackage{lmodern}
\begin{document}
This is inline math $a+b=c$ and a displayed formula follows:
\[
\int_{-\infty}^{\infty}e^{-x^2}\,dx=\sqrt{\pi}
\]
\end{document}

你得到“标准” LaTeX 字体

在此处输入图片描述

相关内容