zoukankan      html  css  js  c++  java
  • latex 常见问题

    latex 引用(链接)编号颜色设置

    • 在egin{document}之前插入如命令
    hypersetup{
    colorlinks=true, # 链接颜色设置
    linkcolor=black, # 链接颜色
    citecolor=black, # 引用颜色
    anchorcolor=black, 
    urlcolor=black # 引文中url颜色
    }
    

    跨栏图片设置

    • 引入包subfigure,stfloats
    egin{figure*}[htp]
        centering
        subfigure[fig1]{ #(a)
        label{hopfig:f1}
        egin{minipage}[t]{0.3linewidth}
        centering
        includegraphics[width=5.5cm]{1.png}
        %caption{fig1}
        end{minipage}%
        }%
        subfigure[fig2]{ #(b)
        label{hopfig:f2}
        egin{minipage}[t]{0.3linewidth}
        centering
        includegraphics[width=5.5cm]{2.png}
        %caption{fig1}
        end{minipage}%
        }%
        subfigure[fig3]{ #(c)
        label{hopfig:f3}
        egin{minipage}[t]{0.3linewidth}
        centering
        includegraphics[width=5.5cm]{3.png}
        %caption{fig1}
        end{minipage}%
        }%
        centering
        caption{fig3}
        label{hopfig}
    end{figure*}
    
    • 引用格式
    引用方式 显示效果
    subref{hopfig:f3} (c)
    ref{hopfig:f3} #.(c)
  • 相关阅读:
    Hello World
    查找字符串 fiand
    stdou,write与print()
    python 中 按位 与 & ,| ,^ ,~,
    3*3元素主对角元素之和
    Python random() 函数
    文本颜色设计
    if __name__=="__main__
    join函数
    ProGAN论文的翻译+学习体会
  • 原文地址:https://www.cnblogs.com/practitioners/p/13162045.html
Copyright © 2011-2022 走看看