I am using memoir package and I want to generally left align tables (In contrast to figures that should be centered). I am using the hmisc latex function which generates this float table code, but I didnt find a way to easily change/discard the center environment:
\begin{table}[!h]
\caption{}
\begin{center}
\begin{tabular}
...content...
\end{tabular}
\end{center}
\end{table}
I already tried the following:
\let\centering\relax
to generally disable centering. My idea is to selectively enable centering for figures. To achieve this I am trying to use the package floatrow but I without any success. Could somebody draft how to either selectively switch off or switch on centering. (Providing I am using the hmisc latex function to generate the table.)
Edit 1: Additional Question: Is there a way (and how) to disable centering (as mentioned using the \let command) but center a figure afterwards somewhere in the document ?
