Method: IsoDoc::Function::References#biblio_list
- Defined in:
- lib/isodoc/function/references.rb
#biblio_list(f, div, bibliography) ⇒ Object
122 123 124 125 126 127 128 129 130 |
# File 'lib/isodoc/function/references.rb', line 122 def biblio_list(f, div, bibliography) bibitems = split_bibitems(f) bibitems[:iso].each_with_index do |b, i| iso_bibitem_entry(div, b, (i + 1), bibliography) end bibitems[:noniso].each_with_index do |b, i| noniso_bibitem(div, b, (i + 1 + bibitems[:iso].size), bibliography) end end |