4

使用 knitr 创建 pdf,codechunks 根据分页符进行分页。通常这正是我想要的,但在某些情况下,我希望能够避免这种情况。例如,如果它不适合当前页面,则通过使代码块跳转到下一页。我希望这可以在一个块选项中完成,IE 不使用例如。\newpage 等

以下是中断的代码块的示例。我该如何避免这种情况?

\documentclass{article}
\usepackage[english]{babel}
\usepackage{lipsum}

\begin{document}

\lipsum[1-3] \textbf{The following chunk will break. How do I avoid this breaking? }



<<echo=TRUE>>=

(iris)[1:20,]

@



\end{document}
4

1 回答 1

3

knitrout为此,我在knitr设计中留下了一个空的环境。你可以重新定义这个环境来实现你想要的。有许多不可破坏的 LaTeX 环境,例如figure环境。下面我以minipage环境为例:

\documentclass{article}
\renewenvironment{knitrout}{\begin{minipage}{\columnwidth}}{\end{minipage}}
% alternatively, you can use `figure`
% \renewenvironment{knitrout}{\begin{figure}}{\end{figure}}
\begin{document}

\begin{figure}
\caption{One figure.}
\end{figure}

% placeholder
\framebox{\begin{minipage}[t][0.3\paperheight]{1\columnwidth}%
nothing
\end{minipage}}

<<echo=TRUE>>=
(iris)[1:20,]
@

\begin{figure}
\caption{Another one.}
\end{figure}

\end{document}
于 2013-10-31T00:03:18.757 回答