I want to use captions beside figures, so I used the floatrow package. Yet, as illustrated below, I can't auto change the positioning of the caption text from left to right, depending on odd or even page.
Any thoughts would be appreciated.
\documentclass[12pt]{book}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage[paperheight=24.0cm, paperwidth=20cm, top=1.75cm,bottom=2.0cm,left=2.0cm,right=6.0cm, headsep=0.25cm]{geometry}
\usepackage{floatrow}
\floatsetup[widefigure]{margins=hangleft,capposition=beside,capbesideposition={top,left},floatwidth=\textwidth}
\begin{document}
\lipsum[6]
\begin{figure*}[htp]
\includegraphics[width=0.5\textwidth]{image_test.png}
\caption{This is the first caption text}
\end{figure*}
\lipsum[6] \lipsum[6] \lipsum[6] \lipsum[6]
\begin{figure*}[htp]
\includegraphics[width=0.5\textwidth]{image_test.png}
\caption{This is the second caption text}
\end{figure*}
\lipsum[6]
\end{document}


