Fabrice Larribe wrote:
Hi,
I'm presently trying to do slide, and I need to make things appear by steps. So, I've found the rsteps module, but I'm having some problems to use it. Here are my questions. I appreciate any hints or help.
I may be wrong, but I'm afraid that I have to disappoint you for almost all the request that you mentioned unless someone implements them in the near future (I guess that many people would need this functionality anyway). t-rsteps is still experimental in a way. It works, but not for very advanced usage. Hans wrote some modules to provide similar functionality, but they all rely on JavaScript.
1) When I define a theorem in a slide with steps, my theorem 1 is theorem 2 at the second step. How to control this ?
As far as I know, the code is implemented in such a way that it only controls at which step to process the code. It means that if you write a theorem once on the first slide and once on the second, it will be processed twice and TeX will see it as a new theorem. Some code was written to hack treating the equation numbers and chapter/section numbers. I don't know how you write and number theorems, but you can manually reset the theorem number to one number less the the current one and then increment it again at the end of slide, although this is tedious. I don't know to which extent you can read the TeX source code (it's much uglier than for any other usual programming language). It should be possible to mimic the behaviour of resetting equation numbers, but don't ask me how to do that. Yet another approach would be to save everything in a box and then output only the box. I don't know how well this works (if it works at all). \setbox2=\vbox{ here comes your theorem } \FromStep[2]{\copy2} All the mentioned solutions are ugly.
2) I wish to use the same text to print (wihout steps) and with slide (with steps). If I comment the "\usemodule [rsteps]", the instructions \StartSteps \NextStep.. are unknown of course, so how should I redefine them ? I guess I should provide new definitions only for screen mode ? Is there a simpler solution ? .
There is a switch \UseStepsfalse. (I don't know if this satisfies your needs - there are some differences, ie: there may be problems with Table of Contents or similar.)
3) On each slide, the header contains the page number, which appears only at the last step of the slide.The same effect occurs with the footline which appears only at last step of a slide. Is there a way to correct this ? ie I wish the header and footer do not change, so the steps are more transparent.
No idea. Sorry for being of almost no help and for bringing bad news only, Mojca