Method: ReVIEW::LATEXBuilder#inline_title
- Defined in:
- lib/review/latexbuilder.rb
#inline_title(id) ⇒ Object
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 |
# File 'lib/review/latexbuilder.rb', line 1071 def inline_title(id) title = super if @book.config['chapterlink'] "\\reviewchapref{#{title}}{chap:#{id}}" else title end rescue KeyError app_error "unknown chapter: #{id}" nofunc_text("[UnknownChapter:#{id}]") end |