美文网首页
2 Latex插入图片

2 Latex插入图片

作者: BillLeee | 来源:发表于2017-05-07 22:07 被阅读0次
    % 添加包
    \usepackage{graphicx}
    
    % 需要添加图片的地方
    \begin{figure}[htp]
    \centering % 图片居中
    \includegraphics[width = 8.3cm]{figures/figure_1.png}
    \caption{The caption of this figure.}
    \label{fig:figure1label}
    \end{figure}
    
    % 在中文中需要引用图片的地方
    如图 \ref{fig:figure1label} 所示
    

    参考

    1.点击进入Github

    相关文章

      网友评论

          本文标题:2 Latex插入图片

          本文链接:https://www.haomeiwen.com/subject/iryptxtx.html