Estoy intentando utilizar fuentes Arial y fira-math y compilar con lualatex. También estoy usando mathastext. Sin embargo hay un problema. El \begin{bmatrix}\end{bmatrix}
no funciona. Aquí hay un MWE, compilado con lualatex.
\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}
¿Hay una solución para esto? Quiero usar fira-math, así que creo que no es posible cargar fontspec con la opción no-math.
Respuesta1
Yo uso algo como esto. Puededescargar la fuente Fira Math de GitHubo usar firamath-otf
, por supuesto. Mi consejo es no utilizar fuentes de texto como fuentes matemáticas; les faltan una serie de dimensiones de fuente y glifos necesarios para una buena matemática. Por lo tanto, usarlos para matemáticas siempre es sólo una solución alternativa.
\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}