LaTeX의 Word에서 이러한 특별한 멋진 글머리 기호를 어떻게 만들 수 있나요?

LaTeX의 Word에서 이러한 특별한 멋진 글머리 기호를 어떻게 만들 수 있나요?

여러 개의 총알 이미지

그래서 위 이미지의 첫 번째 줄 왼쪽에서 다섯 번째와 같은 총알을 만들고 싶었습니다. 원하는 대로 사용자 정의할 수 있으며 색상이나 모양 등을 변경할 수도 있습니다. 그런 총알을 만드는 방법을 알려주실 수 있나요?

여기에 이미지 설명을 입력하세요여기에 이미지 설명을 입력하세요

답변1

완벽하지는 않지만 출발점을 제공해야 합니다.

\documentclass[11pt]{article}
\usepackage{enumitem}
\usepackage{tikz}
\newlength{\fsize}
\makeatletter
\setlength{\fsize}{\f@size pt}
\makeatother
\newcommand*{\specialbullet}{%
    \begin{tikzpicture}[x=\fsize,y=\fsize]
        \fill [top color=red, bottom color=white] (0,.15) rectangle (.3,.4);
        \fill [left color=violet, right color=white] (.3, .1) rectangle (.65,.35);
        \fill [left color=yellow, right color=white] (.2,.35) rectangle (.5,.6);
        \draw (.4,.05) -- (.4,.65);
        \draw (.2,.2) -- (.75,.2);
    \end{tikzpicture}%
}
\begin{document}
\begin{itemize}[label=\specialbullet]
    \item An item
    \item Another one
\end{itemize}
\end{document}

답변2

이를 수행하는 방법의 예는 다음과 TikZ같습니다 enumitem.

\documentclass{article}

\usepackage{tikz}
\usepackage[]{enumitem}

\newcommand{\myfancylabel}{\begin{tikzpicture}[every node/.style={rotate=45}]%
\node[fill,inner sep=0pt,minimum size=0.5ex] at (0ex,0.5ex) {};%
\node[fill,inner sep=0pt,minimum size=0.5ex] at (0ex,-0.5ex) {};%
\node[fill,inner sep=0pt,minimum size=0.5ex] at (0.5ex,0ex) {};%
\node[fill,inner sep=0pt,minimum size=0.5ex] at (-0.5ex,0ex) {};%
\end{tikzpicture}}

\begin{document}
\begin{itemize}[label=\myfancylabel]
    \item Test 1
    \item Test 2
    \item Test 3
\end{itemize}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보