두 세트 사이의 연결 기호

두 세트 사이의 연결 기호

두 세트 사이의 연결을 위해 라텍스에서 적절한 기호를 찾고 있습니다.

감사해요,

여기에 이미지 설명을 입력하세요다음 이미지 에서 이와 같은 기호를 원합니다.

답변1

이런 종류의 질문에 대한 훌륭한 리소스는 불투명하게 명명된해독하다, 에http://detexify.kirelabs.org/classify.html. 마우스로 모양을 스케치하면 모양과 비슷한 TeX 기호가 패키지 및 모드 정보와 함께 나열됩니다. 그것은 매우 서투른 기호 렌더링으로 훌륭한 작업을 수행했으며 egreg 및 LaRiFaRi가 제안한 동일한 기호와 일치하는 항목을 찾았습니다.

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

답변2

귀하의 기호는 \smallfrown에서 나온 것 같지만 amssymb위로 올려져 있습니다.

\documentclass{article}
\usepackage{amsmath,amssymb}

\newcommand{\tieconcat}{%
  \mathbin{\mathpalette\dotieconcat\relax}%
}
\newcommand{\dotieconcat}[2]{% auxiliary macro, don't use it directly
  \text{\raisebox{.8ex}{$\smallfrown$}}%
}

\begin{document}
$A\tieconcat B$

$A\sqcup B$
\end{document}

하지만 제가 선호하는 기호는 \sqcup하단에 표시한 것입니다.

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

답변3

Lua 또는 XeLaTeX를 사용할 수 있다면 이 기호의 유니코드를 사용할 수 있습니다.U+2040. 꽤 많을 겁니다이 기호를 지원하는 시스템의 글꼴. 하나를 선택하고 패키지를 로드 fontspec한 후 다음을 수행할 수 있습니다 \newcommand*{\concat}{\fontspec{your-font-name}\mathbin{\text{\symbol{"2040}}}}.

\tieconcat그러나 패키지 에 포함된 명령을 사용하는 것이 더 쉬울 것입니다 unicode-math. XITS 및 Asana 글꼴은 해당 기호를 제공합니다. 이는 다음과 같이 보일 수 있습니다.

% arara: lualatex

\documentclass{article}
\usepackage{unicode-math}

\begin{document}
\setmathfont{XITS Math}
\[
A\tieconcat B
\]
\setmathfont{Asana Math}
\[
A\tieconcat B
\]
\end{document}

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


PDFLaTeX를 사용하려면 \frown에서 mathtools또는 의 MnSymbol더 좁은 버전을 사용해야 합니다 .\smallfrownamssymb

기호를 조금 올려서 기호를 재현할 수 있습니다. 0.9ex마음에 들 때까지 조정하세요 .

% arara: pdflatex

\documentclass{article}
\usepackage{amssymb}
\usepackage{mathtools}
\newcommand*{\upFrown}{\mathbin{\raisebox{0.9ex}{$\frown$}}}
\newcommand*{\upSmallFrown}{\mathbin{\raisebox{0.9ex}{$\smallfrown$}}}

\begin{document}
$A\upFrown B \upSmallFrown C$
\end{document}

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

관련 정보