Eu plotei uma grande figura com várias subfiguras usandomatplotlib, porque a biblioteca fornece muitos recursos que são difíceis de implementar em tex (como rótulo compartilhado e eixo compartilhado). No entanto, eu gostaria \ref
dessas subfiguras como subcaption
no tex. Existe algum método que possa resolver o problema?
Minha exigência é quase a mesma da pergunta emVários rótulos para figuras grandes com subtramas incluídas.
Porém, a solução não funciona quando hyperref
é importada. Como a resposta foi publicada há 3 anos e parece que não receberia nenhuma atualização, fiz a pergunta novamente.
Responder1
Eu descobri uma solução alternativa:
\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}
\makeatletter
\newcommand{\phantomlabel}[2]{
\protected@write\@auxout{}{
\string\newlabel{#2}{
{\@currentlabel#1}{\thepage}
{\@currentlabel#1}{#2}{}
}
}
\hypertarget{#2}{}
}
\makeatother
\begin{document}
Figure~\ref{fig:a} consists of sub-figure~\ref{fig:a:left_plot},
sub-figure~\ref{fig:a:right_plot}, and
sub-figure~\ref{fig:a:somewhere else}.
\begin{figure}
\includegraphics[width=\textwidth]{example-image-a}
\caption{This plot has three parts.}\label{fig:a}
\phantomlabel{a}{fig:a:left_plot}
\phantomlabel{b}{fig:a:right_plot}
\phantomlabel{c}{fig:a:somewhere else}
\end{figure}
Figure~\ref{fig:b} consists of sub-figure~\ref{fig:b:left_plot},
sub-figure~\ref{fig:b:right_plot}, and
sub-figure~\ref{fig:b:somewhere else}.
\begin{figure}
\includegraphics[width=\textwidth]{example-image-b}
\caption{This plot has three parts.}\label{fig:b}
\phantomlabel{a}{fig:b:left_plot}
\phantomlabel{b}{fig:b:right_plot}
\phantomlabel{c}{fig:b:somewhere else}
\end{figure}
\end{document}
O código foi modificado a partir da resposta postada por @gernot na pergunta que vinculei. A ideia básica é criar um hiper-alvo na posição do rótulo fantasma correspondente sem escrever texto.