LaTex,Beamer 和 Listings 的问题

发布于 2024-09-04 04:49:16 字数 435 浏览 5 评论 0原文

我正在尝试在用 LaTex 制作的演示文稿中添加一些代码。我使用了投影仪,添加了一些框架,没有出现任何问题,但是一旦添加了列表,我就无法再编译演示文稿了。

\begin{frame}{Code}
\begin{lstlisting}
Sample Code
\end{lstlisting}
\end{frame}

我 pdflatex 给我的错误是:

Package Listings Warning: Text dropped after begin of listing on input line 80.

是否需要添加任何特殊内容才能使其正常工作?

I'm trying to add some code in a presentation made with LaTex. I used beamer, added some frames without problems but once I add the listing, I can't compile the presentation anymore.

\begin{frame}{Code}
\begin{lstlisting}
Sample Code
\end{lstlisting}
\end{frame}

The error I pdflatex gave me is:

Package Listings Warning: Text dropped after begin of listing on input line 80.

Is there anything special to add to make it work ?

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

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

发布评论

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

评论(3

饮湿 2024-09-11 04:49:16

尝试制作一个脆弱的框架:

\begin{frame}[fragile]

Try making a fragile frame:

\begin{frame}[fragile]
一身软味 2024-09-11 04:49:16

fragile 选项对我不起作用,但它起作用了:

\begin{frame}[containsverbatim]

The fragile option didn't work for me, but this did:

\begin{frame}[containsverbatim]
二货你真萌 2024-09-11 04:49:16

Listings提供框架功能:

\begin{lstlisting}[frame=single]
Sample Code
\end{lstlisting}

listings provides frame functions:

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