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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
# File 'lib/jekyll-references.rb', line 13
def reference(style, ref)
final_reference = ''
case style
when 'apa', 'american psychological association'
if ref["organization"].to_s != ''
final_reference = ref["organization"].to_s + "."
else
ref["authors"].map! do |author|
author = author.split
last_name = author.pop
fist_names = author.map do |n|
n[0].upcase + "."
end
fist_names = fist_names.join
author = last_name + " " + fist_names
author
end
final_reference = ref["authors"].join(', ') + "."
end
if ref["publication"].to_s != ''
final_reference += " (" + ref["publication"].to_s + ")."
end
final_reference += " " + ref["title"] + "."
if ref["journal"].to_s != ''
final_reference += " " + ref["journal"]
if ref["volume"].to_s != '' and ref["issue"].to_s != ''
final_reference += ", " + ref["volume"].to_s + "(" + ref["issue"].to_s + ")"
elsif ref["volume"].to_s != ''
final_reference += ", " + ref["volume"].to_s
end
if ref["pages"].to_s != ''
final_reference += ", " + ref["pages"].to_s
end
end
final_reference += "."
when 'mla', 'modern language association'
if ref["organization"].to_s != ''
final_reference = ref["organization"].to_s + ". "
elsif ref["authors"].length > 0
author = ref["authors"][0].split
last_name = author.pop
author = author.join(" ")
author = last_name + ", " + author
if ref["authors"].length > 1
author += ", et al"
end
final_reference = author + ". "
end
final_reference += "“" + ref["title"] + "”."
if ref["journal"].to_s != ''
final_reference += " " + ref["journal"]
end
if ref["volume"].to_s != ''
final_reference += ", vol. " + ref["volume"].to_s
end
if ref["issue"].to_s != ''
final_reference += ", no. " + ref["issue"].to_s
end
if ref["publication"].to_s != ''
final_reference += ", " + ref["publication"].to_s
end
if ref["pages"].to_s != ''
final_reference += ", " + (ref["pages"].include?("-") ? "pp" : "p") + ". "
final_reference += ref["pages"].to_s
end
final_reference += "."
when 'chicago-annotated-bibliography'
final_reference = []
if ref["organization"].to_s != ''
final_reference.push(ref["organization"].to_s)
else
if ref["authors"].length > 2
last_author = ref["authors"].pop
final_reference.push(ref["authors"].join(', ') + ", & " + last_author)
elsif ref["authors"].length == 2
final_reference.push(ref["authors"].join(" & "))
else
final_reference.push(ref["authors"][0])
end
end
if ref["publication"].to_s != ''
final_reference.push(ref["publication"].to_s)
end
final_reference.push("“" + ref["title"] + "”")
if ref["journal"].to_s != ''
journal = ref["journal"]
if ref["volume"].to_s != '' and ref["issue"].to_s != ''
journal += " " + ref["volume"].to_s + "(" + ref["issue"].to_s + ")"
elsif ref["volume"].to_s != ''
journal += " " + ref["volume"].to_s
end
if ref["pages"].to_s != ''
journal += ": " + ref["pages"].to_s
end
final_reference.push(journal)
end
final_reference = final_reference.join(", ") + "."
when 'ieee', 'institute of electrical and electronics engineers'
final_reference = []
if ref["organization"].to_s != ''
final_reference.push(ref["organization"].to_s)
else
ref["authors"].map! do |author|
author = author.split
last_name = author.pop
author.map do |name|
name[0].upcase + "."
end
author = author.join(' ') + ' ' + last_name
author
end
if ref["authors"].length > 2
last_author = ref["authors"].pop
final_reference.push(ref["authors"].join(', ') + ", & " + last_author)
elsif ref["authors"].length == 2
final_reference.push(ref["authors"].join(" & "))
else
final_reference.push(ref["authors"][0])
end
end
final_reference.push("“" + ref["title"] + "”")
if ref["journal"].to_s != ''
final_reference.push(ref["journal"])
end
if ref["volume"].to_s != ''
final_reference.push("vol. " + ref["volume"].to_s)
end
if ref["issue"].to_s != ''
final_reference.push("no. " + ref["issue"].to_s)
end
if ref["pages"].to_s != ''
final_reference.push((ref["pages"].include?("-") ? "pp" : "p") + ". " + ref["pages"].to_s)
end
if ref["publication"].to_s != ''
final_reference.push(ref["publication"].to_s)
end
final_reference = final_reference.join(", ") + "."
else if ref["organization"].to_s != ''
final_reference = ref["organization"].to_s + "."
else
ref["authors"].map! do |author|
author = author.split
last_name = author.pop
fist_names = author.map do |n|
n[0].upcase
end
fist_names = fist_names.join('')
author = last_name + " " + fist_names
author
end
final_reference = ref["authors"].join(', ') + "."
end
final_reference += " " + ref["title"] + "."
if ref["journal"].to_s != ''
final_reference += " " + ref["journal"] + "."
if ref["publication"].to_s != ''
final_reference += " " + ref["publication"].to_s + ";"
end
if ref["volume"].to_s != '' and ref["issue"].to_s != ''
final_reference += ref["volume"].to_s + "(" + ref["issue"].to_s + ")"
elsif ref["volume"].to_s != ''
final_reference += ref["volume"].to_s
end
if ref["pages"].to_s != ''
final_reference += ":" + ref["pages"].to_s
end
else
if ref["publication"].to_s != ''
final_reference += " " + ref["publication"].to_s
end
end
final_reference.gsub!(/;([:\.,])/, "\1")
final_reference += "."
end
final_reference.gsub(/[\.,]{2}/, ".")
end
|