[Tex/LaTex] Times New Roman with LaTeX (mathptmx)

fontsmath-operators

Is it possible to change the look of \infty when using mathptmx? It looks horribly small compared to the other characters.

Best Answer

The following defines a \Infty from mathpazo

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\DeclareSymbolFont{Symbols}{OMS}{zplm}{m}{n}% Palatino
\DeclareMathSymbol{\Infty}{\mathord}{Symbols}{"31}
\begin{document}

\Huge$\infty$ $\Infty$

\end{document}

enter image description here