LaTex,Beamer 和 Listings 的问题
我正在尝试在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试制作一个脆弱的框架:
Try making a fragile frame:
fragile
选项对我不起作用,但它起作用了:The
fragile
option didn't work for me, but this did:Listings提供框架功能:
listings provides frame functions: