-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpublications.html
54 lines (45 loc) · 1.61 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
---
title: Publications
layout: default
sectionid: publications
---
<div class="container page-pad">
<h1>Publications (<a href="https://orcid.org/0000-0002-0212-5451">ORCiD</a> | <a href="https://scholar.google.com/citations?user=EEX1uGwAAAAJ&hl=en">Google Scholar</a>)</h1>
We are <a href="https://www.nature.com/articles/d41586-023-01440-z">committed to open access</a>. If you find a manuscript that we have co-authored but is not available here, please <a href="/contact">contact us</a> directly and we will be happy to send you an electronic copy.
<hr>
<p>
<i>* Denotes equal contribution</i><br>
<i>^ Denotes corresponding author</i><br>
<i><u>JEFworks lab members</u> are underlined</i>
</p>
</div>
<div class="bg-light">
<div class="container page-pad" id="toc">
<h2>Table of Contents</h2>
<ul class="post-list-container">
{% assign items = site.papers | reverse %}
{% for post in items %}
<li>{{ post.date | date_to_long_string }} - <a href="{{ site.baseurl }}/publications#{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="container page-pad">
{% for pub in site.papers reversed %}
<div class="row" id={{pub.id}}/><div class="col-md-12">
{{ pub }}
</div></div>
<hr>
{% endfor %}
</div>
<div class="container">
<button type="button" class="btn btn-warning btn-block" onclick="scrollToTop()">Scroll to Top</button>
<script>
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
</script>
</div>