-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpublications.html
99 lines (97 loc) · 5.94 KB
/
publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
layout: default
title: Publications
description: 'Publications of our Lab.'
category: publications
years: ["2020","2019","2018","2017","2016","2015","2014","2013","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988"]
---
<blockquote>
<h5>COPYRIGHT NOTICE</h5>
<h5>Some documents distributed by this site have been provided by the contributing authors as a means to ensure timely dissemination of scholarly and technical work on a noncommercial basis. Copyright and all rights therein are maintained by the authors or by other copyright holders, notwithstanding that they have offered their works here electronically. It is understood that all persons copying this information will adhere to the terms and constraints invoked by each author’s copyright. These works may not be reposted without the explicit permission of the copyright holder.</h5>
</blockquote>
<div id="bibtex_sw">
<table class="teachpress_publication_list">
{% for year in page.years %}
<tr>
<td>
<h3 class="tp_h3">{{ year }}</h3></td>
</tr>
{% for post in site.categories[page.category] %}
{% if post.categories contains year %}
<tr class="tp_publication">
<td class="tp_pub_info">
<p class="tp_pub_author">{% for author in post.authors %}
{{ author }}{% if forloop.last == false %};{% endif %}
{% endfor %}</p>
<p class="tp_pub_title"><a class="tp_title_link" onclick="teachpress_pub_showhide('{{ post.code }}','tp_links')" style="cursor:pointer;">{{ post.title }}</a> <span class="tp_pub_typ">({{ post.type }})</span></p>
<p class="tp_pub_additional">
{% if post.school %}
<span class="tp_pub_additional_school">{{ post.school }}, </span>
{% endif %}
{% if post.booktitle %}
<span class="tp_pub_additional_booktitle">{{ post.booktitle }}, </span>
{% endif %}
{% if post.institution %}
<span class="tp_pub_additional_institution">{{ post.institution }}, </span>
{% endif %}
{% if post.publisher %}
<span class="tp_pub_additional_publisher">{{ post.publisher }}, </span>
{% endif %}
{% if post.address %}
<span class="tp_pub_additional_address">{{ post.address }}, </span>
{% endif %}
{% if post.type != "conference" and post.type != "article" %}
<span class="tp_pub_additional_techtype">{{ post.type }}, </span>
{% endif %}
{% if post.journal %}
<span class="tp_pub_additional_journal">{{ post.journal }}, </span>
{% endif %}
{% if post.isbn %}
<span class="tp_pub_additional_isbn">{{ post.isbn }}, </span>
{% endif %}
{% if post.number %}
<span class="tp_pub_additional_number">{{ post.number }}, </span>
{% endif %}
<span class="tp_pub_additional_year">{{ post.year }}</span>.
</p>
<p class="tp_pub_tags">(
{% if post.abstract %}
<a id="tp_abstract_sh_{{ post.code }}" class="tp_show" onclick="teachpress_pub_showhide('{{ post.code }}','tp_abstract')" title="Show abstract" style="cursor:pointer;">Abstract</a> |
{% endif %}
{% if post.link %}
<a id="tp_links_sh_{{ post.code }}" class="tp_show" onclick="teachpress_pub_showhide('{{ post.code }}','tp_links')" title="Show links and resources" style="cursor:pointer;">Links</a> |
{% endif %}
<a id="tp_bibtex_sh_{{ post.code }}" class="tp_show" onclick="teachpress_pub_showhide('{{ post.code }}','tp_bibtex')" style="cursor:pointer;" title="Show BibTeX entry">BibTeX</a> |
{% if post.tags %}
Tags:
{% for tag in post.tags %}
{{ tag }}{% if forloop.last == false %},{% endif %}
{% endfor %}
{% endif %})</p>
<div class="tp_bibtex" id="tp_bibtex_{{ post.code }}" style="display:none;">
<div class="tp_bibtex_entry">
<pre>
{{ post.content }}
</pre>
</div>
<p class="tp_close_menu"><a class="tp_close" onclick="teachpress_pub_showhide('{{ post.code }}','tp_bibtex')">Close</a></p>
</div>
<div class="tp_abstract" id="tp_abstract_{{ post.code }}" style="display:none;">
<div class="tp_abstract_entry">{{ post.abstract }}</div>
<p class="tp_close_menu"><a class="tp_close" onclick="teachpress_pub_showhide('{{ post.code }}','tp_abstract')">Close</a></p>
</div>
<div class="tp_links" id="tp_links_{{ post.code }}" style="display:none;">
<div class="tp_links_entry">
<ul class="tp_pub_list">
<li><a class="tp_pub_list" style="background-image: url(/wp-content/plugins/teachpress/images/mimetypes/application-pdf.png)" href="{{ post.link }}" title="{{ post.link }}" target="_blank">{{ post.link }}</a></li>
</ul>
</div>
<p class="tp_close_menu"><a class="tp_close" onclick="teachpress_pub_showhide('{{ post.code }}','tp_links')">Close</a></p>
</div>
</td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</table>
</div>