2

我在乳胶中有以下伪代码

\begin{algorithm}
\begin{algorithmic}
.....
\State i = (i + 1) \% CAPACITY
.....
\end{algorithmic}
\end{algorithm}

但是,当我编译这个时,圆括号没有出现,而不是得到i = (i + 1) % QCAPACITY,我得到i = i + 1 % QCAPACITY. 我怎么解决这个问题?

4

1 回答 1

2

你确定你的代码是正确的吗?我已将此代码粘贴到ScribTeX 中,并且我做对了。

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}

\begin{algorithm}
\begin{algorithmic}

\State i = (i + 1) \% CAPACITY

\end{algorithmic}
\end{algorithm}

\end{document}​
于 2012-07-18T09:08:56.363 回答