如何打造这一别致的亮点?

如何打造这一别致的亮点?

如今,网站以一种美观的方式显示内联计算机代码/文件,并带有背景颜色和周围圆角框,例如见下面的示例。

我怎样才能在 Latex 中重现这一现象?

谢谢

下面是截图的链接。

在此处输入图片描述

答案1

您可以尝试tcbox

\documentclass{article}

\usepackage[most]{tcolorbox}
\usepackage{lmodern}

\newtcbox{\code}[1][]{%
     size=fbox,
    tcbox raise base, nobeforeafter, 
    enhanced, colframe=gray,
    colback=gray!30, boxrule=1pt,
    fontupper=\ttfamily,
    #1}

\begin{document}

the \code{parent} section of the POM. The \code[colupper=red!70!black]{spring-boot-starter-parent} is a special \dots \code[colupper=blue!70]{dependency-management} section

\end{document}

在此处输入图片描述

相关内容