-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
103 lines (93 loc) · 3.41 KB
/
Copy pathpublications.html
File metadata and controls
103 lines (93 loc) · 3.41 KB
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
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publications — Your Name</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<div class="wrap">
<a href="index.html" class="site-name">Your Name<span>.</span></a>
<nav class="site-nav">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="publications.html" class="active">Publications</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<section class="hero" style="padding-bottom: 20px;">
<div class="wrap" style="display:block;">
<span class="eyebrow">Publications</span>
<h1 style="font-size:2.1rem;">Papers & Preprints</h1>
<p class="hero-vision">
A full list of my publications, grouped by year, most recent first.
Links to PDF/DOI are added where available.
</p>
</div>
</section>
<section class="block" style="border-top:none;">
<div class="wrap">
<!-- ============================================================
HOW TO ADD A NEW PAPER
1. Copy one whole <li class="pub-entry"> ... </li> block.
2. Paste it as the FIRST item under the correct year heading
(so newest papers stay on top).
3. Edit the title, authors, journal name, and links.
4. To add a new YEAR, copy a <div class="pub-year">...</div>
plus a new <ol class="pub-list"> ... </ol> pair.
============================================================ -->
<div class="pub-year">2026</div>
<ol class="pub-list">
<li class="pub-entry">
<div class="pub-title">Title of paper goes here</div>
<div class="pub-meta">Your Name, Co-Author A, Co-Author B — <em>Journal or Conference Name</em>, Vol. X, 2026</div>
<div class="pub-tags">
<a href="#">PDF</a>
<a href="#">DOI</a>
<a href="#">Code</a>
</div>
</li>
<li class="pub-entry">
<div class="pub-title">Title of another 2026 paper</div>
<div class="pub-meta">Your Name, Co-Author A — <em>Journal or Conference Name</em>, 2026</div>
<div class="pub-tags">
<a href="#">PDF</a>
<a href="#">DOI</a>
</div>
</li>
</ol>
<div class="pub-year">2025</div>
<ol class="pub-list">
<li class="pub-entry">
<div class="pub-title">Title of a 2025 paper</div>
<div class="pub-meta">Your Name, Co-Author A, Co-Author B — <em>Journal or Conference Name</em>, 2025</div>
<div class="pub-tags">
<a href="#">PDF</a>
<a href="#">DOI</a>
</div>
</li>
</ol>
<div class="pub-year">2024</div>
<ol class="pub-list">
<li class="pub-entry">
<div class="pub-title">Title of a 2024 paper</div>
<div class="pub-meta">Your Name — <em>Journal or Conference Name</em>, 2024</div>
<div class="pub-tags">
<a href="#">PDF</a>
</div>
</li>
</ol>
</div>
</section>
<footer>
<div class="wrap">
<p>© 2026 Your Name. Last updated [Month Year].</p>
</div>
</footer>
</body>
</html>