1 | initial version |
You can do
show( SR.symbol('e_Ersatz') == e_Ersatz )
or really define e_Ersatz
as a symbol, and show the equation:
var('e_Ersatz')
show( e_Ersatz == d_k * ( (e_m/d_m) + (e_s/(d_k-d_m) ) ) )
2 | No.2 Revision |
You can do
show( SR.symbol('e_Ersatz') == e_Ersatz )
or really define e_Ersatz
as a symbol, and show the equation:
var('e_Ersatz')
show( e_Ersatz == d_k * ( (e_m/d_m) + (e_s/(d_k-d_m) ) ) )
Both SR.symbol
and var
also accept a latex_name
keyword argument, so you can define e.g.
var('e_Ersatz', latex_name='e_{\\text{Ersatz}}')