Latex:如何在包含逐字块的文本周围绘制框

发布于 2024-10-05 09:55:05 字数 488 浏览 2 评论 0原文

通常,要在某些文本中装箱,我会使用以下内容:

\fbox {
    \parbox{\linewidth}{
    This is some text! Blah blah blah...
    }
}

但是,假设其中有一个逐字块。它永远不会编译。有人知道我如何在包含逐字块的文本周围绘制一个框吗?例如这样...

\fbox {
    \parbox{\linewidth}{
        \begin{verbatim}
        This is some text!
        \end{verbatim}
    }
}

我不应该在 CPF 指出之后在 tex.stackexchange 中重新发布此内容就是这样的事情。如果有人反对重复发帖,请告诉我。如果没有,我也会在这里保留。

Typically, to box in some text, I use the following:

\fbox {
    \parbox{\linewidth}{
    This is some text! Blah blah blah...
    }
}

However, say I have a verbatim block within that. It will never compile. Anyone know how I could draw a box around text which contains a verbatim block? Like this for example...

\fbox {
    \parbox{\linewidth}{
        \begin{verbatim}
        This is some text!
        \end{verbatim}
    }
}

I should not that I re-posted this in tex.stackexchange after CPF pointed out that there was such a thing. Let me know if people are opposed to doubled posting. If not, I'll keep it up here as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾城如夢未必闌珊 2024-10-12 09:55:05

更简单:使用 fancyvrb 包。

\begin{Verbatim}[frame=single]
stuff
\end{Verbatim}

Easier: use the fancyvrb package.

\begin{Verbatim}[frame=single]
stuff
\end{Verbatim}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文