2
votes
1answer
45 views

How to store and append text for later use (inside enumerate environment)

I'm trying to make a traceability matrix (or table). For my purpose it's easiest if I can create rows anywhere in the document, store them in some kind of container and later use this container to ...
1
vote
2answers
134 views

Macro to format text

Good morning, I have the following problem, I have a file with 8000 questions in the following format: COD: 7 ¿A qué número de revoluciones se alcanza la potencia máxima de un motor? A Al número de ...
7
votes
1answer
170 views

Macro that repeats input of items in enumerate environment

My objective is to create Multiple Choice Answer Sheet. I have managed to create the circled letter environment using tikz but my question is that if one can create a macro that will repeat the ...
3
votes
1answer
216 views

Command to find current enum depth?

I was wondering if there was a command to find what at what depth of the enum counter (i.e. enumi, enumii, etc.) a command was at compile time. I'm attempting to create a \question command. What I ...
5
votes
2answers
208 views

Redefining \enumerate using \let - why does it behave this way and what can I do to bypass it?

The following code produces a result, that I find quite strange: \documentclass{article} \let\origenumerate\enumerate \renewenvironment{enumerate}{\begin{origenumerate}}{\end{origenumerate}} ...