Method: IsoDoc::PresentationXMLConvert#bibliography_bibitem_number
- Defined in:
- lib/isodoc/presentation_function/refs.rb
#bibliography_bibitem_number(docxml) ⇒ Object
107 108 109 110 111 112 113 114 115 116 |
# File 'lib/isodoc/presentation_function/refs.rb', line 107 def bibliography_bibitem_number(docxml) i = 0 docxml.xpath(ns("//references")).each do |r| r.xpath(ns("./bibitem")).each do |b| i = bibliography_bibitem_number1(b, i, r["normative"] == "true") end end reference_names docxml bibliography_bibitem_tag(docxml) end |