我正在使用iosmath
在ios应用程序中显示数学方程式。
如何在\text{}
内插入换行符
我的代码是:
label.latex = @"\\text{\(Highest degree=a \\ \newline \linebreak power \ of\ x^2\ is\ 2 \\ sum=6= a+2 \\ therefore\ a= 4\)}";
\\
,\newline
,\linebreak
都不起作用
答案 0 :(得分:0)
只需使用\n
例如:
label.latex = @"\\text{\(Highest degree=a \n power \ of\ x^2\ is\ 2 \\ sum=6= a+2 \\ therefore\ a= 4\)}";
答案 1 :(得分:-1)
如果不在 \\text{}
内,请使用 \\\\
。