1

I traditionally use the following user packages

\usepackage{amsmath}    
\usepackage{amssymb}
\usepackage{esvect}
\usepackage{nicematrix}
\usepackage{anyfontsize}
\usepackage{asymptote} 
\usepackage{changepage} 
\usepackage{color}      
\usepackage{enumitem}   
\usepackage{fancyhdr}  
\usepackage{framed}    
\usepackage{geometry}   
\usepackage{graphicx}  
\usepackage{helvet}    
\usepackage{marginnote} 
\usepackage{newtxtext,newtxmath}  
\usepackage{multicol}   
\usepackage{multirow}   
\usepackage{pgffor}    
\usepackage{setspace}  
\usepackage{tikz}       
\usepackage{totalcount} 
\usepackage{accents}

which produces these styles:

enter image description here

enter image description here

enter image description here

However I was wondering if anyone could identify the user package that produces the following symbols that I'm trying to imitate:

enter image description here

enter image description here

enter image description here

That is, could someone name the package (or a package) that gives straight upward and thinner integral signs, thicker summation signs and a thinner flick on the square root as default?

Pen and Paper
  • 207
  • 1
  • 7

1 Answers1

4

A preliminary remark: To generate the math expressions shown in the first three screenshots, it suffices to load the newtxtext and newtxmath packages. Loading the other packages is ok, but they don't influence the apperance of the expressions in question.

\documentclass{article}
\usepackage{newtxtext} 
\usepackage{newtxmath} 
\begin{document}
\[
\int\frac{1}{1+\cos x}\,dx \quad \sqrt{mg} \quad \sum_{n=1}^k 5n
\]
\end{document}

On to the final three screenshots:

  • To generate upright rather than slanted integral symbols, while keeping the Times Roman clone math font, just load the newtxmath package with the option upint: \usepackage[upint]{newtxmath}.

  • To generate the squashed-looking summation symbol, load either the mathptmx or the stix package instead of the newtxtext and newtxmath packages. (I have no idea, though, why anyone would prefer the squashed-looking summation symbols...)

  • Keep loading the newtxtext and newtxmath packages to output \sqrt{n!} as in the final screenshot.

Mico
  • 506,678