I have a wabpage (HTML) that uses different ttf fonts loaded using @font-face{}
in the cascading stylesheet. But, I find that one of the fonts is smaller than the rest. I have Katex loaded in the same page to render the math.
The problem that I am facing is that, since I do not know how to set a suitable size for each font, when I set a particular font size a
for elements where I use font A
, and b
for elements where I use font B
, the font also affects the Katex renders of math equations. So if the font A was by default very small, I need to over-ride the default font size and make it much larger to make it look ok, but then the larger font affects the math equations rendered by Katex and makes them extra large!
So my question is:
How can I set different sizes for different fonts in the @font-face{}
itself, so that using a particular font doesn't affect the other elements and JS renderers like Katex.
I wanted something like:
@font-face {
font-family:myFamily;
src:url(locationOfTtfFont);
font-size:medium;
}
@font-face {
font-family:myFont2;
src:url(locationOfTtf2);
font-size:larger;
}
But, I couldn't get the above to work. Also, looking at the Font Face Rule @w3schools.com, I found that font-size was not in the list of allowed descriptors. Never the less, in the same W3 Schools article, I found another font-descriptor: font-stretch
, but that didn't work either.
Katex uses a default font size of 1.2xem where em is the size of the em of the surrounding text's font. i.e. it renders slightly bigger to help make sub and superscripts more readable.
The problem in the question is that therefore the equations' font size changes with the various fonts in use, one of which renders naturally smaller than another so needs to have its size increased - thus making the equations too large.
It is possible to fix the Katex font size, making it independent of the surrounding text's size, by including a font-size setting in the head of the document.
This may of course cause a different problem, for example if it was required to have much smaller Katex in a footnote so I am not sure it is a full answer to the question. Here's the snippet in case the code is useful for trying different settings out.