fancyvrb 总是创建新页面

fancyvrb 总是创建新页面

我在使用该包时遇到了麻烦facyvrb。我有以下代码:

\section{My section}
\subsection{Subsection}

\begin{Verbatim}[frame=single] 
...lots of code...
\end{Verbatim}

但是,pdflatex 构建的整个页面只包含子部分标题,其余页面为空,然后在下一页开始逐字部分。我如何才能让逐字部分恰好位于子部分下方,类似于 [H] 命令中的图形浮动部分?

答案1

我看不出有什么问题。

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{fancyvrb}
\usepackage{lipsum}
\usepackage{xcolor}

\begin{document}
\section{My section}
\subsection{Subsection}
\lipsum[1]
\begin{Verbatim}[frame=single,framerule=1mm,framesep=3mm,
   rulecolor=\color{red},fillcolor=\color{yellow}]
Verbatim line.
\end{Verbatim}

\begin{Verbatim}[frame=single,framerule=1pt,rulecolor=\color{blue}]
...lots of code...
\end{Verbatim}

\lipsum[1-2]
\end{document} 

在此处输入图片描述

相关内容