X-Git-Url: http://git.sthu.org/?a=blobdiff_plain;f=bib2html.py;h=7a1b7d93ce5bb5f4a43667941ec1cc4e701a8719;hb=refs%2Fheads%2Fmaster;hp=b1ba7613da248acabb9b84d5ca51cae378f143ab;hpb=9b52797ddadf989219c0f1677ee4f403a1e31030;p=shutils.git diff --git a/bib2html.py b/bib2html.py index b1ba761..7a1b7d9 100755 --- a/bib2html.py +++ b/bib2html.py @@ -44,7 +44,7 @@ def format_latex(text): '\\"a': 'ä', '\\"o': 'ö', '\\"u': 'u', - '\mathcal': '', + '\\mathcal': '', '{': '', '}': '', '\\': '', @@ -103,6 +103,21 @@ def format_details_inproceedings(entry): line = filter(lambda l: l != "", line) return [where, ", ".join(line)] +def format_details_incollection(entry): + where = format_field(entry, 'booktitle') + + line = [] + line.append(format_field(entry, 'publisher')) + line.append(format_field(entry, 'pages', pre='pp. ')) + line.append(format_field(entry, 'address')) + line.append(format_field(entry, 'month', post=' ') + \ + format_field(entry, 'year')) + line.append(format_field(entry, 'isbn', pre='ISBN ')) + line.append(format_field(entry, 'note')) + + line = filter(lambda l: l != "", line) + return [where, ", ".join(line)] + def format_details_thesis(entry): line = [] line.append(format_field(entry, 'school')) @@ -153,6 +168,8 @@ def format_entry(entry): lines.extend(format_details_article(entry)) elif entry.type=='inproceedings': lines.extend(format_details_inproceedings(entry)) + elif entry.type=='incollection': + lines.extend(format_details_incollection(entry)) elif entry.type=='book': lines.extend(format_details_book(entry)) elif entry.type=='patent':