It seems that there are different ways of accessing counters. I have been using \theMyCount as in this post about Using counters or macros, but noticed that the arrayjobx package uses \the\value{MyCount}.
This post about LaTeX programming comparison operators uses just \value{MyCount} but that does not seem to compile for me.
Are there any differences between these different methods of accessing counters?
\documentclass{article}
\newcounter{MyCount}
\begin{document}
MyCount = \theMyCount
MyCount = \the\value{MyCount}
%MyCount = \value{MyCount}% Does not compile for me.
\end{document}
\the– Peter Grill Jul 17 '11 at 21:25