I am writing a document that has a set of "task lists" scattered throughout. I want to have a single list of all of the tasks at the end. It seems to me that I should be able to do this with the same sort of intermediate files that are used for the table of contents, list of tables, and list of figures. But I just can't figure out any way to do it --- I've tried adding \addtocontents with a different extension, but that doesn't seem to work. Does anybody have an idea of how to do this?
|
|
|||
|
|
closed as off topic by casperOne♦ Jan 14 at 17:38
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You can do:
in your preamble to declare a new file writer. Then, to open a file when you want to, you can assign the writer to a file and open it:
To write to the file:
Finally, close the file with:
To read a file, it could be as simple as Is this what you want to do? Edit: This "works for me":
|
|||||||
|
|
I haven't had much luck with the For stuff like this, I encourage you strongly to dig under the LaTeX layer and study The TeXbook by Donald Knuth. That's the place where the mechanisms available are really explained. If your list of tasks is really going to come at the end, you can avoid all the nonsense and just allocate a global tokens register which you accumulated throughought the document. You'll find some helpful ideas and examples in Appendix D of The TeXbook (Dirty tricks). |
|||
|
|
|
you would want the
http://www.tex.ac.uk/tex-archive/help/Catalogue/entries/todonotes.html |
|||||||||
|