Tengo una situación en la que estoy tejiendo un montón de figuras en \enumerate y las figuras son tan grandes que preferiría una página para cada figura.
\documentclass{article}
\begin{document}
\begin{enumerate}
\item Lets' try figure 1.
<<fig1, include=TRUE, fig.pos='htbp', fig.align='center', fig.cap='fig1', fig.height=5, fig.width=5>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\item Lets' try figure 2.
<<fig2, include=TRUE, fig.pos='htbp', fig.align='center', fig.cap='fig2'>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\item Lets' try figure 3.
<<fig3, include=TRUE, fig.pos='htb!', fig.align='center', fig.cap='fig3'>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\end{enumerate}
\end{document}
Puedo usar fig.width y fig.height para controlar el tamaño de cada figura, pero pensé si habría una manera elegante de tener una figura por página. ¿Quizás hacer cambios en enumerar o en fragmentos? Gracias.
Respuesta1
Una forma sería el uso manual de los comandos \newpage. si es un
\documentclass{article}
\begin{document}
\begin{enumerate}
\item Lets' try figure 1.
<<fig1, include=TRUE, fig.pos='htbp', fig.align='center', fig.cap='fig1', fig.height=5, fig.width=5>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\newpage
\item Lets' try figure 2.
<<fig2, include=TRUE, fig.pos='htbp', fig.align='center', fig.cap='fig2'>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\newpage
\item Lets' try figure 3.
<<fig3, include=TRUE, fig.pos='htb!', fig.align='center', fig.cap='fig3'>>=
set.seed(1213) # for reproducibility
x = cumsum(rnorm(100))
mean(x) # mean of x
plot(x, type = 'l') # Brownian motion
@
\end{enumerate}
\end{document}