blob: 7c4b513f4803ca1ad7a40ad2b91d8356cb46b38c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
% This file, apalike.sty, is in the public domain.
% (Last updated 22may09 by Karl Berry.)
% It is a simple style file intended for use with apalike.bst.
%
% This version has two changes from the original:
% 1) use \refname and \bibname instead of hardwiring
% the strings "References" and "Bibliography"; this change was first
% made in the apalike.sty in the germbib package.
% 2) do not define \bibhang if it is already defined.
\def\@cite#1#2{(#1\if@tempswa , #2\fi)}
\def\@biblabel#1{}
\ifx\bibhang\@thisisundefined \newlength{\bibhang} \fi
\setlength{\bibhang}{2em}
\@ifundefined{chapter}{\def\thebibliography#1{\section*{\refname\@mkboth
{\sl\uppercase{\refname}}{\sl\uppercase{\refname}}}\list
{\relax}{\setlength{\labelsep}{0em}
\setlength{\itemindent}{-\bibhang}
\setlength{\leftmargin}{\bibhang}}
\def\newblock{\hskip .11em plus .33em minus .07em}
\sloppy\clubpenalty4000\widowpenalty4000
\sfcode`\.=1000\relax}}%
{\def\thebibliography#1{\chapter*{\bibname\@mkboth
{\sl\uppercase{\bibname}}{\sl\uppercase{\bibname}}}\list
{\relax}{\setlength{\labelsep}{0em}
\setlength{\itemindent}{-\bibhang}
\setlength{\leftmargin}{\bibhang}}
\def\newblock{\hskip .11em plus .33em minus .07em}
\sloppy\clubpenalty4000\widowpenalty4000
\sfcode`\.=1000\relax}}
\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
\def\@citea{}\@cite{\@for\@citeb:=#2\do
{\@citea\def\@citea{; }\@ifundefined
{b@\@citeb}{{\bf ?}\@warning
{Citation `\@citeb' on page \thepage \space undefined}}%
{\csname b@\@citeb\endcsname}}}{#1}}
|