对齐 tcolorbox 内部和外部的行数

对齐 tcolorbox 内部和外部的行数

我有这个 MWE

\documentclass{article}

\usepackage[many]{tcolorbox}
\usepackage{minted}
\usepackage{graphicx}
\usepackage{mwe}

\setminted{linenos}

\tcbset{
    common/.style={
        before=\vskip2\baselineskip\noindent,
        enhanced,
        title empty,
        frame empty,
        segmentation empty,
        middle=0.7cm,
        top=0.5cm,
        left*=1.5mm, right*=1.5mm, bottom=0pt
    }
}

\DeclareTColorBox{coolbox}{O{}mO{}}{
    common,
    interior code={
        \filldraw[ultra thick,fill=white,draw=black,rounded corners=10pt,#1] (frame.north west) -- (frame.north east)[sharp corners] -- (frame.south east);
        \node at  ([xshift=-30pt,yshift=3pt]interior.north east) {\includegraphics[#3]{#2}};
    },
}

\begin{document}

\begin{coolbox}{example-image}[width=1.5cm,angle=-20]
    \begin{minted}{bash}
ENV="() { :; }; echo foo" bash
    \end{minted}
\end{coolbox}

\begin{minted}{bash}
ENV="() { :; }; echo foo" bash
\end{minted}

\end{document}

产生 输出 使用

latexmk -interaction=nonstopmode -shell-escape -synctex=1 -lualatex ./foo.tex

但您可以注意到,行数存在问题(我用紫色突出显示)。特别是第一个minted环境在里面coolbox,但第二个不在。所以第一个minted被挤压在里面coolbox

问题:是否可以避免左侧挤压coolbox(仅在左侧,因为它始终打开)以对齐其外部和内部的行数?

答案1

您的设置对此tcolorbox负责。在您的\tcbset命令中,您使用left*=1.5mm会导致识别。tcolorbox 文档/tcb/left*=⟨length⟩读取

设置 /tcb/left 使得 ⟨length⟩ 是左边界框和文本部分之间的距离。

就您而言,设置就足够了left*=0mm

相关内容