Education
{% for e in cv.education %}
| {{ e.period }} |
{{ e.institution }} |
{{ e.department }} |
{{ e.degree }}{% if e.note %} {{ e.note }}{% endif %} |
{% endfor %}
Academic Appointments
{% for a in cv.appointments %}
| {{ a.period }} |
{{ a.institution }} |
{{ a.department }} |
{{ a.title }}{% if a.note %} {{ a.note }}{% endif %} |
{% endfor %}
Research Summary
{% for r in cv.research_summary %}
{% for b in r.bullets %}
{{ b }}
{% endfor %}
{% endfor %}
{% if cv.skills %}
Technical Skills
{% for s in cv.skills %}
{{ s.category }}: {{ s.details }}
{% endfor %}
{% endif %}
Awards and Academic Service
{% for a in cv.awards %}
{{ loop.index }}. {{ a }}
{% endfor %}
Publications
First-Author Conference Papers:
{% for p in cv.publications.conference if p.first_author %}
[{{ p.id }}] {{ p.text | bold_author }}
{% if 'highlight' in (p.tags or []) %}(Highlight Paper){% endif %}
{% if 'accepted' in (p.tags or []) %}(Accepted){% endif %}
{% if p.note %} [{{ p.note }}]{% endif %}
{% endfor %}
First-Author Journal Papers:
{% for p in cv.publications.journal if p.first_author %}
[{{ p.id }}] {{ p.text | bold_author }}
{% if 'highlight' in (p.tags or []) %}(Highlight Paper){% endif %}
{% if 'accepted' in (p.tags or []) %}(Accepted){% endif %}
{% if p.note %} [{{ p.note }}]{% endif %}
{% endfor %}
Co-Authored Conference Papers:
{% for p in cv.publications.conference if not p.first_author %}
[{{ p.id }}] {{ p.text | bold_author }}
{% if 'highlight' in (p.tags or []) %}(Highlight Paper){% endif %}
{% if 'accepted' in (p.tags or []) %}(Accepted){% endif %}
{% endfor %}
Co-Authored Journal Papers:
{% for p in cv.publications.journal if not p.first_author %}
[{{ p.id }}] {{ p.text | bold_author }}
{% if 'highlight' in (p.tags or []) %}(Highlight Paper){% endif %}
{% if 'accepted' in (p.tags or []) %}(Accepted){% endif %}
{% endfor %}