-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
271 lines (248 loc) · 8.12 KB
/
publications.html
File metadata and controls
271 lines (248 loc) · 8.12 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images/profile_picture.webp">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="r1D-6SNj_GhLprCtVjNcUrtT76lZ5x0xJ9wzBv05wbE" />
<meta property="og:image" content="images/profile_picture.webp" />
<meta property="og:title" content="Hariprashad Ravikumar | Theoretical Particle Physicist" />
<meta property="og:description" content="PhD candidate at NMSU researching Lattice QCD" />
<meta property="og:url" content="https://hariprashad-ravikumar.github.io/" />
<meta name="description" content="Hariprashad Ravikumar — PhD candidate in Theoretical Particle Physics at New Mexico State University Specialized in Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions (TMDs) (Sivers Shift)">
<meta name="keywords" content="Hariprashad Ravikumar, Lattice QCD, Transverse Momentum Dependent Parton Distribution Functions, TMDs, Sivers Shift, EDM, nEDM, conformal field theory, particle physics, theoretical physics" />
<title>Hariprashad Ravikumar</title>
<link rel="stylesheet" href="styles.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Hariprashad Ravikumar",
"jobTitle": "PhD Candidate in Theoretical Particle Physics",
"affiliation": {
"@type": "CollegeOrUniversity",
"name": "New Mexico State University"
},
"sameAs": [
"https://www.linkedin.com/in/hariprashad-ravikumar/",
"https://github.com/Hariprashad-Ravikumar"
],
"url": "https://hariprashad-ravikumar.github.io"
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script>
function toggleChatbox() {
const box = document.getElementById("chatbox");
box.style.display = box.style.display === "none" ? "flex" : "none";
}
</script>
<style>
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
max-width: 1200px;
margin: 0 auto;
}
header {
background: #000 no-repeat center url("images/cover_website.webp");
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
padding: 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
img.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%; /* Keep this for circular appearance */
margin-top: 20px;
}
header h1, header p {
margin: 0;
text-shadow: 2px 2px 10px #000000, 0 0 30px blue, 0 0 8px darkblue;
}
nav {
max-width: 100%;
}
main {
padding: 20px;
background-color: #fff;
max-width: 100%;
margin: 0 auto;
opacity: 0;
animation: fadeInMain 1.5s ease-in-out forwards;
}
@keyframes fadeInMain {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
section {
margin-bottom: 20px; /* Adjust this value to control the gap between sections */
}
section h2 {
margin-bottom: 10px; /* Adjust this value to control the gap between the heading and paragraphs */
}
section p {
margin: 0; /* Remove default margin to reduce spacing */
}
.research-figure img {
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
}
#chat-launcher {
position: fixed;
bottom: 20px;
right: 20px;
background: #001f3f;
color: white;
padding: 12px 16px;
border-radius: 30px;
cursor: pointer;
z-index: 1000;
font-family: 'Times New Roman', Times, serif;
box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
transition: background 0.3s;
}
#chat-launcher:hover {
background: #003366;
}
#chatbox {
position: fixed;
bottom: 80px;
right: 20px;
width: 350px;
height: auto;
min-height: 300px;
display: none;
flex-direction: column;
background: white;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
overflow: hidden;
z-index: 1001;
}
#chatbox-header {
background: #001f3f;
color: white;
padding: 10px 15px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'Times New Roman', Times, serif;
}
#chatbox iframe {
min-height: 480px;
width: 100%;
border: none;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NNHPM3N7SY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NNHPM3N7SY');
</script>
<body>
<header>
<!-- <img src="images/profile-picture.jpeg" alt="Profile Picture" class="profile-picture"> -->
<div class="blank-space" style="width: 100px; height: 15px;"></div>
<h1>Hariprashad Ravikumar</h1>
<p>PhD Candidate (Theoretical Particle Physics)</p>
<div class="blank-space" style="width: 100px; height: 110px;"></div>
</header>
<nav>
<ul>
<li><a href="./">About Me</a></li>
<li><a href="/cv">CV</a></li>
<li><a href="/GitHub_Portfolio">GitHub Portfolio</a></li>
<li><a href="/talks">Talks</a></li>
<li class="current"><a href="/">Publications</a></li>
</ul>
</nav>
<main>
<section id="publications-under-review">
<h2>Publications Under Peer-Review</h2>
<ul>
<li>
<p>
<strong>
<a href="https://arxiv.org/abs/2601.19251" target="_blank">
Interpolating conformal algebra in (1+1) dimensions between the instant form and the light-front form of relativistic dynamics
</a>
</strong>
</p>
<p>
Ji, C.-R. & <strong>Ravikumar, H.</strong> (2026).
<em>Physical Review D</em> (Submitted).
Preprint: <a href="https://arxiv.org/abs/2601.19251" target="_blank">arXiv:2601.19251 [hep-th]</a>.
</p>
</li>
</ul>
</section>
<section id="publications-in-preparation">
<h2>Publications in Preparation</h2>
<ol>
<li>
<p>
<strong>Ravikumar, H.</strong> & Ji, C.-R. Interpolating conformal algebra (3+1) between the instant form and the front form of relativistic dynamics.
</p>
</li>
</ol>
</section>
<section id="conference-publication">
<h2>Conference Publication</h2>
<p class="publication-entry">
Ji, C.-R., Dahiya, H., & Ravikumar, H. (2021, December).
<em><a href="https://indico.global/event/13145/contributions/116043/"
target="_blank">
Interpolating conformal algebra between the instant form and the front form of relativistic dynamics
</a></em>.
Presented at <em>Light Cone 2021 – Physics of Hadrons on the Light Front</em>, Jeju Island, South Korea.
</p>
</section>
<section id="msc-thesis">
<h2>MSc Thesis</h2>
<p class="thesis-entry">
Ravikumar, H. (2021, August).
<em><a href="publication_pdfs/The Poincaré Algebra Interpolation between Instant Form Dynamics (IFD) and Light Front Dynamics (LFD) (Master's thesis).pdf"
target="_blank">
The Poincaré Algebra Interpolation between Instant Form Dynamics (IFD) and Light-Front Dynamics (LFD)
</a></em>
(Master’s thesis). National Institute of Technology, Jalandhar, India.
</p>
<p class="thesis-advisors">
Supervised by Prof. Harleen Dahiya (NIT Jalandhar), in collaboration with Prof. Chueng-Ryong Ji (North Carolina State University).
</p>
</section>
</main>
<div id="chat-launcher" onclick="toggleChatbox()">Chat with my AI HariBot</div>
<div id="chatbox">
<div id="chatbox-header">
<span>HariBot AI 🤖</span>
<button onclick="toggleChatbox()">×</button>
</div>
<iframe id="chat-iframe" src="https://hari-chatbot.onrender.com" title="HariBot Assistant"></iframe>
</div>
<footer>
<p>© 2025 Hariprashad Ravikumar. All rights reserved.</p>
</footer>
<script src="script.js" defer></script>
</body>
</html>