I have a large table (with many columns), so that I decide to set its width = \paperwidth. I tried the following:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{table}[htb]
\caption{something}\label{t:something}
\centering
\noindent\resizebox{\paperwidth}{!}
{
\begin{tabular}{ccc}
1 & 2 & 3 \\
4 & 5 & 6
\end{tabular}
}
\end{table}
\end{document}
The problem is, the table is shifted to the right (portion to the left is empty, whereas part of the table at right side is cropped). My question is, how to set it to center?
\makebox[\textwidth][c]{\resizebox{\paperwidth}{!}{ ... }}works? – Torbjørn T. Sep 23 '18 at 10:18adjustboxmethod in https://tex.stackexchange.com/a/39436/? Edit 2: working example on Overleaf: https://v2.overleaf.com/read/rcxgcnxrcdsv – Torbjørn T. Sep 23 '18 at 10:23llncsdocument class -- possibly that creates the problem I think. – hola Sep 23 '18 at 10:47\makeboxnot working. (It works fine also withllncsfor me on Overleaf, see the link above again.) – Torbjørn T. Sep 23 '18 at 10:53