Skip to content

Commit 09b6a68

Browse files
committed
edit avatar
1 parent 310dab8 commit 09b6a68

82 files changed

Lines changed: 1226 additions & 661 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

0/index.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: "Dependency-Based Bracketing Transduction Grammar for Statistical Machine Translation"
3+
authors:
4+
- Jinsong Su
5+
- Yang Liu
6+
- Haitao Mi
7+
- Hongmei Zhao
8+
- Yajuan lv
9+
- Qun Liu
10+
author_notes:
11+
- "通讯作者"
12+
-
13+
-
14+
-
15+
-
16+
-
17+
date: "2010-05-28T00:00:00Z"
18+
publishDate: "2025-05-28T12:49:54+00:00Z"
19+
publication_types: [文本机器翻译]
20+
publication: "**In Proc. of COLING 2010.** (CCF-B类)"
21+
---

assets/scss/custom.scss

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
1+
//人物主页肖像下面的名字样式
12
.portrait-title h2 {
23
font-size: 1.64em;
34
font-weight: 300;
45
color: #000;
56
margin: 20px 0 10px;
6-
}
7+
}
8+
9+
//通讯作者作者note图标
10+
.author-correspond:before {
11+
content: "*";
12+
font-family: inherit; /* 不使用 Font Awesome 字体 */
13+
font-size: 0.7em;//字体大小
14+
font-style: normal;
15+
font-weight: 300;//字体粗细
16+
padding-right: 3px;
17+
}
18+
19+
20+
//共同一作作作者note图标
21+
.author-joint:before {
22+
content: "+";
23+
font-family: inherit; /* 不使用 Font Awesome 字体 */
24+
font-size: 0.7em;//字体大小
25+
font-style: normal;
26+
font-weight: 300;//字体粗细
27+
padding-right: 3px;
28+
}
Lines changed: 244 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,244 @@
1+
/*************************************************
2+
* Page content
3+
**************************************************/
4+
5+
.article-container {
6+
max-width: 760px;
7+
padding: 0 20px;
8+
margin: 0 auto;
9+
}
10+
11+
.page-subtitle {
12+
font-size: 1.15rem;
13+
color: rgba(0, 0, 0, 0.54);
14+
margin-bottom: 1rem;
15+
}
16+
17+
.dark .page-subtitle {
18+
color: rgba(255, 255, 255, 0.54);
19+
}
20+
21+
.article-header {
22+
position: relative; /* Required for caption positioning */
23+
clear: both;
24+
}
25+
26+
.article-banner {
27+
width: 100%;
28+
height: 260px;
29+
object-fit: cover;
30+
31+
@include media-breakpoint-up(lg) {
32+
height: 310px; /* Increased height on desktop */
33+
}
34+
}
35+
36+
.featured-image-wrapper {
37+
position: relative;
38+
padding-left: 0; /* Override container padding. */
39+
padding-right: 0; /* Override container padding. */
40+
}
41+
42+
.featured-image {
43+
position: relative;
44+
width: 100%;
45+
display: block;
46+
margin: 0 auto;
47+
}
48+
49+
.article-header-caption {
50+
position: absolute;
51+
bottom: 0;
52+
right: 0;
53+
margin: 0 auto;
54+
padding: 2px 5px;
55+
color: #fff;
56+
font-size: 0.7em;
57+
background: #000;
58+
text-align: right;
59+
z-index: 5;
60+
opacity: 0.65;
61+
border-radius: 5px 0 0;
62+
}
63+
@media (min-width: 64em) {
64+
.article-header-caption {
65+
padding: 5px 10px;
66+
}
67+
}
68+
69+
.article-header-caption a {
70+
color: #fff;
71+
text-decoration: none;
72+
}
73+
74+
.article-title {
75+
font-size: 1.75rem;
76+
}
77+
78+
.article-title a {
79+
color: #151515;
80+
transition: color 0.6s ease;
81+
}
82+
83+
.dark .text-muted {
84+
color: rgba(255, 255, 255, 0.54) !important;
85+
}
86+
87+
.article-style {
88+
// Any unresponsive embeds, e.g. Plotly, should be wrapped to handle on a case-by-case basis.
89+
// If any unresponsive embeds still remain in the article, prevent article overflow and DIV scrolling.
90+
// Note that lazy-loaded images, e.g. Gallery, may cause scrollable Y-overflow if only X-overflow is hidden pre-load.
91+
overflow: hidden;
92+
93+
// Word wrap text content.
94+
@include word-wrap;
95+
96+
// Underline links if they are a similar color to the body text.
97+
a {
98+
text-decoration: $sta-link-decoration;
99+
}
100+
101+
img,
102+
video {
103+
margin-left: auto;
104+
margin-right: auto;
105+
margin-top: 2rem;
106+
margin-bottom: 2rem;
107+
padding: 0;
108+
}
109+
110+
td img,
111+
td video {
112+
margin-top: 0;
113+
margin-bottom: 0;
114+
}
115+
116+
figure {
117+
margin-top: 2rem;
118+
margin-bottom: 2rem;
119+
}
120+
121+
figure img {
122+
margin-top: 0;
123+
margin-bottom: 0;
124+
}
125+
}
126+
127+
.dark .article-style {
128+
// Underline links if they are a similar color to the body text.
129+
a {
130+
text-decoration: $sta-dark-link-decoration;
131+
}
132+
}
133+
134+
.article-metadata {
135+
margin-bottom: 15px;
136+
overflow: hidden;
137+
font-size: 14px;
138+
letter-spacing: 0.03em;
139+
color: rgba(0, 0, 0, 0.54);
140+
141+
a {
142+
color: rgba(0, 0, 0, 0.54);
143+
}
144+
145+
a:hover {
146+
color: $sta-primary;
147+
}
148+
149+
.author-notes {
150+
cursor: help;
151+
padding-left: 3px;
152+
}
153+
154+
.author-highlighted {
155+
font-weight: bold;
156+
}
157+
}
158+
159+
/* For article page only, not lists. */
160+
article .article-metadata {
161+
margin-bottom: 20px;
162+
}
163+
164+
.dark .article-metadata {
165+
color: rgba(255, 255, 255, 0.54);
166+
}
167+
168+
.stream-meta.article-metadata {
169+
margin-bottom: 5px;
170+
}
171+
172+
.article-categories {
173+
white-space: nowrap; /* Keep category icon on same line as category links, otherwise context lost. */
174+
}
175+
176+
.middot-divider {
177+
padding-right: 0.45em;
178+
padding-left: 0.45em;
179+
font-size: 15px;
180+
}
181+
182+
.middot-divider::after {
183+
content: '\00B7';
184+
}
185+
186+
caption {
187+
// Override Bootstrap alignment
188+
text-align: center;
189+
}
190+
191+
// Note default light caption inherited from Bootstrap
192+
.dark caption {
193+
color: rgba(255, 255, 255, 0.8);
194+
}
195+
196+
/*************************************************
197+
* Content widgets
198+
**************************************************/
199+
200+
.content-widget-hr {
201+
margin-top: 1.2rem;
202+
padding-top: 1.2rem;
203+
border-top: 1px solid rgba(0, 0, 0, 0.05);
204+
}
205+
206+
.dark .content-widget-hr {
207+
border-top: 1px solid rgba(255, 255, 255, 0.05);
208+
}
209+
210+
/*************************************************
211+
* Tags
212+
**************************************************/
213+
214+
.article-tags {
215+
margin-top: 1.2rem;
216+
}
217+
218+
/*************************************************
219+
* Comments
220+
**************************************************/
221+
222+
#comments {
223+
padding-top: 1rem;
224+
}
225+
226+
/*************************************************
227+
* Related content
228+
**************************************************/
229+
230+
.article-widget {
231+
padding-top: 1.2rem; /* Match .content-widget-hr */
232+
}
233+
234+
.article-widget h3 {
235+
margin-top: 0;
236+
}
237+
238+
/*************************************************
239+
* Dark theme
240+
**************************************************/
241+
242+
.dark .article-metadata a {
243+
color: rgba(255, 255, 255, 0.54);
244+
}

content/_index.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,7 @@ sections:
4444
text: |
4545
4646
课题组的研究主要聚焦于大模型和自然语言处理领域,目前的研究方向包括:</br>
47-
{{% callout note %}}
48-
点击方向名即可跳转到相应的论文列表
49-
{{% /callout %}}
50-
* [**基于大模型的自然语言处理研究**](publication/#rag):
47+
* **基于大模型的自然语言处理研究**:
5148
- 多模态机器翻译研究,包括图到文机器翻译,图到图机器翻译和文本到图像生成
5249
- 语音分析和处理研究,包括语音识别、翻译和合成
5350
- 信息抽取研究,主要聚焦实体识别,关系抽取和情感分析
@@ -107,15 +104,6 @@ sections:
107104
columns: '1'
108105

109106

110-
- block: markdown
111-
content:
112-
title:
113-
subtitle:
114-
text: |
115-
{{% cta cta_link="./people/" cta_text="查看我们的团队 →" %}}
116-
design:
117-
columns: '1'
118-
119107

120108

121109
---

0 commit comments

Comments
 (0)