0

I want to use type an intersection symbol with a vertical line to indicate intersect transversally of submanifolds, like this:

enter image description here

The symbol I looked up on detexify isn't quite what I want (it gives me \usepackage{ amssymb } $$\pitchfork$$). Does anyone know how to get this symbol? Thanks!

Bernard
  • 271,350

1 Answers1

3

Combining other symbols:

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\[
N_1 \cap\kern-0.7em|\kern0.7em N_2
\]

\end{document}

enter image description here

ian
  • 304