使用 Times 在标题栏中显示倾斜数字

使用 Times 在标题栏中显示倾斜数字

使用 Times 时,如何在连续页眉中显示倾斜的数字?对于 CM,它们是倾斜的。TIA。

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{newtxtext,newtxmath}
\begin{document}
\section{Introduction}
Some text
\end{document}

答案1

可以将字体更改为其他 Times 变体吗?如果可以,我有几个替代方案供您选择。

警告

感谢 campa 的精彩评论,我了解到 tgtermes 使用斜体对于标题,而不是倾斜的变体(因为显然没有)。

如果这不困扰你的话,请看一下下面的例子:

\documentclass{book}
\usepackage[T1]{fontenc}

% Loading tgtermes and newtxmath (in that order!) 
% works by inserting italics instead of slanted text
% \usepackage{tgtermes}
% \usepackage{newtxmath}

% txfonts also works
\usepackage{txfonts}

\begin{document}
\section{Introduction}
Some text

\[E=mc^2\]

\end{document}

txfonts 和 tgtermes

相关内容