-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
282 lines (257 loc) · 12.2 KB
/
publications.html
File metadata and controls
282 lines (257 loc) · 12.2 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
272
273
274
275
276
277
278
279
280
281
282
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publications | David Ochoa Resendiz</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;800&display=swap"
rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<!-- Font Awesome for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.article-card {
border-left: 3px solid var(--accent-color);
transition: border-color 0.3s, transform 0.3s;
}
.article-card:hover {
border-color: var(--accent-gold);
transform: translateY(-4px);
}
.article-authors {
font-size: 0.82rem;
color: var(--text-secondary);
margin-bottom: 0.5rem;
font-style: italic;
}
.article-authors strong {
color: var(--accent-gold);
font-style: normal;
}
.article-meta {
display: flex;
gap: 0.75rem;
align-items: center;
flex-wrap: wrap;
margin-top: 0.75rem;
}
.article-if {
font-size: 0.75rem;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 2px 8px;
border-radius: 20px;
color: var(--text-secondary);
}
.doi-btn {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.78rem;
color: var(--accent-color);
text-decoration: none;
border: 1px solid var(--accent-color);
padding: 4px 12px;
border-radius: 20px;
transition: background 0.2s, color 0.2s;
}
.doi-btn:hover {
background: var(--accent-color);
color: #fff;
}
.pub-stats {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
margin: 0 auto 3rem auto;
max-width: 700px;
}
.pub-stat {
text-align: center;
}
.pub-stat .num {
font-family: 'Outfit', sans-serif;
font-size: 2.2rem;
font-weight: 800;
background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.pub-stat .lbl {
font-size: 0.8rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav>
<ul class="nav-links">
<li><a href="index.html" data-i18n="nav_home">Home</a></li>
<li><a href="about.html" data-i18n="nav_about">About Me</a></li>
<li><a href="publications.html" class="active" data-i18n="nav_articles">Publications</a></li>
<li><a href="blog.html" data-i18n="nav_blog">Research Log</a></li>
<li><a href="career.html" data-i18n="nav_collabs">Career</a></li>
</ul>
</nav>
<button id="lang-toggle" class="lang-btn">ESPAÑOL</button>
<div class="mobile-menu-btn">
<i class="fas fa-bars"></i>
</div>
</header>
<!-- Published Articles -->
<section id="articles" class="page-section">
<div class="section-title">
<h2 data-i18n="articles_title">Scientific Publications</h2>
<p data-i18n="articles_subtitle">Research in indexed international journals.</p>
</div>
<!-- Quick stats -->
<div class="pub-stats">
<div class="pub-stat">
<div class="num">6</div>
<div class="lbl" data-i18n="stat_articles">Indexed Articles</div>
</div>
<div class="pub-stat">
<div class="num">~3.1</div>
<div class="lbl" data-i18n="stat_avg_if">Avg. Impact Factor</div>
</div>
<div class="pub-stat">
<div class="num">3</div>
<div class="lbl" data-i18n="stat_journals">Journals</div>
</div>
</div>
<div class="articles-grid">
<!-- Article 1 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">J. Chem. Phys. · 2025</span>
<h3>Specialized modification to the G4 composite method for computing formation enthalpies of
nitrophenyl and nitrogen-heterocycle organic compounds</h3>
<p class="article-authors"><strong>D. Ochoa-Resendiz</strong>, J. M. Solano-Altamirano, J.
Sandoval-Lira, J. M. Hernández-Pérez.</p>
<p data-i18n="art_1_desc">Computing formation enthalpies of nitrophenyl and nitrogen-heterocycle
organic compounds using a specialized modification of the G4 composite method.</p>
<div class="article-meta">
<span class="article-if">IF: 3.1</span>
<a href="https://doi.org/10.1063/5.0264222" target="_blank" class="doi-btn">
<i class="fas fa-external-link-alt"></i> DOI
</a>
</div>
</div>
</article>
<!-- Article 2 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">Thermochim. Acta · 2025</span>
<h3>The thermochemical properties of 2- and 3-Thiophenemethanol: eluding incomplete combustion
issues through combining experimental and computational methodologies</h3>
<p class="article-authors">F. Ramos, <strong>D. Ochoa-Resendiz</strong>, E. A. Camarillo, J. M.
Hernández-Pérez, H. Flores, J. M. Solano-Altamirano.</p>
<p data-i18n="art_2_desc">Combining experimental calorimetry and ab initio methods to determine
thermochemical properties of thiophenemethanol isomers.</p>
<div class="article-meta">
<span class="article-if">IF: 3.1</span>
<a href="https://doi.org/10.1016/j.tca.2025.180034" target="_blank" class="doi-btn">
<i class="fas fa-external-link-alt"></i> DOI
</a>
</div>
</div>
</article>
<!-- Article 3 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">Phys. Chem. Chem. Phys. · 2025</span>
<h3>Photodissociation dynamics of ethyl formate at 193 nm based on synchrotron radiation and ab
initio calculations: hydrogen elimination and secondary dissociations</h3>
<p class="article-authors">O. Domínguez-Flores, R. Navarro-Severiano, <strong>D.
Ochoa-Resendiz</strong>, O. Quiroz-Cardoso, A. Rodríguez-Hernández, J. Porcayo-Calderón, F.
J. Hernández-Campos, S.-H. Lee, R. Hernández-Lamoneda, A. Quinto-Hernández.</p>
<p data-i18n="art_3_desc">Synchrotron radiation and ab initio study of ethyl formate
photodissociation at 193 nm — hydrogen elimination and secondary dissociation pathways.</p>
<div class="article-meta">
<span class="article-if">IF: 2.9</span>
<a href="https://pubs.rsc.org/en/content/articlelanding/2025/cp/d4cp04830j" target="_blank"
class="doi-btn">
<i class="fas fa-external-link-alt"></i> View Article
</a>
</div>
</div>
</article>
<!-- Article 4 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">J. Chem. Phys. · 2022</span>
<h3>Halogen bonding and rotational disorder in chlorine clathrate hydrate cages</h3>
<p class="article-authors"><strong>D. Ochoa-Resendiz</strong>, A. Gamboa-Suárez, R.
Hernández-Lamoneda.</p>
<p data-i18n="art_4_desc">Ab initio characterization of halogen bonding and rotational disorder of
Cl₂ inside clathrate hydrate cages.</p>
<div class="article-meta">
<span class="article-if">IF: 3.1</span>
<a href="https://doi.org/10.1063/5.0082604" target="_blank" class="doi-btn">
<i class="fas fa-external-link-alt"></i> DOI
</a>
</div>
</div>
</article>
<!-- Article 5 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">ChemPhysChem · 2018</span>
<h3>Halogen bonds in clathrate cages: a real space perspective</h3>
<p class="article-authors">J. M. Guevara-Vela, <strong>D. Ochoa-Resendiz</strong>, R.
Hernández-Lamoneda, A. Costales, Á. Martín-Peñas.</p>
<p data-i18n="art_5_desc">Real-space QTAIM analysis of halogen bonds formed by Cl₂ in clathrate
hydrate cages.</p>
<div class="article-meta">
<span class="article-if">IF: 3.52</span>
<a href="https://doi.org/10.1002/cphc.201800474" target="_blank" class="doi-btn">
<i class="fas fa-external-link-alt"></i> DOI
</a>
</div>
</div>
</article>
<!-- Article 6 -->
<article class="article-card">
<div class="article-content">
<span class="article-tag">J. Chem. Phys. · 2016</span>
<h3>Evidence of halogen bonds in clathrate cages</h3>
<p class="article-authors"><strong>D. Ochoa-Resendiz</strong>, F. A. Batista-Romero, R.
Hernández-Lamoneda.</p>
<p data-i18n="art_6_desc">First computational evidence demonstrating halogen bonding interactions
within clathrate cages, using high-level ab initio methods.</p>
<div class="article-meta">
<span class="article-if">IF: 3.1</span>
<a href="https://doi.org/10.1063/1.4966644" target="_blank" class="doi-btn">
<i class="fas fa-external-link-alt"></i> DOI
</a>
</div>
</div>
</article>
</div>
</section>
<!-- Footer -->
<footer>
<div class="social-links">
<a href="mailto:ochoadr@gmail.com" class="social-icon"><i class="fas fa-envelope"></i></a>
<a href="https://github.com/dochoar" target="_blank" class="social-icon"><i class="fab fa-github"></i></a>
<a href="https://www.researchgate.net/profile/David-Ochoa-Resendiz" target="_blank" class="social-icon"><i
class="fab fa-researchgate"></i></a>
<a href="https://youtube.com/c/CompendiodeClases" target="_blank" class="social-icon"><i
class="fab fa-youtube"></i></a>
</div>
<p>© 2026 David Ochoa Resendiz. Cuernavaca, Morelos.</p>
</footer>
<script src="script.js"></script>
</body>
</html>