我如何定义一个新环境displaytext
以便以下两个示例产生相同的输出?
第一个例子:
\documentclass{report}
\usepackage{amsmath}
\begin{document}
\[\text{Displayed text}\]
\end{document}
第二个例子:
\documentclass{report}
\usepackage{amsmath}
\begin{document}
\begin{displaytext}
Displayed text
\end{displaytext}
\end{document}
基本上我不知道如何将\text
命令分成单独的开头和结尾。当然,可以使用\begin{equation*}
and分隔等式部分\end{equation*}
。
这对我很有用,因为 texmaker 显示的第一个版本如下:
(它将数学环境中的所有内容都变成绿色,这很烦人,特别是当显示的文本涉及内联方程时。)