+ {% block before_content %}
+
This is a complete list of publications I have authored or co-authored.
+ You can find my h-index and i10-index information at Google Scholar.
+
+ {% endblock %}
+ {% for group in publications|groupby(1)|reverse %}
+
{{ group.grouper }}
+
+ {% for key, year, text, bibtex, pdf, slides, poster in group.list %}
+ - {{ text }}
+ [ Bibtex ]
+ {% for label, target in [('PDF', pdf), ('Slides', slides), ('Poster', poster)] %}
+ {{ "[ %s ]" % (target, label) if target }}
+ {% endfor %}
+
+ {% endfor %}
+
+ {% endfor %}
+ {% block after_content %}{% endblock %}
+
+