73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
|
{{> public_header}}
|
||
|
|
||
|
<style>
|
||
|
.authors.author {
|
||
|
}
|
||
|
|
||
|
span.author::after {
|
||
|
content:";";
|
||
|
}
|
||
|
|
||
|
span.author:last-child::after {
|
||
|
content:"";
|
||
|
}
|
||
|
|
||
|
.citation_count {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.pubdetail {
|
||
|
color: rgba(200,200,255, 0.55);
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
{{> generic_header}}
|
||
|
|
||
|
<!-- Wrapper -->
|
||
|
<div id="wrapper">
|
||
|
|
||
|
<section id="main" class="wrapper">
|
||
|
<div class="inner">
|
||
|
<h1 class="major">List of publications</h1>
|
||
|
<p><strong>Usage:</strong> you may sort by year or by citations by clicking on the corresponding header in the table below (see dotted line under the respective header).</p>
|
||
|
<div class="table-wrapper">
|
||
|
<table id="publications">
|
||
|
<thead>
|
||
|
<th onclick="sortTable(0)">Title<br/>
|
||
|
<span class="authors">Authors</span><br/>
|
||
|
<span class="doi">DOI</span>
|
||
|
</th>
|
||
|
<th style='min-width:3em'><a href="publications.php?sort_year={{sort_year}}">Year</a></th>
|
||
|
<th style='min-width:10em'>arXiv</th>
|
||
|
<th><a href="publications.php?sort={{sort_citation}}">Citations</a></th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{# publi }}
|
||
|
<tr>
|
||
|
<td>
|
||
|
<b>{{{ title }}}</b><br/>
|
||
|
<div class='authors'>
|
||
|
{{# authors }}
|
||
|
<span class="author">{{ . }}</span>
|
||
|
{{/ authors }}
|
||
|
</div>
|
||
|
<div class='doi'><a href='https://dx.doi.org/{{doi}}' target="_blank">DOI: {{ doi }}</a></div>
|
||
|
{{#doi}}<div class='pubdetail'>{{journal}} ({{year}}) {{#volume}}<span class="publi-volume">{{.}}</span>{{/volume}}{{#page}}, {{.}}{{/page}}</div>{{/doi}}
|
||
|
</td>
|
||
|
<td>{{ year }}</td>
|
||
|
<td><a href="https://arxiv.org/abs/{{ arxiv }}" target="_blank">{{ arxiv }}</a></td>
|
||
|
<td><span class="citation_count">{{ citation_count }}</span></td>
|
||
|
</tr>
|
||
|
{{/ publi }}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{{> public_footer}}
|