我正在尝试用乳胶画这幅画

我正在尝试用乳胶画这幅画

我最近展示了乳腺癌的统计数据并制作了一个 powerpoint 图像:

在此处输入图片描述

请注意,图标并不完全相同(我很幸运地找到了不同颜色的类似图标)。我想知道我是否可以用乳胶画出这个。我正在写我的硕士论文。

答案1

您的图形看起来像是来自 symbola 字体的图形:

% arara: lualatex

\documentclass{article} 
\usepackage{fontspec}
\usepackage{xcolor}
\newcommand*{\woman}[1][gray]{{%
\fontspec{symbola} % symbola.ttf
\textcolor{#1}{%
\symbol{"1F6BA}}}}
% if you are too lazy to write many repeated commands...:
\usepackage{expl3}
\ExplSyntaxOn
\cs_new_eq:NN \Repeat \prg_replicate:nn
\ExplSyntaxOff

\begin{document} 
\Huge
\woman\woman[magenta]\Repeat{8}{\woman}

\Repeat{3}{\woman}\woman[magenta]\Repeat{6}{\woman}

\Repeat{6}{\woman}\woman[black]\Repeat{3}{\woman}
\end{document}

在此处输入图片描述

答案2

灵感pic迸发在 percusse 的这个

\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning,arrows,shapes.geometric}
\begin{document}

\tikzset{
    woman/.pic={    
\node[transform shape, circle,fill,minimum size=4.5mm] (head) at (0,0) {};
\node[transform shape, draw, fill, trapezium, trapezium angle=55, trapezium stretches=true, rounded corners=2pt, minimum width=0.7cm, minimum height=1cm,
,below = 1pt of head, inner sep=1pt] (body) {};
\draw[transform shape, line width=1.5mm,round cap-round cap] ([shift={(-1mm,1mm)}]body.south) --++(-90:6mm);
\draw[line width=1.5mm,round cap-round cap] ([shift={(1mm,1mm)}]body.south) --++(-90:6mm);
\draw[line width=1.25mm,round cap-round cap, rounded corners] ([yshift=-.5\pgflinewidth]body.north) --++(2.5mm,0)--++(-75:6mm);
\draw[line width=1.25mm,round cap-round cap, rounded corners] ([yshift=-.5\pgflinewidth]body.north) --++(-2.5mm,0)--++(255:6mm);
}}

\begin{tikzpicture}
\foreach \i [count=\ni from 0] in {1,...,10}{
\foreach \j [count=\nj from 0] in {1,...,3}{
\pic[black!30] at (\ni,-2.5*\nj) {woman};
}}

\pic[pink,scale=1.02] at (1,0) {woman};
\pic[pink,scale=1.02] at (3,-2.5) {woman};
\pic[scale=1.02] at (6,-5) {woman};


\end{tikzpicture}
\end{document}

在此处输入图片描述

答案3

虽然不是完全相同的符号,但它是一个起始解决方案。

\documentclass[11pt,a4paper]{standalone}
\usepackage{marvosym}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}[xscale=.25,yscale=.5]
\foreach \i in {1,...,10}{
\foreach \j in {1,...,3}{
\node at (\i,\j) {\textcolor{black!30}{\Ladiesroom}};
}}
\node at (2,3) {\textcolor{red}{\Ladiesroom}};
\node at (4,2) {\textcolor{red}{\Ladiesroom}};
\node at (7,1) {\textcolor{black}{\Ladiesroom}};
\end{tikzpicture}
\end{document}

在此处输入图片描述

附言:如果这个女性偶像就足够了,您可以使用 FontAwesome 字体。

相关内容