|
| 1 | +--- |
| 2 | +--- |
| 3 | + |
| 4 | +{% if entry.abbr %} |
| 5 | + {% if site.data.venues[entry.abbr] %} |
| 6 | + <abbr>[<a href="{{site.data.venues[entry.abbr].url}}" target="_blank">{{entry.abbr}}</a>]</abbr> |
| 7 | + {% else %} |
| 8 | + <abbr>[{{entry.abbr}}]</abbr> |
| 9 | + {% endif %} |
| 10 | +{% endif %} |
| 11 | + |
| 12 | +<div id="{{entry.key}}"> |
| 13 | + {% if entry.type == "thesis" %} |
| 14 | + {{reference}} |
| 15 | + {% else %} |
| 16 | + <span class="title">{{entry.title}}</span> |
| 17 | + <span class="author"> |
| 18 | + {% for author in entry.author_array %} |
| 19 | + {% if forloop.length == 1 %} |
| 20 | + {{author.first}} {{author.last}} |
| 21 | + {% else %} |
| 22 | + {% unless forloop.last %} |
| 23 | + {{author.first}} {{author.last}}, |
| 24 | + {% else %} |
| 25 | + and {{author.first}} {{author.last}} |
| 26 | + {% endunless %} |
| 27 | + {% endif %} |
| 28 | + {% endfor %} |
| 29 | + </span> |
| 30 | + |
| 31 | + <span class="howpublished"> |
| 32 | + {% if entry.type == "article" %} |
| 33 | + <em>{{entry.journal}}</em>. |
| 34 | + {% elsif entry.type == "inproceedings" %} |
| 35 | + <em>{{entry.booktitle}}</em>. |
| 36 | + {% elsif entry.howpublished %} |
| 37 | + {{entry.howpublished}}. |
| 38 | + {% endif %} |
| 39 | + {% if entry.day %} |
| 40 | + {{entry.day}} |
| 41 | + {% endif %} |
| 42 | + {% if entry.month %} |
| 43 | + {{entry.month | capitalize }}, |
| 44 | + {% endif %} |
| 45 | + {% if entry.year %} |
| 46 | + {{entry.year}} |
| 47 | + {% endif %} |
| 48 | + </span> |
| 49 | + |
| 50 | + {% endif %} |
| 51 | + |
| 52 | + <span class="links"> |
| 53 | + {% if entry.doi %} |
| 54 | + [<a href="http://doi.org/{{ entry.doi }}" target="_blank">DOI</a>] |
| 55 | + {% endif %} |
| 56 | + {% if entry.archiveprefix and entry.eprint %} |
| 57 | + [<a href="http://arxiv.org/abs/{{ entry.eprint }}" target="_blank">arXiv</a>] |
| 58 | + {% endif %} |
| 59 | + {% if entry.arxiv %} |
| 60 | + [<a href="http://arxiv.org/abs/{{ entry.arxiv }}" target="_blank">arXiv</a>] |
| 61 | + {% endif %} |
| 62 | + {% if entry.lingbuzz %} |
| 63 | + [<a href="https://ling.auf.net/lingbuzz/{{ entry.lingbuzz }}" target="_blank">lingbuzz</a>] |
| 64 | + {% endif %} |
| 65 | + {% if entry.url %} |
| 66 | + [<a href="{{ entry.url }}" target="_blank">link</a>] |
| 67 | + {% endif %} |
| 68 | + {% if entry.preprint %} |
| 69 | + [<a href="{{ entry.preprint }}" target="_blank">preprint</a>] |
| 70 | + {% endif %} |
| 71 | + {% if entry.handout %} |
| 72 | + [<a href="{{ entry.handout }}" target="_blank">handout</a>] |
| 73 | + {% endif %} |
| 74 | + {% if entry.html %} |
| 75 | + [<a href="{{ entry.html }}" target="_blank">HTML</a>] |
| 76 | + {% endif %} |
| 77 | + {% if entry.pdf %} |
| 78 | + [<a href="{{ entry.pdf | prepend: '/assets/pdfs/' | prepend: site.baseurl | prepend: site.url }}" target="_blank">pdf</a>] |
| 79 | + {% endif %} |
| 80 | + {% if entry.poster %} |
| 81 | + [<a href="{{ entry.poster | prepend: '/assets/pdfs/' | prepend: site.baseurl | prepend: site.url }}" target="_blank">poster</a>] |
| 82 | + {% endif %} |
| 83 | + {% if entry.slides %} |
| 84 | + [<a href="{{ entry.slides | prepend: '/assets/pdfs/' | prepend: site.baseurl | prepend: site.url }}" target="_blank">slides</a>] |
| 85 | + {% endif %} |
| 86 | + {% if entry.code %} |
| 87 | + [<a href="{{ entry.code }}" target="_blank">code</a>] |
| 88 | + {% endif %} |
| 89 | + </span> |
| 90 | + {% if entry.abstract %} |
| 91 | + <details> |
| 92 | + <summary>abstract</summary> |
| 93 | + <div class="content"> |
| 94 | + <p>{{ entry.abstract }}</p> |
| 95 | + </div> |
| 96 | + </details> |
| 97 | + {% endif %} |
| 98 | +</div> |
0 commit comments