![數學模式下的 Protosem 包](https://rvso.com/image/420754/%E6%95%B8%E5%AD%B8%E6%A8%A1%E5%BC%8F%E4%B8%8B%E7%9A%84%20Protosem%20%E5%8C%85.png)
在符號列表中有一個表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}