Is there a way to get LaTeX to place figures in the same page as a reference to that figure?

后端 未结 9 1169
粉色の甜心
粉色の甜心 2021-01-31 02:48

I am using LaTeX and the figure environment.

I am well familiar with the parameters to that environment: [htbp], and I am also generally familiar with the strategies tha

9条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-31 03:28

    I have some useful comments. Because I had similar problem with location of figures. I used package "wrapfig" that allows to make figures wrapped by text. Something like

    ...
    \usepackage{wrapfig}
    \usepackage{graphicx}
    ...
    \begin{wrapfigure}{r}{53pt}
    \includegraphics[width=53pt]{cone.pdf}
    \end{wrapfigure}
    

    In options {r} means to put figure from right side. {l} can be use for left side.

提交回复
热议问题