I got an Error message from the MikTex console trying to convert my .tex document in pdf. I used the command: pdflatex Test.tex The Error is Undefined control sequence. It seems LaTex doesn't know the command: \nmid while the command \mid works fine. this is my whole code:
\documentclass [a4paper] {article}
\usepackage{amsmath}
\everymath{\displaystyle}
\begin {document}
$\nmid$
\end{document}
Edit: It seems that i'm very dumb if you include \usepackage{amssymb} in the code it works.