File tree Expand file tree Collapse file tree 1 file changed +6
-22
lines changed
Expand file tree Collapse file tree 1 file changed +6
-22
lines changed Original file line number Diff line number Diff line change 1- {% bibliography -- group_by year --sort_by year --order descending %}
2- {% for group in bibliography %}
1+ {% assign groups = site. bibliography | group_by: " year" | sort: "name" | reverse %}
2+ {% for group in groups %}
33 < h3 style ="margin-top: 1.5em; font-weight: bold; ">
44 {{ group.name }}
55 </ h3 >
66 < ul style ="list-style-type: none; padding-left: 0; ">
77 {% for entry in group.items %}
88 < li style ="margin-bottom: 10px; ">
99 [{{ forloop.index }}]
10- <!-- Authors -->
11- {{ entry.author }}.
12-
13- <!-- Year -->
14- ({{ entry.year }}).
15-
16- <!-- Title -->
10+ {{ entry.author }}. ({{ entry.year }}).
1711 < em > {{ entry.title }}</ em > .
18-
19- <!-- Venue -->
2012 {% if entry.journal %}
2113 {{ entry.journal }}
2214 {% elsif entry.booktitle %}
2315 {{ entry.booktitle }}
2416 {% elsif entry.publisher %}
2517 {{ entry.publisher }}
2618 {% endif %}
27-
28- <!-- Links -->
29- {% if entry.url %}
30- < a href ="{{ entry.url }} " target ="_blank "> [PDF]</ a >
31- {% endif %}
32- {% if entry.doi %}
33- < a href ="https://doi.org/{{ entry.doi }} " target ="_blank "> [DOI]</ a >
34- {% endif %}
35- {% if entry.eprint %}
36- < a href ="https://arxiv.org/abs/{{ entry.eprint }} " target ="_blank "> [arXiv]</ a >
37- {% endif %}
19+ {% if entry.url %}< a href ="{{ entry.url }} " target ="_blank "> [PDF]</ a > {% endif %}
20+ {% if entry.doi %}< a href ="https://doi.org/{{ entry.doi }} " target ="_blank "> [DOI]</ a > {% endif %}
21+ {% if entry.eprint %}< a href ="https://arxiv.org/abs/{{ entry.eprint }} " target ="_blank "> [arXiv]</ a > {% endif %}
3822 </ li >
3923 {% endfor %}
4024 </ ul >
You can’t perform that action at this time.
0 commit comments