Skip to content

Commit 7c87ab9

Browse files
authored
Made 2 sections for journal and conf papers
1 parent f198274 commit 7c87ab9

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

_includes/pub_entry.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
{% include authors.html authors=pub.authors %}
3737
{% endcapture %}
3838

39+
<h2> Journal Papers</h2>
40+
{% if pub.pub-type == "journal" %}
3941
<tr>
4042
<td>
4143
{{ date }}
@@ -66,3 +68,38 @@
6668
{% endif %}
6769
</td>
6870
</tr>
71+
{% endif %}
72+
73+
<h2> Conference Papers</h2>
74+
{% if pub.pub-type == "conference" %}
75+
<tr>
76+
<td>
77+
{{ date }}
78+
</td>
79+
<td class="publication">
80+
<span class="pubtitle">
81+
{{ title }}
82+
</span><br />
83+
<span class="authors">
84+
{{ authors }}
85+
</span><br />
86+
<span class="publisher">
87+
{% if pub.abbrv %}
88+
{{ pub.publisher | strip }} ({{ pub.abbrv | strip }}).
89+
{% else %}
90+
{{ pub.publisher | strip }}
91+
{% endif %}
92+
</span>
93+
{% if pub.pub-type == "conference" and pub.venue %}
94+
<span class="venue">
95+
{{ pub.venue | strip }}.
96+
</span>
97+
{% endif %}
98+
{% if pub.status %}
99+
<span class="status">
100+
({{ pub.status | strip }})
101+
</span>
102+
{% endif %}
103+
</td>
104+
</tr>
105+
{% endif %}

0 commit comments

Comments
 (0)