How do I left-justify my whole report? I have tried
\begin{flushleft}\end{flushleft}
But the problem is that it removes the alignment of my pictures. So is there a way to align only the text globally?
|
How do I left-justify my whole report? I have tried
But the problem is that it removes the alignment of my pictures. So is there a way to align only the text globally? |
||||
|
I recommend you load the
With this setup, all parts of your document will be typeset left-justified (or "flush-left") rather than fully-justified. Relative to the "standard LaTeX" In the standard LaTeX document classes, material contained in a "floating" environment such as |
||||
|
|
|
As far as TeX's alignment goes a graphic is just the same as a big letter, it does not treat it any differently. If you want your entire document flush left it is better to use the declaration form |
|||
|
|
\raggedrightjust after the command\begin{document}and remove all\begin{flushleft}...\end{flushleft}. Tell me if that works. – tohecz May 16 '12 at 8:10