替代圖和標題

替代圖和標題

我正在使用文檔類文章。

我正在嘗試實現側邊字幕的交替。已經很好地將它們設置在右側,但交替是一個問題。

\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 不同的數字 - 例如圖 1、圖 2 等(不幸的是,替換數字不起作用)?

這就是我想要實現的目標 到目前為止的圖像和側面標題

感謝您的回饋,希望添加的資訊對您有所幫助。

相關內容