Search found 1 match

by jpmrst
Tue Jan 12, 2010 7:11 pm
Forum: General
Topic: How can I write to and read from an AUX file?
Replies: 2
Views: 15842

How can I write to and read from an AUX file?

Nate,

This works for me for simple things:
\protected@write\@auxout{}{%
% What's to be written here.
}

Note that you'll want to use the \string macro to defer expansion until when the aux-file is loaded, e.g.
\protected@write\@auxout{}{%
\string\@mycommand{arg}{arg}
}

Hope this helps ...