933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
|
# File 'lib/review/latexbuilder.rb', line 933
def imgtable_image(id, _caption, metric)
metrics = parse_metric('latex', metric)
puts "\\begin{reviewimage}%%#{id}"
command = 'reviewincludegraphics'
if @book.config.check_version('2', exception: false)
command = 'includegraphics'
end
if metrics.present?
puts "\\#{command}[#{metrics}]{#{@chapter.image(id).path}}"
else
puts "\\#{command}[width=\\maxwidth]{#{@chapter.image(id).path}}"
end
puts '\end{reviewimage}'
end
|