When using the description environment the paragraph text (after the item heading) is flushleft but raggedright. I want it to be fully justified (right and left). If I put the text in flushright environment the left side becomes jagged and including both flushright and flushleft does not work.
\begin{description}
\item[heading1:]This is the text that I want justified. If there is enough text to make it multi-line the right hand edge is always ragged but I need it to be flush on both the left and right side.
\item[headin2:]etc...
\end{description}
Thanks all.
Last edited by vaalsta on Thu Jul 22, 2010 10:28 am, edited 1 time in total.
\documentclass{article}
\begin{document}
\begin{description}
\item[heading1:]This is the text that I want justified. If there is enough text to make it multi-line the right hand edge is always ragged but I need it to be flush on both the left and right side.
\item[heading2:]etc...
\end{description}
\end{document}
If you would post a compilable minimal example we could see the problem - it's caused somewhere else in your code.
Hi Stefan,
Thanks for the welcome and the reply. In starting to create a MWE I realised the problem. I was using a document template someone else had set up and I failed to see the \raggedright command hidden in the preamble. Removing this fixed the problem and didn't introduce any for my document.