Fuente de signo de suma

Fuente de signo de suma

Noté que el profesor usó un signo de suma diferente en sus notas, pero la fuente general me parece la fuente estándar.

¿Cómo puedo utilizar un signo de suma de este tipo?

ingrese la descripción de la imagen aquí

Respuesta1

Actualización 1: 03/05/2024

El \sumsímbolo está tomado del paquete txfonts(o puede tomarlo de Libertinus Math): consulte MWE breve y de la figura.

%% Compile and read me!
\documentclass[a4paper,12pt]{article}
\usepackage{txfonts}
\usepackage[T1]{fontenc}
\begin{document}
\[\sum^{n}_{i=1}{xcv}\]
\end{document}

ingrese la descripción de la imagen aquí


Con el motor XeLaTeX: Para mi humilde opinión, \sumel símbolo muy cercano proviene deSTIX Dos Matemáticas. También lo intenté Cambria Math(ver segundo código) pero es grande: pero es posible estirar verticalmente el símbolo con scalerelel paquete (no lo he probado). Si conoces la fuente común, cancelas STIX Two Mathy pones el nombre de la fuente.

\documentclass[12pt]{article}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range={\sum}, Scale=MatchUppercase]{STIX Two Math}
\let\mathbb\relax % remove the definition by unicode-math
\DeclareMathAlphabet{\mathbb}{U}{msb}{m}{n}
\begin{document}
The range of matrix $A\in\mathbb{K}^{I\times J}$ is
\[
\operatorname{range}(A)=\{Ax\colon x\in\mathbb{K}^{J}\}=\operatorname{span}\{A_{(j)},i\in J\}.
\]

Hence, the range of a matrix is a vector space spanned by its columns. The Euclidean scalar product in $\mathbb{K}^I$ is given by.
\[\langle x,y\rangle=y^Hx=\sum_{i\in I}x_i\bar{y}_i,\]
 
where for $\mathbb{K}=\mathbb{R}$ the conjugate sign can be ignored. It is often useful and very

\end{document}

ingrese la descripción de la imagen aquí

o con Cambria Math:

ingrese la descripción de la imagen aquí

\documentclass[12pt]{article}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range={\sum}, Scale=MatchUppercase]{Cambria Math}
\let\mathbb\relax % remove the definition by unicode-math
\DeclareMathAlphabet{\mathbb}{U}{msb}{m}{n}
\begin{document}
The range of matrix $A\in\mathbb{K}^{I\times J}$ is
\[
\operatorname{range}(A)=\{Ax\colon x\in\mathbb{K}^{J}\}=\operatorname{span}\{A_{(j)},i\in J\}.
\]

Hence, the range of a matrix is a vector space spanned by its columns. The Euclidean scalar product in $\mathbb{K}^I$ is given by.
\[\langle x,y\rangle=y^Hx=\sum_{i\in I}x_i\bar{y}_i,\]
 
where for $\mathbb{K}=\mathbb{R}$ the conjugate sign can be ignored. It is often useful and very

\end{document}

Puedes ver también esto TeX Gyre Pagella Math(bueno):

ingrese la descripción de la imagen aquí

\documentclass[12pt]{article}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range={\sum}, Scale=MatchUppercase]{TeX Gyre Pagella Math}
\let\mathbb\relax % remove the definition by unicode-math
\DeclareMathAlphabet{\mathbb}{U}{msb}{m}{n}
\begin{document}
The range of matrix $A\in\mathbb{K}^{I\times J}$ is
\[
\operatorname{range}(A)=\{Ax\colon x\in\mathbb{K}^{J}\}=\operatorname{span}\{A_{(j)},i\in J\}.
\]
Hence, the range of a matrix is a vector space spanned by its colunns. The Euclidean scalar product in $\mathbb{K}^I$ is given by.
\[\langle x,y\rangle=y^Hx=\sum_{i\in I}x_i\bar{y}_i,\]
where for $\mathbb{K}=\mathbb{R}$ the conjugate sign can be ignored. It is often useful and very
\end{document}

con TeX Gyre Termes Mathbuena):

ingrese la descripción de la imagen aquí

información relacionada