在法国,我们写 d_1 // d_2 来表示线 d_1 和 d_2 是平行的。
我想要一个“不平行”符号。最好的方法是什么?
欢迎提供建议。
\documentclass[12pt]{article}
\let\stdparallel\parallel
\renewcommand\parallel{\mathbin{/\!/}}
\begin{document}
$d_1 \parallel d_2$
\end{document}
答案1
我会让斜线更紧密;对于否定,镜面图像看起来\smallsetminus
不错。
\documentclass{article}
\usepackage{amsmath,amssymb,graphicx}
\renewcommand{\parallel}{\mathrel{/\mkern-5mu/}}
\makeatletter
\newcommand{\notparallel}{%
\mathrel{\mathpalette\not@parallel\relax}%
}
\newcommand{\not@parallel}[2]{%
\ooalign{\reflectbox{$\m@th#1\smallsetminus$}\cr\hfil$\m@th#1\parallel$\cr}%
}
\makeatother
\begin{document}
$a \parallel b \notparallel c$
\end{document}