LaTex에 대화 아이콘이 있나요?

LaTex에 대화 아이콘이 있나요?

현재 LaTex에서 "토크 아이콘"을 찾고 있는데 "The Comprehensive LATEX Symbol List"에서는 찾을 수 없습니다. LaTex에 대한 대화 아이콘(이와 같은 것)이 있는지 아는 사람이 있습니까?여기에 이미지 설명을 입력하세요)?

답변1

언제든지 자신만의 것을 만들 수 있습니다. 이렇게 하면 필요한 경우 세부 정보를 변경할 수 있습니다.

\documentclass{article}
\usepackage{tikz}
\usepackage{scalerel}
\newcommand\TalkingHead[1][]{\scalerel*{\begin{tikzpicture}[#1]
\draw[xscale=-1,line width=pi*1mm] (-1,-4) to[out=50,in=-90,looseness=1.4] (-1,-3) to[out=-160,in=0]
   (-2,-3.2) to[out=180,in=-120] (-2.7,-2) to[out=120,in=-120] (-2.9,-1.5)
   to[out=120,in=-120] (-2.95,-1.1) to[out=60,in=-30] (-3.2,-0.9)
   to[out=150,in=-120] (-3,0.4) to[out=60,in=-90] (-3,1.2) 
   to[out=90,in=90,looseness=1.8] (3.3,1.2)
   to[out=-90,in=90,looseness=0.8] (2,-2)
   to[out=-90,in=150,looseness=0.8] (3.2,-4) -- cycle;
  \draw[line width=pi*1mm,shift={(pi,-pi/2)}] 
    foreach \X in {1,2,3} {(45:\X) arc[start angle=45,end
  angle=-45,radius=\X]};
\end{tikzpicture}}{Q}}
\begin{document}
\TalkingHead

{\Huge\TalkingHead}
\end{document}

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

\scalerel*글꼴 크기에 따라 기호의 크기를 조정하는 데 사용됩니다.

PS 머리 윤곽의 원점에 대해 의아해 하시는 경우:이것은 퍼즐을 해결.

더 다양하게 만들 수 있는 방법은 여러 가지가 있습니다. 예를 들어여기.

\documentclass{article}
\usepackage{tikz}
\usepackage{scalerel}
\makeatletter% cf https://tex.stackexchange.com/a/480818
\DeclareRobustCommand{\checkbold}[1]{% https://tex.stackexchange.com/a/24635/121799
 \def#1{0}%
 \edef\@tempa{\f@series}\edef\@tempb{\bfseries@rm}%
 \ifx\@tempa\@tempb%
  \def#1{1}%
 \fi%
 \edef\@tempb{\bfseries@sf}%
 \ifx\@tempa\@tempb%
  \def#1{1}%
 \fi}
\makeatother 
\newcommand\TalkingHead[1][]{\checkbold\tmp%
\scalerel*{\begin{tikzpicture}[line width={(1+0.67*\tmp)*pi*1mm},#1]
\path[use as bounding box] (-3.7,-4.2) rectangle (6.4,4.72);
\draw[xscale=-1] (-1,-4) to[out=50,in=-90,looseness=1.4] (-1,-3) to[out=-160,in=0]
   (-2,-3.2) to[out=180,in=-120] (-2.7,-2) to[out=120,in=-120] (-2.9,-1.5)
   to[out=120,in=-120] (-2.95,-1.1) to[out=60,in=-30] (-3.2,-0.9)
   to[out=150,in=-120] (-3,0.4) to[out=60,in=-90] (-3,1.2) 
   to[out=90,in=90,looseness=1.8] (3.3,1.2)
   to[out=-90,in=90,looseness=0.8] (2,-2)
   to[out=-90,in=150,looseness=0.8] (3.2,-4) -- cycle;
  \draw[shift={(pi,-pi/2)}] 
    foreach \X in {1,2,3} {(45:\X) arc[start angle=45,end
  angle=-45,radius=\X]};
\end{tikzpicture}}{B}}
\begin{document}
Ppf \TalkingHead\space blub\par 
{\bfseries Ppf \TalkingHead\space blub}\par

\bigskip
{\Huge Ppf \TalkingHead\space blub\par
{\bfseries Ppf \TalkingHead\space blub}}

\end{document}

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

답변2

화성의 인류학자에게 '강력한 언어 등급'이라고도 알려진 유니코드 말하는 머리 이모티콘(U+1F5E3)의 구현은 최근 행성 폐쇄를 시작한 사람과 더 비슷해 보입니다.

말하기

돌고래 같은 음파를 지닌 Tikz 버전이 훨씬 더 좋습니다.

관련 정보