In a twosided ClassicThesis document, I want to put 2 TikZ pictures side by side, so that their total width is bigger than \textwidth.
If I use KOMA's addmargin as described in this question, the subfigures just ignore it.
Memoir's \centerfloat from this question doesn't actually center the figures. \makebox from the last question with subfigures seems too complicated because I will need to make a box in every subfigure.
How to center a wide figure in ClassicThesis relative to the whole page? That is, I want to have a margin of, say, 1 cm on the left, and the same 1 cm on the right.
Upd: The answer below is valid to get absolute centering if used with different inner and outer margin adjustments, like begin{addmargin*}[-0.1\textwidth]{-0.3\textwidth}
\documentclass[
twoside,
openright
]{scrreprt}
\usepackage{filecontents}
\begin{filecontents}{pic.tikz}
\begin{tikzpicture}
\begin{axis}[
xmin=3.75, xmax=4.75,
]
\end{axis}
\end{tikzpicture}%
\end{filecontents}
\usepackage{subcaption, tikz, pgfplots}
\pgfplotsset{compat=1.6,
width=\textwidth,
height=0.25\textheight,
tick label style={font=\tiny},
legend style={font=\tiny, at={(0.0,1.05)}, anchor=south west},
legend columns=10,
xlabel shift={-1ex},
xlabel style={font=\tiny},
ylabel shift={-1em},
ylabel style={font=\tiny},
}%
\makeatletter
\newcommand*{\centerfloat}{%
\parindent \z@
\leftskip \z@ \@plus 0fil \@minus \textwidth
\rightskip\leftskip
\parfillskip \z@skip}
\makeatother
\begin{document}
Text width. Text width. Text width. Text width. Text width. Text width.
\begin{addmargin*}[-3em]{-4em}
Text for testing margins. Text for testing margins. Text for testing margins. Text for testing margins.
\begin{figure}[h]
\centerfloat
\begin{subfigure}[b]{0.65\textwidth}
\input{pic.tikz}%
\caption{Left picture}
\end{subfigure}
~
\begin{subfigure}[b]{0.65\textwidth}
\input{pic.tikz}%
\caption{Right picture}
\end{subfigure}
\end{figure}
\end{addmargin*}
\clearpage
Text for testing margins. Text for testing margins. Text for testing margins. Text for testing margins.
\begin{figure}[h]
\centerfloat
\begin{subfigure}[b]{0.65\textwidth}
\input{pic.tikz}%
\caption{Left picture}
\end{subfigure}
~
\begin{subfigure}[b]{0.65\textwidth}
\input{pic.tikz}%
\caption{Right picture}
\end{subfigure}
\end{figure}
\end{document}

