색상이 지정된 상단 및 하단 규칙으로 구성된 다양한 크기의 자리 표시자를 구현하는 방법을 찾고 있으며 원하는 대로 서로 다른 두 열 페이지에 배치할 수 있습니다.
목표는 이러한 자리 표시자를 그림으로 바꾸는 것입니다. 최적의 경우, 포함된 그림은 해당 자리 표시자에 맞게 "자동으로" 크기가 조정되고 캡션은 색상이 지정된 하단 규칙 아래에 있습니다.
아래 예에서 볼 수 있듯이 자리 표시자는 두 열에 걸쳐 있는 페이지의 상단/하단에 배치되거나 두 개의 작은 그림이 나란히 있는(각각 단일 열에) 페이지의 상단/하단에 배치되어야 합니다.
LaTeX에서는 이러한 접근 방식이 가능합니까? 어떤 패키지가 필요합니까? 미리 감사드립니다.
편집: 여기에 두 그림(예: 입력 PDF 파일)의 크기가 동일한 경우 내 접근 방식이 잘 작동함을 보여주는 MWE가 있습니다. 그러나 원래 그림 크기가 다르면 두 상자는 더 이상 동일하지 않습니다.
두 개의 다른 그림 크기(2페이지 참조)에 대해 동일한 상자(1페이지 참조)를 갖는 것이 어떻게 가능합니까?
\documentclass[a4paper,10pt,twoside,twocolumn]{article}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{geometry}
\usepackage{subcaption}
\usepackage{xcolor}
\usepackage{stfloats}
\begin{document}
\begin{figure*}[!b]
\begin{minipage}{\columnwidth}
{\color{red}\rule{\columnwidth}{0.04cm}}
\vspace{-0.25cm}
\scalebox{1.1}{\includegraphics[trim=6cm 18cm 2.5cm 2cm,clip=true,height=7cm]{Test.pdf}}
{\color{red}\rule{\columnwidth}{0.04cm}}
\captionof{table}{Test}\label{tab:Test1}
\end{minipage}\qquad
\begin{minipage}{\columnwidth}
{\color{red}\rule{\columnwidth}{0.04cm}}
\centering
\vspace{-0.25cm}
\scalebox{1.1}{\includegraphics[trim=6cm 18cm 2.5cm 2cm,clip=true,height=7cm]{Test.pdf}}
{\color{red}\rule{\columnwidth}{0.04cm}}
\captionof{table}{Test}\label{fig:Test2}
\end{minipage}
\end{figure*}
\lipsum[1]
\begin{figure*}[!b]
\begin{minipage}{\columnwidth}
{\color{red}\rule{\columnwidth}{0.04cm}}
\vspace{-0.25cm}
\scalebox{1.1}{\includegraphics[trim=6cm 18cm 2.5cm 2cm,clip=true,width=\textwidth]{Test.pdf}}
{\color{red}\rule{\columnwidth}{0.04cm}}
\captionof{table}{Test}\label{tab:Test1}
\end{minipage}\qquad
\begin{minipage}{\columnwidth}
{\color{red}\rule{\columnwidth}{0.04cm}}
\centering
\vspace{-0.25cm}
\scalebox{1.1}{\includegraphics[trim=7.5cm 13cm 2.5cm 2cm,clip=true,width=\textwidth]{Test2.pdf}}
{\color{red}\rule{\columnwidth}{0.04cm}}
\captionof{table}{Test}\label{fig:Test2}
\end{minipage}
\end{figure*}
\lipsum[2-10]
\end{document}