amsmath 및 mathastext 패키지 사용 시 문제

amsmath 및 mathastext 패키지 사용 시 문제

Arial 글꼴과 fira-math 글꼴을 사용하고 lualatex로 컴파일하려고 합니다. 나는 또한 mathastext를 사용하고 있습니다. 그러나 문제가 있습니다. 작동 \begin{bmatrix}\end{bmatrix}하지 않습니다. 다음은 lualatex로 컴파일된 MWE입니다.

\documentclass{article}
\usepackage{firamath-otf}
\setmainfont{Arial}[Scale=1.2]
\usepackage{amsmath}
\usepackage{mathastext}
\begin{document}
    This is running text.
\[\cos 2\theta=2\cos^2\theta-1\]    
\[
\begin{bmatrix}
a&b&2\\
A&b&1\\
c&X&Z
\end{bmatrix}
\]
\end{document}

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

이에 대한 해결 방법이 있나요? fira-math를 사용하고 싶기 때문에 no-math 옵션으로 글꼴 사양을 로드하는 것은 불가능하다고 생각합니다.

답변1

나는 이런 것을 사용합니다. 당신은 할 수 있습니다GitHub에서 Fira Math 글꼴 다운로드물론 을 사용하세요 firamath-otf. 내 조언은 텍스트 글꼴을 수학 글꼴로 사용하지 말라는 것입니다. 그들은 좋은 수학에 필요한 많은 글꼴 크기와 문자 모양이 누락되었습니다. 따라서 수학에 사용하는 것은 항상 해결 방법일 뿐입니다.

\documentclass{article}
\usepackage{amsmath}
\usepackage[mathrm=sym]{unicode-math}
\setmathfont{Fira Math}
\setmainfont{Arial}%[Scale=1.2] too large .. 

\begin{document}    
This is running text.
\[
  \int_0^{\mathrm{\pi}} \sin x \, \mathrm{d}x = 2
\]
\[
  \cos 2\theta=2\cos^2\theta-1 
\]    
\[
  \begin{bmatrix}
    a & b & 2 \\
    A & b & 1 \\
    c & X & Z
  \end{bmatrix}
\]
\end{document}

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

관련 정보