I use longtable for some very long tables showing evaluation results. They look ok, but I have two problems with them:
- For some reason, I don't understand, the table seems to be too wide. When I sum up all my
pvalues I get to0.98/textwidth. Why should this be broader then/textwidth? - LaTeX writes only across the right margin. Is there any way to tell it to write onto both side margins to center the table? I tried the solution from here, but it does not do anything.
Here is a MWE:
\documentclass{scrartcl}
\usepackage{longtable}
\begin{document}
\begin{longtable}[c]{|p{0.26\textwidth}|p{0.12\textwidth}|p{0.12\textwidth}|p{0.12\textwidth}|p{0.12\textwidth}|p{0.12\textwidth}|p{0.12\textwidth}|}
\hline
\textbf{settings} & \textbf{micro-average precision} & \textbf{micro-average recall} & \textbf{micro-average f-score} & \textbf{macro-average precision} & \textbf{macro-average recall} & \textbf{macro-average f-score} \\ \hline
\end{longtable}
\end{document}

