我想将图片完全放在文档的右侧。但是当我想在图片下方添加标题时,标题会在中间断开并出现在图片下方的部分中。但我希望这个标题与图片一样长。现在看起来像这样:
使用我的代码:
\begin{wrapfigure}{r}{0.1\textwidth}
\vspace{-20pt}
\begin{center}
\includegraphics[width=0.48\textwidth]{simple_OTA_empty_added.png}
\end{center}
\caption{schematic of simple OTA}
\label{fig:schematic_simple}
\vspace{-10pt}
\end{wrapfigure}
答案1
需要注意的是,虽然 wrapfig 需要指定宽度,但如果指定的宽度小于图像的宽度,它将使用较大的值。虽然在本例中,似乎标题使用的是指定的宽度。
我添加了\hrule
以防止图像爬升至文本区域之上。
\documentclass{article}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{lipsum}% MWE only
%\usepackage{showframe}
\begin{document}
\hrule height0pt %only needed for top of page
\begin{wrapfigure}{r}{0.48\textwidth}
\vspace{-\intextsep}%
\includegraphics[width=\linewidth]{example-image}
\caption{schematic of simple OTA}
\label{fig:schematic_simple}
\vspace{-\intextsep}%
\end{wrapfigure}
\lipsum[1-4]
\end{document}