Many horizontal spacing commands are of course, found in What commands are there for horizontal spacing?.
I would like to inquire if, say, invoking the \enspace command, which produces a space of .5em, if it is possible to (simply) produce a horizontal space of exactly .25em by doing something analogous to the way one would scale an includegraphics picture?
Consider the code
\documentclass[12pt]{book}
\begin{document}
\thispagestyle{empty}
\noindent Adjust space.\[10pt]
Adjust \enspace space.\[10pt]
Adjust .5\enspace space.\[10pt]
\end{document}
which produces
QUESTION: Is there something simple, along the lines of .5\enspace (which as you can see---does not work) that will produce a horizontal space (in this case) of .25em? More generally, if such can also be applied to other spacing commands such as \medspace or \quad, etc.?
Thank you.


\enspaceis\kern0.5emjust use\hspace{.25em}– David Carlisle Mar 25 '23 at 18:16