I have the following LaTeX code:
\documentclass{article}
\begin{document}
\begin{description}
\item[foo]
bar
\item[baz]
bang
\end{description}
\end{document}
and it produces the following PDF:

I want the definition of the item (in this case the "bar" and the "bang") to be on a separate line from the item (eg the "foo" and the "baz").
However this is part of a system that autogenerates documention, so I can't change the source code. I can put style things in the header of each documention, so I need some sort of LaTeX command that will make all definition list (in LaTeX speak, a "descripition list") go onto a new line.


\\after the\hfillmight not be necessary, since\hfillalready creates a vertical space. Adding\\might make the space disproportionately large. – xji Apr 01 '17 at 18:32\\to a single\, as the single\works for almost 8 years without any problems. – Julian Apr 02 '17 at 20:43\you get the item text in the same line. The edit history is deceiving due to the \-bug (see https://tex.meta.stackexchange.com/q/7168/35864) – moewe Jul 09 '17 at 17:03itemizeenvironment just after the definition. If it's plain text, then \ would indeed be needed. Sorry for the misunderstanding. I'll just leave this comment here so that people who want to start another environment immediately after the definition could take note. Whoever would review the current edit should just reject it (An edit can't be cancelled after submitted). Thanks. – xji Jul 09 '17 at 21:21