![Pacote Protosem em modo matemático](https://rvso.com/image/420754/Pacote%20Protosem%20em%20modo%20matem%C3%A1tico.png)
Na lista dos símbolos existe uma tabela n. 412: protosem
Personagens proto-semitas. É possível usar esses caracteres no modo matemático?
\documentclass[a4paper,12pt]{article}
\usepackage{protosem}
\begin{document}
\textproto{\Aayin}
\end{document}
Aqui há uma tentativa:
\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}
Responder1
A resposta é usar \text
para que o símbolo mude de tamanho em subscritos ou sobrescritos e \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}
Como alternativa, gire \multimap
de 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}