수학 모드의 Protosem 패키지

수학 모드의 Protosem 패키지

기호 목록에는 테이블 n이 있습니다. 412: protosem원시 셈족 문자. 수학 모드에서 이러한 문자를 사용할 수 있습니까?

\documentclass[a4paper,12pt]{article}
\usepackage{protosem}
\begin{document}
\textproto{\Aayin}
\end{document}

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

여기에 임시가 있습니다:

   \documentclass[a4paper,12pt]{article}

    \usepackage{amsmath}
    \usepackage{protosem}
    \usepackage{graphicx}
    \newcommand{\disgiunt}{\rotatebox[origin=c]{180}{\Avav}}
    \begin{document}
    \textproto{\Avav} it is only in text mode. But in math-mode you can have $C\disgiunt D$
    \end{document}

답변1

답은 \text아래 첨자나 위 첨자에서 기호의 크기가 바뀌도록 순서대로 사용하는 것이고 \textproto{Avav}.

\documentclass[a4paper,12pt]{article}

\usepackage{amsmath}
\usepackage{protosem}
\usepackage{graphicx}

\newcommand{\disjoint}{%
  \mathrel{%
    \text{\rotatebox[origin=c]{180}{\textproto{\Avav}}}%
  }%
}

\begin{document}

$C\disjoint D_{C\disjoint D}$

\end{document}

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

또는 \multimap에서 회전합니다 amssymb.

\documentclass[a4paper,12pt]{article}

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}

\newcommand{\disjoint}{%
  \mathrel{%
    \text{\rotatebox[origin=c]{-90}{$\multimap$}}%
  }%
}

\begin{document}

$C\disjoint D_{C\disjoint D}$

\end{document}

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

관련 정보