누군가 이 논문에서 참고문헌 스타일을 식별할 수 있습니까?

누군가 이 논문에서 참고문헌 스타일을 식별할 수 있습니까?

저는 이 논문의 인용 및 참고문헌 스타일을 정말 좋아합니다.http://www.aaai.org/Papers/IJCAI/2007/IJCAI07-243.pdf하지만 스타일을 찾을 수 없습니다. 아아아 하나그 자체(내 생각에는) 참고문헌에 대괄호가 없는 것 같습니다.

답변1

그것은named스타일.

예제 PDF의 위치가 주어지면 문서의 템플릿을 찾을 수 있습니다.여기. 이 템플릿을 다음과 함께 사용

\documentclass{article}

\usepackage{ijcai13}

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

준다

샘플 출력

템플릿의 인용/참조 부분만 사용하려면 다음과 같이 사용하세요.

\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}

획득하다

두 번째 샘플 출력

관련 정보