我的 tex 文件如下所示:
\documentclass[varwidth=13.20cm,border=2mm]{standalone}
\usepackage{minted}
\usemintedstyle{solarized}
\begin{document}
\begin{LARGE}
\inputminted{php}{create_array.php}
\end{LARGE}
\end{document}
和create_array.php
(以及所有其他 php 文件)都以行 开头<?php
。该行是其代码运行所必需的,也是突出显示工作所必需的...但我不想在我生成的 pdf 中显示该行。是否可以从我生成的文档中省略该行?
答案1
感谢@David Carlisle...使用 Minted 的firstline
选项如下:
\begin{LARGE}
\inputminted[firstline=2]{php}{create_array.php}
\end{LARGE}