blob: 862a4c5976481da7ff0e0b60ae49cbf9deb7d00e (
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
|
% BibTeX test style file
% Copyright 2022 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
% You may freely use, modify and/or distribute this file.
ENTRY {field}{}{}
FUNCTION {output_entry} {
"\item " field * write$
newline$
}
FUNCTION {type} {output_entry}
READ
FUNCTION {set_sort_key} {
field 'sort.key$ :=
}
ITERATE {set_sort_key}
SORT
FUNCTION {output_bgn} {
"\section*{Test result}" write$ newline$
"\begin{itemize}" write$ newline$
}
FUNCTION {output_end} {
"\end{itemize}" write$ newline$
"\endinput" write$ newline$
}
EXECUTE {output_bgn}
ITERATE {call.type$}
EXECUTE {output_end}
|