着色符号

着色符号

我有很多数据点,它们都已绘制成图表。我需要制作一个表格,其中包含这些点,并将符号作为其中一列。我需要在蓝色圆圈内刻一个红点。这必须在列中。“我还需要一个红点,该红点刻在一个三角形内的蓝色圆圈内。”我该怎么做呢?

答案1

像这样?使用缩放因子或更改命令定义中的\bluereddot[...]默认因子。0.3

\documentclass{article}

\usepackage{tikz}

\newcommand{\bluereddot}[1][0.3]{%
  \begin{tikzpicture}[scale=#1]
    \draw[fill=red,red] (0,0) circle (0.15);
    \draw[blue] (0,0) circle (0.5);
  \end{tikzpicture}%
}


\begin{document}

\bluereddot[0.1]
\bluereddot
\bluereddot[0.5]

\bluereddot[2]

\end{document}

在此处输入图片描述

相关内容