我目前正在写论文。如何在 latex 中像这样在右侧子图上添加文本?
我写了以下一段代码:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subfig}
\begin{document}
\begin{figure}
\subfloat[]{\includegraphics[height=1.1cm,width=1.2cm]{image1}}\\
\subfloat[]{\includegraphics[height=1.1cm,width=1.2cm]{image1}}\\
\end{figure}
\end{document}
答案1
这显示了如何对齐图像的顶部、中部和底部(假设您知道高度=1.1厘米)。
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subfig}
\begin{document}
\begin{figure}
\subfloat[]{\includegraphics[height=1.1cm,width=1.2cm]{image1}}%
\hspace{\bibindent}\raisebox{\dimexpr 1.1cm-\height}{Add text here}\\
\subfloat[]{\includegraphics[height=1.1cm,width=1.2cm]{image1}}%
\hspace{\bibindent}\raisebox{\dimexpr .55cm-0.5\height}{Add text here}\\
\subfloat[]{\includegraphics[height=1.1cm,width=1.2cm]{image1}}%
\hspace{\bibindent}Add text here\\
\end{figure}
\end{document}
答案2
希望以下建议能够有所帮助:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subfig}
\begin{document}
\begin{figure}
\subfloat[]{\includegraphics[height=150pt,width=1.2cm]{image1}} \hspace*{8pt} \begin{minipage}{\linewidth}\vskip-150pt your text here your text here your text here your text here your text here your text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text here your text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text here\end{minipage} \\
\subfloat[]{\includegraphics[height=150pt,width=1.2cm]{image1}} \hspace*{8pt} \begin{minipage}{\linewidth}\vskip-150pt your text here your text here your text here your text here your text here your text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text here your text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text hereyour text here your text here your text here your text here your text here\end{minipage}
\end{figure}
\end{document}
如果需要增加图形宽度,请减少或调整小页面宽度。