I defined the following command
\NewDocumentCommand{\fam}{O{\mathbb{N}}mm}{\left\{ #2_#3 \right\}_{#3 \in #1}} % Family notation (set with indices)
but I get the compile error Command '\fam' already defined. I thought I used some package that defined \fam, but I was wrong because the same error appears in a .tex file with no loaded packages. So what is \fam? (I didn't find anything online so far and the output of latexdef fam is meaningless to me). I'll rename my command to \family anyway.
Here is an example snippet:
\documentclass{article}
\newcommand{\fam}{whatever}
\begin{document}
\[\fam\]
\end{document}
As you can see the command \fam is not defined by any package (because I get the same error) and I can't figure out what it does