Class: ReVIEW::LaTeXBox

Inherits:
Object show all
Defined in:
lib/review/latexbox.rb

Instance Method Summary collapse

Constructor Details

#initializeLaTeXBox

Returns a new instance of LaTeXBox.



11
12
13
# File 'lib/review/latexbox.rb', line 11

def initialize
  @logger = ReVIEW.logger
end

Instance Method Details

#tcbox(config) ⇒ Object



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
# File 'lib/review/latexbox.rb', line 15

def tcbox(config)
  ret = ''

  %w[column note memo tip info warning important caution notice].each do |name|
    if config['pdfmaker'].nil? || config['pdfmaker']['boxsetting'].nil? ||
       config['pdfmaker']['boxsetting'][name].nil? ||
       config['pdfmaker']['boxsetting'][name]['style'].nil?
      next
    end

    options = '[]'
    options_with_caption = '[]'
    if config['pdfmaker']['boxsetting'][name]['options']
      options = "[#{config['pdfmaker']['boxsetting'][name]['options']}]"
      options_with_caption = options
    end

    if config['pdfmaker']['boxsetting'][name]['options_with_caption']
      options_with_caption = "[#{config['pdfmaker']['boxsetting'][name]['options_with_caption']}]"
    end

    ret << <<EOT
\\renewenvironment{review#{name}}[1][]{%
  \\csdef{rv@tmp@withcaption}{true}
  \\notblank{##1}{
\\begin{rv@#{config['pdfmaker']['boxsetting'][name]['style']}@caption}{##1}#{options_with_caption}
   }{
\\csundef{rv@tmp@withcaption}
\\begin{rv@#{config['pdfmaker']['boxsetting'][name]['style']}@nocaption}#{options}
   }
}{
  \\ifcsdef{rv@tmp@withcaption}{
\\end{rv@#{config['pdfmaker']['boxsetting'][name]['style']}@caption}
  }{
\\end{rv@#{config['pdfmaker']['boxsetting'][name]['style']}@nocaption}
  }
}
EOT
  end

  ret
end