欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jimmy的LaTeX调试记录

程序员文章站 2024-02-15 19:08:41
...
  • 并排插入图片

    \begin{figure}
    \centering
    {
    \includegraphics[width=2.5cm]{10-1}}
    \hspace{0in}    %每张图片中间空闲
    {
    \includegraphics[width=2.5cm]{10-2}}
    \hspace{0in}
    {
    \includegraphics[width=2.5cm]{10-3}}
    \hspace{0in}
    {
    \includegraphics[width=2.5cm]{10-4}}
    \hspace{0in}
    \caption{并排插入4张图片}
    \end{figure}
    

    这种方式插入的子图片没有编号a,b,下面这种方式可以进行各个子图片的编号和caption,也可以加入单独的label进行引用。

    \begin{figure}[ht]
      \centering
      \subfloat[Caption]{
          \label{fig: Photo_of_ThreeInductors}
          \includegraphics[width=2.5in]{Pictures//Photo_of_ThreeInductors.png}
          } \quad
      \subfloat[Caption]{
          \label{fig: Photo_of_ThreeInductors}
          \includegraphics[width=2.5in]{Pictures//Photo_of_ThreeInductors.png}
          } \quad
      \caption{Controllers Comparison}
     \end{figure}
    
  • 将图片插入到文章的一侧

  • latex 使用中文

      \usepackage[UTF8]{ctex}