删除 Tikz SMart 图表的边框

删除 Tikz SMart 图表的边框

我想删除边框,将下图中的框背景设置为深色。文档没有帮助我。

\begin{center}
\smartdiagramset{
set color list={blue,green,orange},
% border=none,
priority arrow width=2cm,
priority arrow height advance=2.25cm
}
\smartdiagram[priority descriptive diagram]{PGF,Ti\textit{k}Z,Smartdiagram}
\end{center}

最小示例:https://www.overleaf.com/4876789zgmqhx#/14983098/

请帮忙。

答案1

文档smartdiagram列出了 的许多选项smartdiagramset,但其中许多选项特定于每种图表类型。以下内容可能接近您想要的。

\documentclass[border=10pt]{standalone} 
\usepackage{smartdiagram}
\smartdiagramset{border color=none,uniform color list=blue for all items}

\begin{document}
\tikzset{text=white}
\smartdiagram[priority descriptive diagram]{
  Develop a document structure,
  Choose a document class,
  Select suitable packages,
  Setup the document preamble,
  Write your document,
  Finetune the layout}
\end{document}

在此处输入图片描述

相关内容