使用 LaTeX Beamer 显示代码

发布于 2024-08-19 07:09:53 字数 302 浏览 5 评论 0原文

我在 Beamer 演示文稿中使用以下 LaTeX 代码:

\begin{frame}
  \begin{figure}
  \centering
      \tiny
   \lstset{language=python}
         \lstinputlisting{code/get_extent.py}
   \end{figure}
\end{frame}

Is it possible to select certainlines from my get_extent.py file而不是全部显示?

I'm using the following LaTeX code in a Beamer presentation:

\begin{frame}
  \begin{figure}
  \centering
      \tiny
   \lstset{language=python}
         \lstinputlisting{code/get_extent.py}
   \end{figure}
\end{frame}

Is it possible to select specific lines from my get_extent.py file rather than displaying it all?

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

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

发布评论

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

评论(1

浅紫色的梦幻 2024-08-26 07:09:54

这与beamer无关;这是关于listings 功能的。其出色的手册包含更多内容。例如:

\lstinputlisting[firstline=2,lastline=5]{code/get_extent.py}

This has nothing to do with beamer; it's about a listings feature. Its excellent manual has more. For example:

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