[Help] Subscripted variables - wxMaxima-developers/wxmaxima GitHub Wiki
If wxsubscripts:
is set to true
variable names of the format x_y
are displayed using a subscript under the following conditions.
- y is a single letter
- y is an integer
Declare Subscript
If a variable name doesn’t match the requirements it can still be declared as to be subscripted by using one of the following commands.
wxdeclare_subscript(variable_name);
wxdeclare_subscript([variable_name1,variable_name2,...]);
Remove Subscript
Declaring a variable as subscripted can be reverted by using the following command.
wxdeclare_subscript(variable_name,false);