我想在段落文本中添加一个小代码块。例如:
为了做到这一点,只需在终端中运行 [code block] 命令。
有人可以帮忙吗?
答案1
答案2
这minted
包为您提供\mintinline
;因为它使用 Pygments,所以它的突出显示质量非常好:
\documentclass{article}
\usepackage{minted}
\begin{document}
You can use \mintinline{python}{def boring(args = None):} and some more text.
\end{document}