-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
97 lines (89 loc) · 5.37 KB
/
publications.html
File metadata and controls
97 lines (89 loc) · 5.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publications | Katherine Ormerod</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html" class="site-title">Katherine Ormerod</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html" class="active">Publications</a></li>
<li><a href="talks.html">Talks</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="menu-toggle">☰</button>
</nav>
</header>
<main>
<section id="publications" class="publications-section">
<div class="content-wrapper">
<h2>Publications</h2>
<div class="publications-grid">
<div class="publication-card">
<h3>First-author Publications</h3>
<div class="publication">
<h4>Detection of the 2175Å UV Bump at z>7: Evidence for Rapid Dust Evolution in a Merging Reionisation-Era Galaxy</h4>
<p class="journal">Monthly Notices of the Royal Astronomical Society (2025)</p>
<p class="abstract">We report the detection of a strong UV bump in a luminous Lyman-break galaxy at z = 7.11235, GNWY-7379420231, through observations taken as part of the NIRSpec Wide GTO survey</p>
<a href="https://ui.adsabs.harvard.edu/abs/2025arXiv250221119O/abstract" class="publication-link">View Publication →</a>
</div>
<div class="publication">
<h4>EPOCHS VI: the size and shape evolution of galaxies since z~8 with JWST Observations</h4>
<p class="journal">Monthly Notices of the Royal Astronomical Society (2024)</p>
<p class="abstract">A size and structural analysis of 1395 galaxies at 0.5 ≤ z ≲ 8 with stellar masses log (M*/M⊙)> 9.5 within public JWST NIRCam data from the CEERS field.</p>
<a href="https://ui.adsabs.harvard.edu/abs/2024MNRAS.527.6110O/abstract" class="publication-link">View Publication →</a>
</div>
<h3>Significant Contributions</h3>
<div class="publication">
<h4>Detection of [OIII]88 μm in JADES-GS-z14-0 at z=14.1793</h4>
<p class="journal">The Astrophysical Journal (2025)</p>
<p class="abstract">The first successful ALMA follow-up observations of a secure z>10 JWST-selected galaxy, by robustly detecting (6.6σ) the [OIII] 88μm line in JADES-GS-z14-0.</p>
<a href="https://ui.adsabs.harvard.edu/abs/2024arXiv240920549S/abstract" class="publication-link">View Publication →</a>
</div>
<div class="publication">
<h4>Galaxy Quenching at the High Redshift Frontier: A Fundamental Test of Cosmological Models in the Early Universe with JWST-CEERS</h4>
<p class="journal">The Astrophysical Journal (2024)</p>
<p class="abstract">An analysis of the quenching of star formation in massive galaxies (M* > 10^9.5 M⊙) within the first 0.5–3 Gyr of the Universe's history.</p>
<a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...961..163B/abstract" class="publication-link">View Publication →</a>
</div>
<h3>All publications</h3>
<p class="all-publications">View all my publications on NASA ADS here (last updated 22 March 2025):</p>
<a href="https://ui.adsabs.harvard.edu/public-libraries/KYyNbSpRRxyQfnKaV7IIqQ" class="publication-link">View all publications on ADS →</a>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 Katherine Ormerod</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.navigation ul');
menuToggle.addEventListener('click', function() {
navMenu.classList.toggle('show');
});
document.addEventListener('click', function(event) {
const isClickInsideNav = event.target.closest('.navigation');
if (!isClickInsideNav && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
window.addEventListener('resize', function() {
if (window.innerWidth > 768 && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
});
</script>
</body>
</html>