728x90
반응형
수식을 작성하다보니 다양한 수학폰트가 있다는 것을 알았다.
몇가지 정리해보았다.
- \mathcal: Calligraphic Font
- 주로 특별한 집합, 대수 구조, 변환
- 위상공간 같은 걸 표현할 때 본 적이 있다
- $\mathcal{A} \quad \mathcal{B} \quad \mathcal{C} \quad \ldots$
- \mathbb: Blackboard Bold Font
- 주로 수의 집합. (실수, 정수, 자연수 집합 등)
- $\mathbb{R} \quad \mathbb{Z} \quad \mathbb{N} \quad \ldots$
- \mathfrak: Fraktur Font
- 리 대수(Lie Algebras), 아이디얼(ring theory), 다른 대수 구조들
- 전공이 수학이 아니다보니 거의 보지 못했다.
- $\mathfrak{g} \quad \mathfrak{h} \quad \mathfrak{so} \quad \ldots$
- \mathsf: Sans-Serif Font
- 벡터, 행렬, 선형대수
- 개인적으로 아래 서술할 \mathbf를 더 자주 사용하는 것 같다.
- sans-serif라서 글자 끝에 꾸밈이 없어 밋밋하게 보인다
- $\mathsf{V} \quad \mathsf{M} \quad \mathsf{A} \quad \ldots$
- \mathtt: Typewriter Font
- 소스코드, 함수 이름, 알고리즘 등
- $\mathtt{function\_name} \quad \mathtt{if} \quad \mathtt{while} \quad \ldots$
- \mathrm: Roman Font (uprignt letters)
- 상수, 단어, 축약어 등
- argmax, log, exp 등은 키워드로 있을 수 있으나, 변환이 안된다면 급한대로 사용하는 편
- $\mathrm{const} \quad \mathrm{max} \quad \mathrm{min} \quad \ldots$
- \mathit: Italic Font
- 변수 이름 (그래프에서 노드를 $u,\ v$로 표현)
- 단어 형태의 변수는 잘 사용하지 않는다
- $\mathit{variable} \quad \mathit{term} \quad \mathit{expression} \quad \ldots$
- \mathbf: Bold Font
- 벡터, 행렬, 기타 굵음 처리 (공분산행렬 등)
- $\mathbf{v} \quad \mathbf{A} \quad \mathbf{\Sigma} \quad \ldots$
- \mathnormal: Default Font
- 기본 모드로 되돌릴 때 사용
- 티스토리에 삽입한 서식은 default로 \mathit 인 것 같다.
- $\mathnormal{X} \quad \mathnormal{Y} \quad \mathnormal{Z} \quad \mathnormal{x y z} \ldots$
Others
LaTeX 그리스 문자(alpha, beta, ..., omega)의 용례
https://trivia-starage.tistory.com/242
자주 쓰이는 LaTeX 정리
https://trivia-starage.tistory.com/30
728x90
반응형
'Tutorial, Guide' 카테고리의 다른 글
vscode 업데이트로 접속이 안될 때 (0) | 2023.12.19 |
---|---|
Python의 round는 사사오입? 오사오입? (1) | 2023.10.01 |
[Error] ValueError: Expected more than 1 value per channel when training, got input size ~ (0) | 2023.08.23 |
[Error] CUDA error: device-side assert triggered (0) | 2023.08.02 |
[Excel] 데이터 분석 기능 추가하기 (0) | 2023.05.11 |