Math and Latex Plugins
Math plugin is capable of rendering mathematical formulas in Wiki. These formulas are defined in the powerful LaTex language and will appear as an image embedded within the Wiki document.
Behind the scenes, the Math plugin is using the more powerful Latex plugin for rendering the content.
Before 20.11 LTS
For both plugins, some extra configuration is necessary which is described in the Codebeamer documentation
Since 20.11-SP2
There is an Application Configuration option to control the font size globally for the Math and Latex plugin also.The default font size is 12px, which could produce too small text when Codebeamer is running on Windows.Minimum value for defaultFontSizePx is 12.Individual font size settings on the plugin markup level will override the global setting. You can go below 12px with it.
"latexPlugin" : {

"defaultFontSizePx" : 24

}

Samples:
[{Math



2\sum_{i=1}^n a_i \;\int_a^b f_i(x)g_i(x)\,dx

}]
displays the mathematical formula as an image:
The more flexible Latex plugin needs a complete LaTeX formatted document like in this example:
[{Latex title='some text'



\documentclass{article}

\pagestyle{empty}

\begin{document}

this some LaTeXtext

\end{document}

}]
is rendered as:
The example below shows how to use formula identifiers:
[{Math



\( x > y \)

}]
is rendered as:
or
[{Math



\[

\frac{\frac{1}{x}+\frac{1}{y}}{y-z}

\]

}]
is rendered as:
Parameters:
width='400' width is dynamic below 400px, but you can override 400px to get wider images.
title='optional tooltip for the rendered image'
cache='false' true/false parameter to turn cache on/off. Default is true.
id='artifact Id which contains the formula or LaTeX text'. You can link a document with id from a project's documents page.
src='source URL or attachment name' Alternative location of the LaTeX text or formula.
text='alternatively you can put the text here'. Not recommended, exists only for backward compatibility.
Was this helpful?