forked from oscar-system/Oscar.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bibtoolrsc
87 lines (74 loc) · 1.88 KB
/
.bibtoolrsc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# This is a config file for bibtool, see
# http://www.gerd-neugebauer.de/software/TeX/BibTool/en/
# To use it, invoke bibtool as follows:
# bibtool docs/oscar_references.bib -o docs/oscar_references.bib
sort = on
# sort order for fields
sort.order{* =
bibkey
author
title
editor
booktitle
mrnumber
zbl
journal
fjournal
series
volume
number
note
howpublished
address
organization
publisher
edition
pages
year
month
doi
url
}
print.align.key = 0
print.line.length = 120
preserve.key.case = on
sort.cased = off
print.use.tab = off
delete.field = { hal_id }
delete.field = { hal_version }
delete.field = { isbn }
delete.field = { issn }
delete.field = { keywords }
delete.field = { mrclass }
delete.field = { mrreviewer }
delete.field = { msc2010 }
fmt.name.name = { }
fmt.inter.name = { x }
key.format =
{
%s(bibkey)
#
%.1#n(author)
{ %1.3n(author) }
{ %2d(year) }
#
{ %+8.1n(author) }
{ %2d(year) }
}
# Enforce "{...}" around fields
rewrite.rule {"^\"\([^#]*\)\"$" "{\1}"}
rewrite.rule {"^ *\([0-9]*\) *$" "{\1}"}
# Remove empty fields
rewrite.rule {"^{ *}$"}
# Unify page range separator
rewrite.rule {pages "\([0-9]+\) *\(-\|---\|–\) *\([0-9]+\)" "\1--\3"}
# Check that 1800<=year<=2029
check.rule { year "^[\"{]1[89][0-9][0-9][\"}]$" }
check.rule { year "^[\"{]20[0-2][0-9][\"}]$" }
check.error.rule { year "" "\@ \$: Year has to be a suitable number" }
# Check that the doi field is not a URL
check.error.rule { doi "\://" "\@ \$: doi field should not be a URL" }
# Check that the url field is not a DOI
check.error.rule { url "doi\.org/" "\@ \$: url field should not contain a doi. Use the doi field instead" }
# Check that no field contains a LaTeX url command, as DocumenterCitations.jl prints them ugly
check.error.rule { "\\url" "\@ \$: LaTeX's `\\url` commands are not supported" }