[XeTeX] pdfpages

Axel Kielhorn A.Kielhorn at web.de
Fri Feb 16 19:08:34 CET 2007


Am 15.02.2007 um 15:49 schrieb Álex Bueno:
>
> I tried making a new figure environment that would allow for a full-
> page pdf and found it beyond my grasp of TeX. But if that's the only
> option, then I will have to do that.

Easier suggestion:
Define a new environment that uses a new counter and just ignore that.

Article.cls has:

\newcounter{figure}
\newenvironment{figure}
                {\@float{figure}}
                {\end at float}

Let's change that to:

\makeatletter
\newcounter{figurenn}
\newenvironment{figurenn}
                {\@float{figurenn}}
                {\end at float}
\makeatother

This should give you a new figurelike environment that doesn't disturb 
your figure-counter. (untested)

Axel


More information about the XeTeX mailing list