[Tex/LaTex] \null and when do we need to use it

horizontal alignmentmacrosvertical alignment

Up to now I don't understand well what \null actually is and when we need it. I have only known that it can be used to create hypothetical anchors as follows.

\documentclass{article}
\usepackage[a6paper,margin=2cm]{geometry}
\parindent=0pt

\begin{document}
\hfill xport \hfill\null\\
\null\hrulefill{} never \hrulefill\par
\hrulefill{} dies. \hrulefill\par
\hfill really? \hfill\null\par


\newpage
\null
\vfill
\hfill The End \hfill\null
\end{document}
  1. What is \null and when do we need to use it?
  2. Why do \hrulefill and \hfill need starting \null when they follow \\ but not need \null when they follow \par?
  3. Why does \hfill always need ending \null but \hrulefill not need it?

Best Answer

  1. What is \null and when do we need to use it?
    \null is just \hbox{}. When is it needed? Never, actually.

  2. Why do \hrulefill and \hfill need starting \null when they follow \\ but not need \null when they follow \par?
    \hrulefill is \leavevmode\leaders\hrule\hfill\kern0pt, so it's not exactly like \hfill, as it adds a null kern after it, but very similar to it. The difference between \par\hrulefill and \\\hrulefill is that after a \par there's a box (the indent box, even with \noindent), but after \\ there's no box on the line, so glue disappears (and leaders, also).

  3. Why does \hfill always need ending \null but \hrulefill not need it?
    Because of the \kern0pt at the end of \hrulefill.

  4. Why is the first line after \begin{document} not regarded as a paragraph recall that starting \null is needed by \hfill there?
    Could you be more precise about this?