Gerald Cecil wrote:
>
> maybe this is a LaTeX question ... but,
anyway ... :-)
> I need to split a figure across 2 pages ... panels a-d on 1st & e-g on next
> pg. I'd like the caption to be under the 1st chunk (Figure X. This shows
> ... ) and then the next page to say Figure X (continued) without
> incrementing the Figure counter etc. Ideally, can this be done in LyX? Or,
> can someone point me to a source that explains how to do it with ERT?
use a nonfloat and in/decrease the counter by yourself. have a look at
http://www.educat.hu-berlin.de/~voss/lyx/floats/nonFloat.html
where i had the same problem with tables. you can define your
own \myFigure.
\begin{myFigure}{Figure X}
...
\end{myFigure}
\addtocounter{figure}{-1}
\begin{myFigure}{Figure X (continued)}
...
\end{myFigure}
all in tex(red)
Herbert
--
http://www.educat.hu-berlin.de/~voss/lyx/