Я использую статью 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 задать разные цифры - например, figure1, figure2 и т. д. (подстановка цифр, к сожалению, не работает)?
Спасибо за ваш отзыв. Надеюсь, дополнительная информация окажется полезной.