-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
219 lines (193 loc) · 7.29 KB
/
notes.html
File metadata and controls
219 lines (193 loc) · 7.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Notes - Zhide Lu</title>
<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=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<style>
/* 1. 为整个页面增加顶部边距,防止内容被固定的导航栏遮挡 */
body {
padding-top: 70px !important;
font-family: 'Merriweather', serif;
line-height: 1.6;
color: #333;
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
background-color: #fcfcfc;
}
/* 2. 导航栏外层容器:固定在顶部 */
.top-nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
z-index: 1000;
display: flex;
align-items: center;
}
/* 3. 内部限宽容器:与页面的宽度对齐 */
.nav-container {
max-width: 1000px;
width: 100%;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: flex-start;
}
/* 4. 链接样式 */
.nav-links a {
text-decoration: none;
color: #555;
font-weight: 600;
font-size: 1.1rem;
margin-right: 30px;
padding: 5px 0;
transition: color 0.3s ease;
border-bottom: 2px solid transparent;
}
/* 5. 鼠标悬停效果 */
.nav-links a:hover {
color: #0366d6;
}
/* 6. 当前所在页面的高亮效果 (注意:这里高亮的是 Research Notes) */
.nav-links a.active {
color: #0366d6;
border-bottom: 2px solid #0366d6;
}
/* --- Header 布局控制 --- */
header {
display: flex;
align-items: center;
gap: 3rem; /* 间距改回和主页一致的 3rem */
margin-bottom: 2rem;
border-bottom: 2px solid #eee;
padding-bottom: 1.5rem;
}
.profile-photo {
width: 160px; /* 尺寸改回和主页一致 */
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #eee;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
flex-shrink: 0;
}
.header-text { flex-grow: 1; }
h1 { font-size: 2.5rem; margin-top: 0; margin-bottom: 0.2rem; color: #111; }
h2 { font-size: 1.5rem; color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 0.3rem; margin-top: 2rem; }
a { color: #0366d6; text-decoration: none; }
a:hover { text-decoration: underline; }
/* 补回个人信息的排版样式 */
.header-info {
font-size: 1.1rem;
margin-bottom: 1.5rem;
}
.contact-links a {
margin-right: 8px;
font-weight: bold;
}
.contact-links span {
color: #ccc;
margin-right: 8px;
}
/* 笔记列表的专属样式 */
.note-list {
list-style-type: none;
padding: 0;
}
.note-list li {
margin-bottom: 1.2rem;
}
.note-date {
font-size: 0.9rem;
color: #7f8c8d;
margin-right: 15px;
font-style: italic;
}
.note-title {
font-size: 1.1rem;
font-weight: bold;
}
.note-summary {
font-size: 0.95rem;
color: #555;
margin-top: 0.3rem;
}
</style>
</head>
<body>
<nav class="top-nav">
<div class="nav-container">
<div class="nav-links">
<a href="index.html">Home</a>
<a href="notes.html" class="active">Research Notes</a>
</div>
</div>
</nav>
<header>
<img src="zhidelu.jpg" alt="Zhide Lu's Portrait" class="profile-photo">
<div class="header-text">
<h1>Zhide Lu (鲁智德)</h1>
<div class="header-info">
Research Scientist, Shanghai Qi Zhi Institute<br>
Research Direction: Quantum Error Correction, Quantum Artificial Intelligence
</div>
<div class="contact-links">
<a href="mailto:zhide.lu1997@gmail.com">Email</a><span>|</span>
<a href="https://scholar.google.com/citations?user=0Q_l6w8AAAAJ&hl=zh-CN" target="_blank">Google Scholar</a><span>|</span>
<a href="https://github.com/ZhideLu" target="_blank">Github</a><span>|</span>
<a href="https://www.linkedin.com/in/zhide-lu-3551b2240/" target="_blank">Linkedin</a>
</div>
</div>
</header>
<section id="notes">
<h2>Research Notes</h2>
<p>A collection of my notes on quantum error correction.</p>
<ul class="note-list">
<li>
<span class="note-date">2026-04</span>
<a href="Gidney_RSA-2048.html" class="note-title">Notes for "How to factor 2048 bit RSA integers with less than a million noisy qubits"</a>
</li>
<li>
<span class="note-date">2026-04</span>
<a href="Iceberg_RSA-2048.html" class="note-title">Notes for "Reducing the cost of breaking RSA-2048 to 100,000 physical qubits using qLDPC codes"</a>
</li>
<li>
<span class="note-date">2026-04</span>
<a href="Caltech_RSA-2048.html" class="note-title">Notes for "Shor's algorithm is possible with as few as 10,000 reconfigurable atomic qubits"</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="bb_codes.html" class="note-title">Bivariate bicycle codes</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="HGP_codes.html" class="note-title">Hypergraph product codes</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="real_time_decoding.html" class="note-title">Real-time decoding</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="single-shot_QEC.html" class="note-title">Single-shot quantum error corection</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="QLDPC_surgery.html" class="note-title">QLDPC surgery</a>
</li>
<li>
<span class="note-date"> 2026</span>
<a href="Magic_state.html" class="note-title">Magic state cultivation and distillation</a>
</li>
</ul>
</section>
</body>
</html>