현재 Math Time Pro2를 사용하고 있지만 \forall
를 고려합니다. \exists
는 내 취향에 적합하지 않습니다. 원본 LaTeX \forall
및 \exists
기호?
한 가지 질문이 더 있습니다. 더 직선 (이중) (왼쪽) 오른쪽 화살표가 있습니까? (내 말은 화살표의 “머리”에 있음) \rightarrow
모양의 기호는 모두 곱슬 장식이있어 원하지 않습니다.
댓글
답변
다음을로드 할 수 있습니다. 수학 기호 글꼴 :
\documentclass{article} \usepackage[lite]{mtpro2} \let\mtproforall\forall % just for the comparison \let\mtproexists\exists % just for the comparison \DeclareSymbolFont{CMsymbols}{OMS}{cmsy}{m}{n} \SetSymbolFont{CMsymbols}{bold}{OMS}{cmsy}{b}{n} \DeclareMathSymbol{\forall}{\mathord}{CMsymbols}{"38} \DeclareMathSymbol{\exists}{\mathord}{CMsymbols}{"39} \begin{document} $\forall x\,\exists y$ $\mtproforall x\,\mtproexists y$ \end{document}
비교를보고 정말 변경을 원하는지 결정합니다.
댓글
- 감사합니다. ! 평가하다! 그런데 기호 코드 표를 어떻게 찾을 수 있습니까? \ forall을 아는 것은 " 38 인 반면 \ exists는 " 39
- @Eric 기본 설정은 다음과 같습니다. TeX 트리의
fontmath.ltx
에 있습니다. - 감사합니다.
\therefore
의 코드도 찾고 싶지만 'fontmath.ltx
, 어디 '입니까? - @Eric That '의
amssymb.sty
, 내가 기억하는 한
mtpro2
(예 :\let\oldforall\forall \let\oldexists\exists \usepackage{mtpro2}
)를로드하기 전에 기호를 저장할 수도 있습니다.mtpro2
로드 후\let\forall\oldforall \let\exists\oldexists
기호를 복원 하시겠습니까?