I'm trying to understand what is the purpose of \null command. To do this I wrote the code:
\documentclass[11pt]{article}
\begin{document}
Ciao ciao \null \null \null \null ciao
ciao
\end{document}
but it seems to do nothing. When is it used alone?
Thank you in advance.
\nulldoes an\hbox{}, which kind of "anchors" some points. You can see the effect witha \hfill b \hfillanda \hfill b \hfill\null. Herbert's answer in the linked question describes precisely what\nullis for. – Phelype Oleinik Aug 15 '18 at 15:45\null. You won't find it. This means that it is not a user level command. In the LaTeX kernel it is used in the definition of\verb,\textcommabelowand of\textcommaabove; also in the some internal commands and a couple of macros imported from plain TeX. – egreg Aug 15 '18 at 17:22