I would like to place an unindented \fbox inside an enumerate environment.
\begin{enumerate}
\item Some text.
\par\fbox{a}
\item Some more text.
\end{enumerate}
The above code produces:
1. Some text.
a
2. Some more text.
Is there a way to get the following?
1. Some text.
a
2. Some more text.
Of course I could fiddle around with \hspace{somenegativelength}. However, is there nothing like \reallynoindent?
enumerate. A limitation of your solution is that it only works if\box{a}is quite short. The custom label expands to the left. – severin Feb 15 '13 at 09:00