本地更改参考书目样式

本地更改参考书目样式

是否可以在文档中本地将参考书目样式从作者年份更改为编号引用。

我现在写的论文中用到了 Apalike,但是有两个表格包含了很多参考文献。因此,在表格中编号引用会很方便。

例如:

% Preamble:
\documentclass[global, referee]{svjour}
\usepackage{ragged2e}
\usepackage{float}
\usepackage[table]{xcolor}
\usepackage{amssymb, amsmath}
\usepackage{booktabs}
\usepackage{array}
\usepackage{subfig} 
%-----------------%---------------------------------------------------%-----------------%
\begin{document}
%-----------------%---------------------------------------------------%-----------------%
\begin{abstract}
This is abstract

%-----------------%---------------------------------------------------%-----------------%
\section{Introduction}
this is introduction
%-----------------%---------------------------------------------------%-----------------%
%begin environment
%here change the bibliography style to a numbered citation bibliography style for e.g. ieeetr%

% Table generated by Excel2LaTeX from sheet 'Sheet1'
\begin{table}[h!]
  \centering
  \caption{test table}
    \begin{tabular}{cc}
    \toprule
    {Compound} & {\% variance (R$^2$)} \\
    \midrule
    A & 7.1 \citep{Franek2, Eagle}\\            \rule{0cm}{0.50cm}
    B & 7.4 \citep{Franek2, Eagle, Taylor}\\                \rule{0cm}{0.50cm}
    C & 6.0 \citep{Franek2, Eagle, Taylor} \\           \rule{0cm}{0.50cm}
    D & 6.8 \citep{Franek2, Eagle, Taylor, Carvalhal}\\     \rule{0cm}{0.50cm}
    E & 5.2 \\          
    \bottomrule
    \end{tabular}%
  \label{tableauc}%
\end{table}%

%end environment
%-----------------%---------------------------------------------------%-----------------%
\bibliographystyle{apalike}
\bibliography{references}
\end{document}

相关内容