Tagged Questions
3
votes
4answers
242 views
What is the TeX equivalent for the following C# nested loop?
I need a nested loop to animate PSTricks diagrams. In C# or C or C++, I usually write as follows.
int N=6;
for(int x=0; x<N; x++)
for(int y=x+1; y<N; y++)
Console.WriteLine("({0}, ...
3
votes
1answer
213 views
How to translate this scenario to LaTeX looping macro?
I want to slice an image into 8 parts, i.e., 2 rows by 4 columns. Each part is on a single page as follows. The gray frame is the Acrobat Reader background, so don't think it is a part of the output I ...