Latex同时引用多篇文献&修改字体/表格/图片/参考文献颜色

1、引用多篇参考文献
在yourpaper.tex上导入包cite,上面加上一行:\usepackage{cite}

然后在yourReference.bib文件加上参考文献

在yourpaper.tex上同时引用,方式如下:

\cite{
    
    Ref2,Ref3,Ref4}

2、修改字体/表格/图片颜色:
用到的包:\usepackage{color}

正文内容: 使用\textcolor{blue}{revised content…}。
表格及公式: 在环境位置,使用\color{blue} 可以改变环境内的所有内容颜色。

\begin{
    
    equation}\color{
    
    blue}
    \label{
    
    xx}
    a + b = c,
\end{
    
    equation}

\begin{
    
    table}[!htbp]\color{
    
    blue}
    \vspace{
    
    -0.0cm}   % 调整表格与上文之间的距离
    \renewcommand{
    
    \arraystretch}{
    
    1.3}%调行距
    \caption{
    
    Comparison of different fusion methods on the dual-stream architecture.}
    \label{
    
    fusion}
    \centering  %表格居中
    \setlength{
    
    \tabcolsep}{
    
    1.8mm}{
    
      % 调整列间距离
        \begin{
    
    tabular}{
    
    lllll}
            \toprule 
            a & b & c & d & e\\
            \midrule 
            ~ & - & - & - & - \\
            ~& - & - &  &  \\
            ~& - & - &  & \\
            \bottomrule 
        \end{
    
    tabular}
    }
\end{
    
    table}

\begin{
    
    figure}[!ht]\color{
    
    red}
\centering
\fontsize{
    
    7.0pt}{
    
    \baselineskip}\selectfont
\rotatebox{
    
    90}{
    
    ~~~~[Raw]}
{
    
    \includegraphics[width=0.09\textwidth]{
    
    pic/O1.eps}%
\caption{
    
    Comparison of the WSFP extraction.}
\label{
    
    fig:Featurepoint}
\end{
    
    figure}

3、参考文献颜色
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_27353621/article/details/126843305