我如何设置我的文档,使得我的方程式看起来像这样: 具体来说,我追求的是形状:而不是:,它是用 mathptmx 包生成的。
有任何想法吗?
答案1
一个选项是使用MathTime Pro II 字体。遗憾的是,免费lite
版本不提供大量的符号。
\documentclass{article}
\usepackage{newtxtext} % just for the text font
\usepackage[lite]{mtpro2}
\begin{document}
The equation is
$z^4 - 2z^2 + 4 = 0$,
with $z \in C$.
\end{document}
答案2
我会使用斜体“z”,但另一种选择是使用倾斜字体:
\documentclass{article}
%\usepackage{newtxtext,newtxmath}
\usepackage{mathptmx}
\usepackage{amsmath}
\usepackage{accents}
% use the slanted z instead of the italic one in math
\DeclareSymbolFont{zed}{OT1}{\familydefault}{m}{sl}
\SetSymbolFont{zed}{bold}{OT1}{\familydefault}{m}{sl}
\DeclareSymbolFontAlphabet{\mathsl}{zed}
\DeclareMathSymbol{z}{\mathalpha}{zed}{`z}
% some utility commands
\newcommand{\diff}{\mathop{}\!d}
\newcommand{\utilde}[1]{\underaccent{\tilde}{#1}}
\begin{document}
\begin{gather*}
\int_{0}^{1}\frac{x-5}{x^{2}-5x+6}\diff x
\\
y^{2}+\frac{3e^{(x-1)}}{x-2}+c
\\
\utilde{r}(t)=4\sec(t)\utilde{\mathrm{i}}+2\tan(t)\utilde{\mathrm{j}},
\quad
t\in\biggl[0,\frac{\pi}{2}\biggr)
\\
\{z:z\bar{z}=4, z\in C\}\cap\{z:\lvert z+\bar{z}\rvert=\lvert z-\bar{z}\rvert, z\in C\}
\\
z^{4}-2z^{2}+4=0,\quad z\in C
\\
\frac{1}{N}\frac{\diff N}{\diff t}+0.4\log_{e}(N)-2.4=0
\end{gather*}
\end{document}
它适用于mathptmx
或newtx
(只需切换评论)