我正在尝试写出表示非理想的符号。我一直用它\lhd
来表示理想,所以我想用同样的方式划一条线,\neq
或者\nless
对\eq
和执行\less
。
有什么建议么?
答案1
\centernot
从同一个包中使用。
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{centernot}
\begin{document}
$\centernot{\lhd}$
\end{document}
答案2
您可以使用生成的符号\not\lhd
或完整的 smybol \nlessclosed
,它们都来自包MnSymbol
。根据您已经使用的符号包,它可能会将一些符号更改为它自己的符号。
\documentclass{article}
\usepackage{MnSymbol}
\newcommand{\notlhd}{\nlessclosed}
\begin{document}
$\nlessclosed$ $\notlhd$ $\not\lhd$
\end{document}