zoukankan      html  css  js  c++  java
  • Latex中图片并排并且有各自小标题

    之前一直不知道怎么才能让两张图片并排并且能够加上小标题,在网上找了subfigure啊 minipage什么的,都会出现各种各样的小问题,今天总算找到这个问题的完美解决方案了!!!

    只要用usepakage{subfig} 另外用了 subfig就不能用subfigure了,

    然后看如下代码  subfloat就行啦!!!

     1 egin{figure}[htbp]
     2     centering
     3     subfloat[]{ 5         label{RMSE_TAN_MKDB_all}
     6         egin{minipage}[c]{.5linewidth}
     7             centering
     8             includegraphics[width=1.2	extwidth]{MKDB_KDB_RMSE_ALL.pdf}
     9         end{minipage}
    10     }
    11     subfloat[]{13         label{RMSE_TAN_MKDB_bigdataset}
    14         egin{minipage}[c]{.5linewidth}
    15             centering
    16             includegraphics[width=1.2	extwidth]{MKDBVSKDB_RMSE_BGD.pdf}
    17         end{minipage}
    18     }
    19     caption{Scatter Plot of  RMSE Comparison for MKDB and KDB}
    20 end{figure}
  • 相关阅读:
    threading学习
    Python基础-5
    BS4
    requests基础
    Python基础-4
    Python基础-3
    Python基础-2
    Python基础-1
    DevOps
    nginx配置ssl证书实现https
  • 原文地址:https://www.cnblogs.com/quant-lee/p/8319590.html
Copyright © 2011-2022 走看看