latex问题总结

1.使 IEEE 的 Latex 杂志(journal)模板(templet)图片标题(caption)居中

由于IEEETran-journal中的默认caption左对齐。加上usepackage{caption2}就解决了;

2.组图

egin{figure*}[htb]
  centering
  subfloat[]{
     includegraphics[width=.32	extwidth]{pic_0}
  }hfill
  subfloat[]{
     includegraphics[width=.32	extwidth]{pic_1}
  }hfill
  subfloat[]{
    includegraphics[width=.32	extwidth]{pic_2}
  }hfill
  caption{(a) image 0 (b) image 1 (c) image 2}
  label{fig:fig2}
end{figure*}

3.插入公式

http://www.cnblogs.com/Sinte-Beuve/p/6160905.html

http://mlworks.cn/posts/introduction-to-mathjax-and-latex-expression/

原文地址:https://www.cnblogs.com/redips-l/p/6915519.html