1
我試圖在LaTex中創建一個循環,但它只會在第一次通過時打印出來。以下是我正在處理的內容,但我的循環無法正常工作。Latex中的循環不起作用
\documentclass[12pt]{article}
%%% FOR LOOP CODE
\usepackage{ifthen}
\newcommand{\forLoop}[5][1]{%
\setcounter{#4}{#2} %
\ifthenelse{ \value{#4}<#3 }%
{%
#5 %
\addtocounter{#4}{#1} %
\forLoop[#1]{\value{#4}}{#3}{#4}{#5} %
}%
{%
#5 %
}%
}%
%% END FOR LOOP CODE
\begin{document}
Practice loop
\newcounter{index}
\section{Example 1}
\forLoop[2]{1}{5}{index}
{
This is inside the for loop: iteration \theindex\\
}
\end{document}