美文网首页
latex小技巧

latex小技巧

作者: 山雾幻华 | 来源:发表于2019-04-18 14:35 被阅读0次

    表格的边框

    \begin{table}[htbp]
        \centering
        \caption{Add caption}
          \begin{tabular}{|c|c|c|c|c|c|c|}
            \hline
            r     &             & 1.841113195 & 1.58748643 & 1.3721504 & 1.177440047 & 1.090891148 \\
            \cline{1-1}\cline{3-7}    
            sp    &             & 0.841113195 & 0.58748643 & 0.3721504 & 0.177440047 & 0.090891148 \\
          \bottomrule
          \end{tabular}%
        \label{tab:addlabel}%
      \end{table}%
    

    标题脚注

    一些命令(\footnote 或\phantom)内嵌于\caption 或\section时会失效,这时加上\protect可以保证不失效。

    \section{Higer Order Difference Equations \footnote{See James(2000)}} %\footnote失效
    \section{Higer Order Difference Equations \protect\footnote{See James(2000)}}
    

    注意\protect只保护紧跟其后的命令本身,命令的参数并不受到保护,如果要保护参数,需要在参数前加\protect。

    书籍索引

    \usepackage{makeidx}
    \makeindex
    Fox function\index{Fox function!two factors}
    

    之后

    makeindex ws-book9x6.idx
    

    多图片

    \usepackage[position=t,singlelinecheck=off]{subfig}
    \usepackage{caption}
    
    \renewcommand\thesubfigure{\Alph{subfigure}}
    \begin{document}
    \begin{figure}[!ht]
        \captionsetup[subfigure]{labelformat=simple}
        \centering
        \subfloat[]{\includegraphics[width=0.4\textwidth]{gjn_enta.png}}\quad
        \subfloat[]{\includegraphics[width=0.4\textwidth]{enta.png}}\quad
        \subfloat[]{\includegraphics[width=0.4\textwidth]{yyd_enta.png}}\quad
        \subfloat[]{\includegraphics[width=0.4\textwidth]{gxr_enta.png}}
        \caption{所有组的数据图:其中a、b分别测量的为现配溶液,c、d测量的为配制一周的溶液;a测量温度为30$^{\circ} \mathrm{C}$,其余均为25$^{\circ} \mathrm{C}$下测量}
        \label{fig:res}
    \end{figure}
    \end{document}
    

    参考文献

    标题脚注:https://www.cnblogs.com/alex4814/archive/2013/03/23/2976852.html
    书籍索引:https://jingyan.baidu.com/article/1709ad802080794634c4f0da.html
    多图片:http://muchong.com/t-7516180-1-pid-3

    相关文章

      网友评论

          本文标题:latex小技巧

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