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

后端 未结 9 1176
粉色の甜心
粉色の甜心 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:37

    Yes, include float package into the top of your document and H (capital H) as a figure specifier:

    \usepackage{float}
    
    \begin{figure}[H]
    .
    .
    .
    \end{figure}
    

提交回复
热议问题