如何在 Latex 中编写规则

如何在 Latex 中编写规则

我想在我的论文中添加一些逻辑规则

只是为了避免混淆,我不想制定规则

我想在我的论文中展示它们

所以我用方程式

\begin{equation}
    $if word = “and” then remove word.$
    \label{Rule1}
\end{equation}

我希望我的论文像这样

如果单词 = “and” 则删除单词。................ (1)

怎么做?

答案1

短期黑客实现预期结果的方法是使用\text{}

在此处输入图片描述

笔记:

代码:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\begin{equation}
    \text{if word} = \text{``and'' then remove word.}
    \label{Rule1}
\end{equation}
\end{document}

相关内容