2

Consider the following code:

\documentclass{article}
\begin{document}
\begin{tabbing}
FOO\=\kill
FOO\>BAR\\  
\>O\'BAR\\  
\end{tabbing}
\end{document}

The output is

output after compiling with latex

How to remove the space after "O" in the second line, moving this "O" to the right, i.e., to get

FOOBAR
  OBAR

?

This question is specific to tabbing (we all know how to achieve this result in other environments, say, tabular).

1 Answers1

3

enter image description here

30 years of tex use and first time I have ever set this parameter:-)

\documentclass{article}
\begin{document}
\setlength\tabbingsep{0pt}
\begin{tabbing}
FOO\=\kill
FOO\>BAR\\  
\>O\'BAR\\  
\end{tabbing}
\end{document}
David Carlisle
  • 757,742