我想要生成以下几行:
GREATER(x,y)=true
=false
如果我逐项列出,我会得到:
GREATER(x,y)=true
=false
答案1
如果是文本:
选项 1:使用tabbing
:
\documentclass{article}
\begin{document}
\begin{tabbing}
GREATER(x,y)\= $=$true \\
\> $=$false
\end{tabbing}
\end{document}
选项 2:使用tabular
:
\documentclass{article}
\begin{document}
\begin{tabular}{r@{$=$}l}
GREATER(x,y)& true \\
& false
\end{tabular}
\end{document}
选项 3:如果是math
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
\text{GREATER}(x,y) &= \text{true} \\
&= \text{false}
\end{align*}
\end{document}
答案2
使用
\begin{verbatim}
GREATER(x,y)=true
=false
\end{verbatim}