[Tex/LaTex] Sidecap package SCFigure centering

captionshorizontal alignmentsidecap

I have some problems with the sidecap package. The figure and the caption are always centered. What i want is that the figure starts at the beginning of the frame and that the caption should go until the end of the frame.

I already tried making the captionwidth larger but when i do that the caption will start in the figure. Does anybody knows the solution?

\begin{SCfigure}[][h]
    \includegraphics[scale=1]{RogowskiStroom}
    \captionsetup{width=1.2\textwidth}
    \caption[Opstelling van een Rogowski spoel bij een geleider.]{\textbf{Opstelling van een Rogowski spoel bij een geleider.} Overgenomen uit\cite{Rogowski}.}
    \label{fig_rogowski}
\end{SCfigure}

enter image description here

Best Answer

The trick is to use a big optional argument (it's the ratio between the caption width and the figure width).

\documentclass[a4paper]{article}
\usepackage[showframe]{geometry}
\usepackage{graphicx} %
\usepackage{sidecap, caption}

\begin{document}

\sidecaptionvpos{figure}{c}
\begin{SCfigure}[50][h]
\includegraphics[scale=1]{TasmanianDevil}
\caption[Opstelling van een Rogowski spoel bij een geleider.]{\textbf{Opstelling van een Rogowski spoel bij een geleider.} Overgenomen uit\cite{Rogowski}.}
\label{fig_rogowski}
\end{SCfigure}

\end{document} 

enter image description here