-
I was not able to modify the size of the inline math. For centered math I use .MathJax, .MathJax_Display {
font-size: 80% !important;
} But this does not work for inline expressions. What is the proper way to scale the inline expressions i.e. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Could you change the category to "Q&A" (via GitHub desktop/website version)? Inline math are delimited by If you want to decrease the size for all math: .MathJax {
font-size: 80% !important;
} If you want more fine grained control: .math.inline .MathJax {
font-size: 400% !important;
}
.math.display .MathJax {
font-size: 50% !important;
color: #b22222;
} |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Could you change the category to "Q&A" (via GitHub desktop/website version)?
This way you can select an answer (if there is one) to show others there is an answer.
Inline math are delimited by
$
, display math are delimited by$$
.A display math is centered, while inline math are in line, thus following paragraph rule in which they are.
If you want to decrease the size for all math:
If you want more fine grained control: