Herbert Voß
Herbert Voß
Where is the sense of defining mathversion=sans? Fira is by default sans serif. ``` \documentclass{article} \usepackage{unicode-math} \setsansfont{Fira Sans} \renewcommand\familydefault{\sfdefault} \setmathfont{Fira Math} \begin{document} inline math: $\sqrt{a}$ $\sqrt{\frac{a}{b}}$. display math: \begin{displaymath} \sqrt{a}\sqrt{\frac{a}{b}}...
can you provide your math font file for download?
For the symbols at the end of the file it looks completely different to the current FiraMath-Regular.otf from TL2023 It looks like a problem with the tools, but I am...
I downloaded the source and created the fonts. Only FiraMath-Ultra.otf has no problem with the square root
In an appendix the use of floating environments do not really make sense. You can use simple minipages: ``` \documentclass{article} \usepackage[demo]{graphicx} \usepackage{subcaption} \begin{document} \section{default main text body} \begin{figure}[!htb] \begin{subfigure}[b]{0.3\textwidth} \includegraphics[width=\linewidth]{src/figures/brighton.jpeg}...
font definitions can simply be overwritten in your preamble. No need for a keyword.
> Am 24.09.2024 um 16:36 schrieb ***@***.*** ***@***.***>: > > > In the following two examples, SetTblrTemplate works for head,foot in the example 1, but not works for contfoot-text,conthead-text in...
Setting also the origin of the rotation would be nice, e.g. `\NewTableCommand\obliqueheader{\SetCell{rotate=45,origin=c}}`.
Use ``` \usepackage[math={mathit=sym}]{pagella-otf} ``` or ``` \usepackage[mathit=sym]{unicode-math} \setmathfont{texgyrepagella-math.otf} ```
``` \documentclass{scrbook} \usepackage{amsmath} \usepackage{pagella-otf} \begin{document} $\mathit{different}$ $\symit{different}$ $\textit{different}$ \end{document} ```