代替図とキャプション

代替図とキャプション

私はdocumentclass articleを使用しています。

サイドキャプションを交互に表示しようとしています。右側にはうまく設定しましたが、交互に表示するのが問題です。

\documentclass[a4paper,12p]{article}

\usepackage{graphicx}       %% allow graphics
\newcommand{\xfig}[2]{\scalebox{#1}{\input{"figures/#2.pdftex_t"}}}

\usepackage[font=normalsize]{caption}
\usepackage{floatrow}
\floatsetup[figure]{capposition=beside,capbesideposition={top, outside}, floatwidth=0.7\textwidth, capbesidewidth=2\marginparwidth}
\captionsetup[capbesidefigure]{format=plain, justification=RaggedRight,
font=normalsize}

\renewcommand{\figurename}{\textbf{Case}}

\begin{document}

\begin{figure} [t] 
   \scalebox{0.36}{\includegraphics*[viewport=190 35 1050 900]{figures/1.JPG}} 
 \caption{  \textbf{Date \linebreak \\  Procedure \linebreak \\  Doctorname \linebreak \\ Radiographer: \\  \quad \mbox{Allan} \linebreak \\ 2D \& 3D }}
\end{figure}


\begin{figure} [b] 
\caption{ \textbf{Date \linebreak \\  Procedure \linebreak \\  Doctorname \linebreak \\ Radiographer: \\  \quad \mbox{Allan} \linebreak \\ 2D \& 3D} }
   \scalebox{0.36}{\includegraphics*[viewport=190 35 1050 900]{figures/2.JPG}} 
\end{figure}


\end{document}

質問: \floatsetup を使用して、figure1、figure2 などの異なる数値を設定できますか (残念ながら、数値を代入しても機能しません)?

これが私が達成したいことです これまでの画像とサイドキャプション

フィードバックをいただきありがとうございます。追加された情報がお役に立てば幸いです。

関連情報