-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubstitutions
107 lines (103 loc) · 2.36 KB
/
substitutions
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@suffixes = ('jr');
%journal_substitutions =
(
'abstract' => 'abstr',
'abstracts' => 'abstr',
'academy' => 'acad',
'adaptive' => 'adapt',
'administrative' => 'admin',
'advances' => 'adv',
'american' => 'amer',
'analysis' => 'anal',
'annals' => 'ann',
'applied' => 'appl',
'applications' => 'appl',
'archives' => 'arch',
'biology' => 'biol',
'biological' => 'biol',
'bulletin' => 'bull',
'busines' => 'bus',
'collection' => 'collect',
'combinatorial' => 'combin',
'communication' => 'comm',
'communications' => 'comm',
'computer' => 'comput',
'computers' => 'comput',
'computation' => 'comput',
'computing' => 'comput',
'conference' => 'conf',
'continuous' => 'contin',
'cuaderno' => 'cuad',
'cuadernos' => 'cuad',
'dynamics' => 'dynam',
'economical' => 'econom',
'economy' => 'econom',
'economic' => 'econom',
'education' => 'ed',
'electrical' => 'electr',
'elements' => 'elem',
'engineering' => 'engrg',
'environmental' => 'environ',
'european' => 'eur',
'experimental' => 'experiment',
'faculty' => 'fac',
'functional' => 'funct',
'historical' => 'hist',
'history' => 'hist',
'industry' => 'indust',
'industrial' => 'indust',
'information' => 'inform',
'institute' => 'inst',
'international' => 'internat',
'journal' => 'j',
'learning' => 'learn',
'letters' => 'lett',
'logistics' => 'logist',
'mathematical' => 'math',
'mathematics' => 'math',
'mechanics' => 'mech',
'mechanical' => 'mech',
'modeling' => 'model',
'modelling' => 'model',
'natural' => 'nat',
'numerical' => 'numer',
'operations' => 'oper',
'operational' => 'oper',
'optimization' => 'optim',
'organization' => 'organ',
'organizational' => 'organ',
'philosophical' => 'philos',
'philosophy' => 'philos',
'physics' => 'phys',
'probability' => 'probab',
'proceedings' => 'proc',
'psychology' => 'psych',
'psychological' => 'psych',
'publications' => 'publ',
'quantitative' => 'quant',
'quarterly' => 'quart',
'recherche' => 'rech',
'reports' => 'rep',
'research' => 'res',
'review' => 'rev',
'royal' => 'roy',
'science' => 'sci',
'scientific' => 'sci',
'section' => 'sect',
'series' => 'ser',
'society' => 'soc',
'social' => 'soc',
'statistics' => 'statist',
'statistical' => 'statist',
'study' => 'stud',
'studies' => 'stud',
'symposium' => 'sympos',
'technical' => 'tech',
'technology' => 'tech',
'technological' => 'tech',
'telecommunications' => 'telecomm',
'theoretical' => 'theoret',
'transactions' => 'trans',
'university' => 'univ',
);
1;