[Tex/LaTex] how to align longtable at the left side

horizontal alignmentlongtable

I'm using longtable package to create tables, that take more than one page.
But be default longtable is centered. How to left-align a longtable?

Best Answer

The documentation says that one can use the optional argument

\begin{longtable}[l]{...}

for getting left alignment for a single longtable. Use

\setlength{\LTleft}{0pt}

if you want left alignment for all longtable environments.

Related Question