Differential

IMathBox.Differential property

差分。 当为真时,该框充当微分(例如,被积函数中的𝑑𝑥),并为数学微分接收适当的 水平间距。 默认值:假

public bool Differential { get; set; }

例子

示例:

[C#]
IMathBox differential = new MathematicalText("dx").ToBox();
differential.Differential = true;
IMathBlock baseArg = new MathematicalText("x").Join(differential);
IMathNaryOperator integral = baseArg.Integral(MathIntegralTypes.Simple, "0", "1");

也可以看看