4 つの図 (画像) が均一に配置された 1 つの .png ファイルがあります。それぞれの図にサブ図の文字 ( (a)、(b)、(c)、(d)) を付けたいのですが、手動で図を 4 つに分割するのは避けたいです。
図とキャプションの間に (a)、(b)、(c)、(d) の付いた線を 1 つの図の下に含める方法はありますか? これらの文字の位置を選択して、必要に応じて調整するのが最善の方法です。
答え1
質問を正しく理解していれば、 with を使用して環境に適用できますtikz
。onimage
画像tikzonimage
(imagefile と呼ばれます) の上にテキストを導入するために私が行った操作は次のとおりです。
\documentclass{article}
\usepackage{onimage}
\usepackage{tikz}
\begin{document}
\begin{figure}[h]
\centering
\begin{tikzonimage}[width=0.7\textwidth]{imagefile}
\node at (0.10, 1.10) {(a)};
\node at (0.50, 1.10) {(b)};
\end{tikzonimage}
\label{fig:blah}
\end{figure}
\end{document}