¿Alguien puede identificar el estilo de bibliografía en este artículo?

¿Alguien puede identificar el estilo de bibliografía en este artículo?

Realmente me encanta el estilo de citas y bibliografía de este artículo:http://www.aaai.org/Papers/IJCAI/2007/IJCAI07-243.pdfpero no encuentro el estilo; el aaaisí mismo(que pensé que podría ser) no parece tener corchetes en la bibliografía.

Respuesta1

Es elnamedestilo.

Dada la ubicación del pdf de ejemplo, puede encontrar una plantilla para el documento.aquí. Usando esta plantilla con

\documentclass{article}

\usepackage{ijcai13}

\begin{document}
\cite{StGu92,MuBeBoRo99}
\bibliographystyle{named}
\bibliography{test}
\end{document}

da

salida de muestra

Si solo desea utilizar la parte de citas/referencias de la plantilla, úsela con

\documentclass{article}

\makeatletter
\def\leftcite{\@up[}\def\rightcite{\@up]}

\def\cite{\def\citeauthoryear##1##2{\def\@thisauthor{##1}%
             \ifx \@lastauthor \@thisauthor \relax \else##1, \fi ##2}\@icite}
\def\shortcite{\def\citeauthoryear##1##2{##2}\@icite}

\def\citeauthor{\def\citeauthoryear##1##2{##1}\@nbcite}
\def\citeyear{\def\citeauthoryear##1##2{##2}\@nbcite}

% internal macro for citations with [] and with breaks between citations
% used in \cite and \shortcite
\def\@icite{\leavevmode\def\@citeseppen{-1000}%
 \def\@cite##1##2{\leftcite\nobreak\hskip 0in{##1\if@tempswa , ##2\fi}\rightcite}%
 \@ifnextchar [{\@tempswatrue\@citex}{\@tempswafalse\@citex[]}}
% internal macro for citations without [] and with no breaks
% used in \citeauthor and \citeyear
\def\@nbcite{\leavevmode\def\@citeseppen{1000}%
 \def\@cite##1##2{{##1\if@tempswa , ##2\fi}}%
 \@ifnextchar [{\@tempswatrue\@citex}{\@tempswafalse\@citex[]}}

% don't box citations, separate with ; and a space
% also, make the penalty between citations a parameter, 
% it may be a good place to break
\def\@citex[#1]#2{%
  \def\@lastauthor{}\def\@citea{}%
  \@cite{\@for\@citeb:=#2\do
    {\@citea\def\@citea{;\penalty\@citeseppen\ }%
     \if@filesw\immediate\write\@auxout{\string\citation{\@citeb}}\fi
     \@ifundefined{b@\@citeb}{\def\@thisauthor{}{\bf ?}\@warning
       {Citation `\@citeb' on page \thepage \space undefined}}%
     {\csname b@\@citeb\endcsname}\let\@lastauthor\@thisauthor}}{#1}}

% raise the brackets in bibliography labels
\def\@biblabel#1{\def\citeauthoryear##1##2{##1, ##2}\@up{[}#1\@up{]}\hfill}

\def\@up#1{\leavevmode\raise.2ex\hbox{#1}}
\makeatother

\begin{document}
\cite{GhJaEn02,Ca04,BaNi94}
\bibliographystyle{named}
\bibliography{test}
\end{document}

para obtener

segunda salida de muestra

información relacionada