Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I know about \! which creates a thin negative space but is there any native command for large negative spaces (like quad or qquad for positive spaces) ?

share|improve this question

2 Answers

up vote 20 down vote accepted

In text mode: \kern-1em equals "minus quad"

In math mode: \mkern-18mu equals "minus quad"

For "minus qquad" use -2em or -36mu respectively.

share|improve this answer

For LaTeX, horizontal spacing is achieved using \hspace{<len>} where <len> is a length (either positive or negative); TeX's equivalent to \hskip. Since \quad [\qquad] is equivalent to a horizontal skip of 1em [2em], use \hspace{-1em} [\hspace{-2em}] to obtain a negative space amount.

\kern inserts a space depending on the mode that TeX is in, and could therefore be either vertical or horizontal.

Text-based spacing can be inserted using any of the \phantom-related commands: \phantom{<stuff>}, or \hphantom{<stuff>}, for example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.