Lines Matching full:parts
187 function do_end_entry( k,n,parts)
189 n = split(Author,parts," and ")
193 print_toc_line(parts[k] " and", "", "")
197 print_toc_line(parts[n], Title, html_begin_pages() Pages html_end_pages())
199 do_long_title(parts[n], Title, html_begin_pages() Pages html_end_pages())
232 function do_month( k,n,parts)
238 n = split(Month,parts," */ *")
242 ((parts[k] in Month_expansion) ? Month_expansion[parts[k]] : parts[k])
312 function do_URL( parts)
315 split(Url,parts,"[,;]") # in case we have multiple URLs
316 Url = trim(parts[1])
897 function TeX_to_HTML(s, k,n,parts)
908 n = split(s,parts,/[$]/)# split into non-math (odd) and math (even) parts
913 ((k % 2) ? strip_braces(TeX_to_HTML_nonmath(parts[k])) : \
914 TeX_to_HTML_math(parts[k]))