我想在我的论文中添加一些逻辑规则
只是为了避免混淆,我不想制定规则
我想在我的论文中展示它们
所以我用方程式
\begin{equation}
$if word = “and” then remove word.$
\label{Rule1}
\end{equation}
我希望我的论文像这样
如果单词 = “and” 则删除单词。................ (1)
怎么做?
答案1
短期黑客实现预期结果的方法是使用\text{}
:
笔记:
- 对于长期解决方案,请使用专门为算法设计的包。一个好的起点是算法,算法,算法x,算法2e,algpseudocode = 困惑
代码:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\text{if word} = \text{``and'' then remove word.}
\label{Rule1}
\end{equation}
\end{document}