--------------------------------------------------------------
¥ProvidesPackage{thfig}
¥newcommand{¥thfig}[4][width=4cm]{
¥newcounter{cnt}
¥setcounter{cnt}{0}
¥begin{figure}[htbp]
¥loop ¥ifnum ¥vaule{cnt}<4
¥begin{minipage}{.33¥textwidth}
¥centering
¥includegraphics[#1]{#2}
¥caption{#3}
¥label{fig:#4}
¥end{minipage}
¥stepcounter{cnt}
¥repeat
¥end{figure}
}
--------------------------------------------------------------
¥thfig{hoge.jpg}{hogeです}{hoge}{puge.jpg}{pugeです}{puge}{fuge.jpg}{fugeです}{fuge}
本文中に上記ような命令で図を3つ並べて表示したいのですが、
Undefind control sequence.
¥iterate -> ¥ifnum ¥value
といったエラーが出てしまいうまくいきません。
どなたか教えてはいただけないでしょうか?