I would like to indent a tabular environment so that it is to the left than usual. This is because my table doesn't quite fit the page. (Don't worry that it is not the "right" thing to do; this is just an informal document.)
\documentclass[fontsize=11pt]{scrartcl}
\usepackage{amsmath,amssymb,amsfonts,amsthm,url,hyperref}
\begin{document}
\begin{tabular}{ | p{3cm} | p{3cm} | p{3cm} | p{2cm} | p{2cm} | p{2cm} | }
\hline
abcdabcd abcd & abcdabcd abcd & abcdabcd abcd & abcdabcd & abcdabcd & abcdabcd \\ \hline
abcdabcd & abcdabcd & abcdabcd & abcdabcd & abcdabcd & abcdabcd \\ \hline
abcdabcd & abcdabcd & abcdabcd & abcdabcd & abcdabcd & abcdabcd \\ \hline
\end{tabular}
\end{document}
You can see that the table overflows to the right of the document. So it would be nice to move the whole table a little to the left, so the two sides balance out.
I don't want to use \setlength{\parindent}, because that would set the indent globally. It doesn't make sense to use \indent or \noindent either, because that would only make it stay the same or move it to the right. How can I do it?




\documentclass...\begin{document}...\end{document}, it should compile and contain close to the minimal amount of code needed to explain/demonstrate what you are asking. This saves everyone time:) – Nov 21 '14 at 04:39tabular. – Werner Nov 21 '14 at 05:47