4

Here is my problem. I'm using the font sourceserifpro, with the "extralight" mode, and I'm getting this as a result:

font_extralight

As you may see, the math formulas appear a bit darker than the rest of the text, as if they were bold. Whence my question: is it possible to make the math formulas lighter or brighter ?

(A very naive idea would be to make these formulas grey instead of black — automatically. A naive idea would be to make them less "opaque", i.e. more "transparent" — again automatically). But I don't know any way of "thinning" those math symbols.

I hope that my question is clear and that I will get some... enlightning answers!


Here is the MWE:

\documentclass{report}
\usepackage[default,extralight]{sourceserifpro}

\begin{document}
Given elements $a_1, ..., a_n \in k$, we denote by $\mathrm{diag}(a_1, ..., a_n) \in M_n(k)$
the diagonal matrix whose $(i,j)$-th entry 
is $a_i \delta_{i,j}$ for any $1 \leq i,j \leq n$.
\end{document}
Watson
  • 890

1 Answers1

3

You can color the math font automatically if you are willing to use unicode-math with LuaLaTeX (better don't use XeLaTeX).

\documentclass{report}
\usepackage{xcolor}
\usepackage{unicode-math} % loads fontspec
\setmainfont{Source Serif Pro Extra Light}
\setmathfont[Color=lightgray]{Latin Modern Math}
\setmathrm[Color=lightgray]{Latin Modern Math}

\begin{document}
Given elements $a_1, ..., a_n \in k$, we denote by $\mathrm{diag}(a_1, ..., a_n) \in M_n(k)$
the diagonal matrix whose $(i,j)$-th entry 
is $a_i \delta_{i,j}$ for any $1 \leq i,j \leq n$.
\end{document}

enter image description here

Henri Menke
  • 109,596