Method: ReVIEW::LATEXBuilder#nodisp_begin

Defined in:
lib/review/latexbuilder.rb

#nodisp_begin(level, _label, caption) ⇒ Object



185
186
187
188
189
190
191
192
193
# File 'lib/review/latexbuilder.rb', line 185

def nodisp_begin(level, _label, caption)
  if @output.pos == 0
    puts macro('clearpage')
  else
    blank
  end
  puts macro('addcontentsline', 'toc', HEADLINE[level], compile_inline(caption))
  # FIXME: headings
end