
"내부에 점이 있는 삼각형", "내부에 원이 있는 삼각형", "내부에 점이 있는 하향 삼각형" 및 "내부에 원이 있는 하향 삼각형" 기호가 필요합니다. 나는 stix 패키지를 시도한 다음 소스 파일에 "\trianglecdot" 명령을 입력했습니다. 이것은 나에게 첫 번째 기호를 줄 수 있지만 이 패키지 stix는 좋지 않습니다. 그 동안 다른 많은 기호의 스타일을 보기 좋지 않게 만들 수도 있기 때문입니다. 나머지 세 기호에 대해서도 적합한 패키지와 명령을 찾지 못했습니다.
네 가지 기호를 모두 노출하는 방법은 무엇입니까? 많은 감사를 드립니다.
답변1
회원님 덕분에erik
여기 좀 보세요 --https://tex.stackexchange.com/a/429103/197451
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes}
\newcommand{\bluetrireddot}[1][0.5]{%
\begin{tikzpicture}
\node(t)[green,regular polygon,regular polygon sides=3,rotate=180,draw,scale=#1] at
(0,0){};
\node at (t.center)[circle,fill=red,scale=0.5*#1]{};
\node at (t.center)[circle,blue,draw,scale=#1]{};
\end{tikzpicture}}
\begin{document}
\dots images \bluetrireddot\ acquired \dots
\end{document}
답변2
\tdotcircle
인라인 모드에서만 작동하며 언더스크립트나 오버스크립트 모드와는 다릅니다.
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\usepackage{MnSymbol}
\usepackage{scalerel}
\newcommand{\upodot}[1][0pt]{%
\mathrel{\raisebox{#1}{$\odot$}}%
}
\newcommand{\tdotcircle}{\mathrlap{\mkern8.5mu\scaleobj{.55}{\upodot[2.1pt]}}\triangledown}
\begin{document}
\[a\tdotcircle b\]
\end{document}