替代图片和标题

替代图片和标题

我正在使用 documentclass 文章。

我正在尝试实现侧边字幕的交替显示。已将它们很好地设置为右侧字幕,但交替显示存在问题。

\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 等吗(不幸的是,替换数字不起作用)?

这就是我想要实现的 目前为止的图片和标题

感谢您的反馈,我希望添加的信息有所帮助。

相关内容