합계 기호 글꼴

합계 기호 글꼴

강사가 노트에 다른 합 기호를 사용한 것을 보니 일반 글꼴이 표준 글꼴인 것 같습니다.

그러한 합계 기호를 어떻게 사용할 수 있습니까?

여기에 이미지 설명을 입력하세요

답변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 투 수학. 나도 시도했지만 Cambria Math(두 번째 코드 참조) 크기가 큽니다. 그러나 패키지를 사용하여 기호를 수직으로 늘릴 수 있습니다 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(좋다) 와 함께 :

여기에 이미지 설명을 입력하세요

관련 정보