傅立叶包导致方程无法正确显示

傅立叶包导致方程无法正确显示

在下面的 MWE 中,我无法正确显示方程式。它显示的方式如下: 在此处输入图片描述

当方程为:

E(T) = C_{1} + C_{2}f_{1}[p(t)] + C_{3}f_{2}[T(t)] + C_{4}f_{3}[p(t),T(t)] + v(t)

我运行了 updmap.exe,还在 Windows 版 MiKTeX 中运行了“REFRESH FNDB”,但仍然无法正确显示方程式。我使用 Fourier 包,因为它用于章节标题。Fourier 包能否与正确显示的方程式配合使用?

这是我的 MWE:

\documentclass{book}
\usepackage{etoolbox,fancyhdr}
\usepackage[top=3cm,bottom=3cm,left=3.2cm,right=3.2cm,headsep=10pt,a4paper]{geometry}
\usepackage{graphicx, rotating, ltablex, dcolumn, booktabs}
\usepackage{siunitx} 
\usepackage{booktabs}
\usepackage{xcolor}
\definecolor{ocre}{RGB}{52,177,201}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage{microtype}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usepackage{calc}

\usepackage{fourier}
\usepackage{mathptmx}

\begin{document}

\chapter{Chapter 1}

\section{Problem 2.4}\index{Problem 2.4}

(Mendel, 1973, Exercise 1-17, pp. 46-47).  The efficiency of a jet engine may be viewed as a linear combination of functions of inlet pressure $p(t)$ and the operating temperature $T(t)$; i.e.,
\begin{equation*}
E(T) = C_{1} + C_{2}f_{1}[p(t)] + C_{3}f_{2}[T(t)] + C_{4}f_{3}[p(t),T(t)] + v(t)
\end{equation*}
where the structures of $f_{1}$, $f_{2}$, and $f_{3}$ are known a priori and $v(t)$ represents modeling error of known mean and variance.  From tests on the engine a table of values of $E(t)$, $p(t)$, and $T(t)$ is given at discrete values of $t$.  Explain how $C_{1}$, $C_{2}$, $C_{3}$, and $C_{4}$ are estimated from these data.

\end{document} 

答案1

你要么想要fourier(为了在 Utopia 中获取文档)或者mathptmx(以便字体为 Times Roman)。 不能同时想要:请参阅傅立叶与其他数学字体之间的不兼容性另一个类似的情况。

加载这两个包将会导致灾难,因为fourier使用非标准数学字体编码(设置在)\begin{document},所以许多符号命令将指向字体中的错误位置。

可以同时加载带有数学字体的其他字体包,并以最后一个为准,但最好只加载一个。相反的顺序(先加载mathptmx,然后加载fourier)也很好,但第一个包不会执行任何操作,因此最好一开始就不要加载它。

相反,mathptmx你可以考虑

\usepackage{newtxtext,newtxmath}

因为你有更丰富的符号(例如粗体符号)。

相关内容