Advertisement

Latex Figure 处理代码

阅读量:

如何在编号数字前添加上自定义的字母

复制代码
    \renewcommand\thefigure{R\arabic{figure}}
    \renewcommand\thetable{R\arabic{table}}
    
    
      
      
    

图 R1
表 R1

https://moeext.github.io/2019/05/14/latex-notes/


强制编号

复制代码
    \setcounter{figure}{6}
    %\setcounter{table}{6}
    
    \begin{figure}[htbp]
         \centering
         ...
         \label{fig:subfig:2x3}
    \end{figure}
    
    
      
      
      
      
      
      
      
      
    

Latex 子图的代码

首推

复制代码
    \begin{figure}[t]
    	\centering
    \subfigure[]{\includegraphics[wid

全部评论 (0)

还没有任何评论哟~