vote up 2 vote down star
1

How can I replace all occurrence of user defined latex macros with their definitions?

For example, given this file

old.tex

\newcommand{\blah}[2]{#1 \to #2}
...
foo \blah{egg}{spam} bar
...

how to generate the file below in an automatic way

new.tex

...
foo egg \to spam bar
...

Instead of reimplementing latex macro logic with perl, can I use latex or tex engine itself to do this?

flag

Interesting question. I think this is really hard, if not impossible. An appropriate TeX script would have to parse every token in every line and check whether it is a user-defined command, which I think is quite complex. Things like catcode changes in the document complicate it even further. I'd suggest that you try to find a completely different solution. TeX is fine for typesetting a DVI or PDF output file from an input file, but anything else is extremely complicated. – Philipp Oct 2 at 18:17
You are probably much better off using perl or your language of choice to parse your .tex files and replace the macros. – Mica Oct 2 at 18:40

2 Answers

vote up 0 vote down check

Never seen this done, but 2 half-baked ideas:

  1. If the reason why you want to expand all these macros inline is for debugging, then setting \tracingmacros=1 in your document will expand all your macros, but the output goes to a log file.

  2. The CTAN archive provides a package that you can use to inline expansions within definitions (but not newcommand), but I didn't know if you might take a look and see how painful it might be to modify to perform inline expansions of \newcommand instead of \def.

link|flag
vote up 0 vote down

Consider using a template engine such as Jinja2 with Python.

You may wish to change the syntax from the default {%, {{, etc. in order to make it more compatible with LaTeX's own. For example:

env = jinja2.Environment(
      loader=jinja2.FileSystemLoader( JINJA_DIRS ),
      comment_start_string='["', # don't conflict with e.g. {#1
      comment_end_string = '"]',
      block_start_string = '[%',
      block_end_string = '%]',
      variable_start_string = '[=',
      variable_end_string = ']',
      autoescape=True,
      finalize=_jinja2_finalize_callback, # make a function that escapes TeX
      )

template = env.get_template( self.template )

tex = template.render( content )

In addition to functions that are passed to the template's environment, Jinja2 supports macros. For example, your above code should work as expected as:

[% macro blah(egg, spam) -%]
foo [=egg] \to [=spam] bar
[%- endmacro %]

[= blah("chicken","pork") ]
% substitutes with "foo chicken \to pork"

I'm not sure what your goals are, and this requires a bit of work, but isn't an insurmountable problem at all if you're familiar with Python.

I hope that helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.