Tikz 中框内的颜色

Tikz 中框内的颜色

我想在框里填充浅蓝色。

\node   at (0,-1.25) {\boxed{$+$}};

如果我使用

\node[fill=blue!20]   at (0,-1.25) {\boxed{$+$}};

颜色也出来了。

请帮我。

答案1

正如我的评论所述,这是您的问题和可能的解决方案:

盒装

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{amsmath}
\begin{document}
    \begin{tikzpicture}
        \node {\boxed{$+$}};
        \node[fill=blue!20]   at (0,-1) {\boxed{$+$}};
        \node[draw,inner sep=4pt,fill=blue!20] at (0,-2) {$+$};
    \end{tikzpicture}
\end{document}

相关内容