이와 같은 표준 또는 Łukasiewicz 접속사에 대한 라텍스 기호를 어떻게 쓸 수 있습니까?
감사합니다
답변1
이는 귀하의 예에서와 같이 "S"와 "L"을 기울임꼴이 아닌 모양으로 유지합니다.
\documentclass{article}
\usepackage{stackengine}
\begin{document}
$ a \mathrel{\stackunder[-1pt]{$\wedge$}{\tiny L}}
b \mathrel{\stackunder[-1pt]{$\wedge$}{\tiny S}} c$
\end{document}
답변2
아래 첨자나 위 첨자에 필요하지 않은 경우 다음 방법을 따르세요.
\documentclass{article}
\newcommand{\landl}{\mathbin{\landx{L}}}
\newcommand{\lands}{\mathbin{\landx{S}}}
\newcommand{\landx}[1]{%
\ooalign{%
$\land$\cr
\noalign{\kern.5ex}
\hidewidth$\scriptscriptstyle#1\mkern1.5mu$\hidewidth\cr
}%
}
\begin{document}
$a\landl b\lands c$
\end{document}