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
|
# frozen_string_literal: true
class UocExporter < BaseExporter
def export
@things.map.with_index do |thing, idx|
if idx.zero?
"\\hypertarget{#{thing.target}}{#{head(thing:)} #{body(thing:)}}"
else
"#{tex_new_line}\\hypertarget{#{thing.target}}{#{head(thing:)} #{body(thing:)}}"
end
end.join("\n\n")
end
protected
# Returns the same text with LaTeX \emph applied.
def emph(text:)
"\\emph{#{text}}"
end
# Returns the same text with LaTeX \textsc applied.
def upper_case(text:)
"\\textsc{#{text}}"
end
# Returns the title without underscores and with the expected formatting.
def parse_title(title:)
str = ''
seen = false
# I'm sure there is a clever (and comboluted) regexp that can also achieve
# this, but after some tries I decided to cut the crap.
title.each_char do |c|
if c == '_'
str += seen ? '\emph{' : '}'
seen = !seen
else
str += c
end
end
"\\emph{#{str}}"
end
# Returns the 'body' of the line, which is the rest of it (i.e. note,
# publisher, year).
def body(thing:)
union, tail = thing_union_tail(thing:)
if thing.publisher.present?
pub = thing.note.present? ? "#{thing.note}. #{thing.publisher}" : thing.publisher
pub + union + tail
else
tail
end
end
# Returns a two-sized array containing the last bits of info from a line,
# being either the address, the url + access date, or just a final dot. The
# first item contains the 'union' of the last item of the returned array and
# the expected string that is going to be prefixed to it.
def thing_union_tail(thing:)
if thing.address.present?
[', ', "#{thing.address}: #{thing.year}."]
elsif thing.url.present?
['. ',
"[\\url{#{thing.url}}]. [#{I18n.t('activerecord.attributes.thing.access')}: #{I18n.l(
thing.access, format: :long
).downcase}]."]
else
['', '.']
end
end
end
|