如何插入 StackExchange 风格的代码?

如何插入 StackExchange 风格的代码?

我想在这样的报告中突出显示一些代码内容:

等等等等...然后你应该用它./runprog来启动程序等等...

我怎样才能做到这一点?

答案1

使用colorbox命令xcolor包裹:

\documentclass{article}

\usepackage{xcolor}
    \newcommand{\SEBox}[1]{\texttt{\colorbox{gray!14}{#1}}}

\begin{document}
     \SEBox{blahblah}
\end{document}

灰色背景上等宽的示例文本

相关内容