电力线样式的 Colorbox

电力线样式的 Colorbox

我想根据图像中的电力线样式在我的 latex 文档中添加颜色框。如何实现?使用 tcolorbox 或 tikz 包的简单示例即可。

在此处输入图片描述

答案1

欢迎!使用 Ti 创建此内容没有什么大障碍Z。

\documentclass[tikz,border=3mm]{standalone}
\usepackage{fontawesome}
\usetikzlibrary{backgrounds,chains,shapes.symbols}
\begin{document}
\begin{tikzpicture}[font=\ttfamily,start chain=A going right,
    node distance=1ex,
    nodes={minimum height=1.6em,on chain,text depth=0.25ex},
    pp/.style={append after command={
    ([yshift=0.2ex]\tikzlastnode.south east) 
        edge[gray!20,line cap=rect,semithick]
     ([xshift=1ex]\tikzlastnode.east)
    ([yshift=-0.2ex]\tikzlastnode.north east) 
        edge[gray!20,line cap=rect,semithick]
     ([xshift=1ex]\tikzlastnode.east)
     }},
    show background rectangle,inner frame sep=0.5ex,
    background rectangle/.style={fill=black}]
  \path node[signal,fill=green!60,signal from=nowhere,signal to=east]{N}
  node[xshift=-1.1ex,signal,fill=gray!10,signal from=west,
      signal to=east](pedro){pedro}
  [text=gray!20]
  node {\Large\faGithub}
  node{master}
  node[text=red!50]{+1}
  node[pp]{\faFolderOpen}
  [node distance=2ex]
  node[pp]{git-repos}
  node[pp]{private};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容