合計記号フォント

合計記号フォント

講師がメモの中で異なる合計記号を使用していることに気づきましたが、一般的なフォントが標準フォントのように思えます。

このような合計記号はどのように使用すればよいでしょうか?

ここに画像の説明を入力してください

答え1

更新1: 2024/05/03

シンボル\sumは パッケージから取得されますtxfonts(または から取得できますLibertinus Math)。図の短い MWE と を参照してください。

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

ここに画像の説明を入力してください


エンジン付きXeLaTeX:私の謙虚な意見では、非常に近い\sumシンボルが与えられていますSTIX 2つの数学私も試してみましたがCambria Math(2番目のコードを参照)、大きすぎます。ただし、scalerelパッケージを使用してシンボルを垂直に引き伸ばすことは可能です(試していません)。一般的なフォントがわかっている場合は、キャンセルSTIX Two Mathしてフォント名を入れます。

\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}

ここに画像の説明を入力してください

またはCambria Mathで:

ここに画像の説明を入力してください

\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}

これも見ることができますTeX Gyre Pagella Math(良いですね):

ここに画像の説明を入力してください

\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}

(良いTeX Gyre Termes Math):

ここに画像の説明を入力してください

関連情報