latex问题总结

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

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

2.组图

\begin{figure*}[htb]
  \centering
  \subfloat[]{
     \includegraphics[width=.32\textwidth]{pic_0}
  }\hfill
  \subfloat[]{
     \includegraphics[width=.32\textwidth]{pic_1}
  }\hfill
  \subfloat[]{
    \includegraphics[width=.32\textwidth]{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/

posted @ 2017-05-28 12:59  redips  阅读(549)  评论(0编辑  收藏  举报