Skip to content

Commit 2ce0d6d

Browse files
committedMay 13, 2023
初始版本
0 parents  commit 2ce0d6d

36 files changed

+21787
-0
lines changed
 

‎.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 形式中文指南

‎babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

‎docs/1nf.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
sidebar_position: 4
3+
---
4+
# 第一范式
5+
*发布日期:2023.5.9*
6+
7+
所有FC表达必须需要满足第一范式,第一范式是FC的基本要求
8+
9+
1、同英文介词、连接词、冠词、代词
10+
11+
2、同英文句式、从句、时态、语态
12+
13+
3、需空格分割符号
14+
15+
4、句式结构完整
16+
17+
5、词性变换
18+
- 名词只要求单复数
19+
- 动名词加ing
20+
- 名词或动词转形容词只要求用加的
21+
- 所有副词加ly
22+
23+
6、比较级
24+
- 比较级加er
25+
- 最高级加est
26+
27+
28+
29+

‎docs/2nf.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
sidebar_position: 4
3+
---
4+
# 第二范式
5+
*发布日期:2023.5.9*
6+
7+
在满足第一范式后追求更准确、抽象表达
8+
9+
1、词性变换
10+
- 要求使用更多的后缀表示词性。如形式化的用形式ized,形式化用形式ization
11+
12+

‎docs/faq.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
sidebar_position: 6
3+
---
4+
# 常见问题

‎docs/grammar/_category_.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "语法",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "FC语法属于英语语法的子集,语法教程正在迭代完善中"
7+
}
8+
}

‎docs/grammar/keywords.md

+187
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
# 词汇列表
5+
FC语法必须掌握的关键词汇列表,在FC表达中不能用中文词语符号替换的词汇
6+
7+
## 冠词
8+
- a
9+
> 统一用a,舍弃an
10+
- the
11+
12+
13+
14+
15+
## 介词
16+
1. of
17+
2. in
18+
3. to
19+
4. for
20+
5. with
21+
6. on
22+
7. at
23+
8. from
24+
9. by
25+
10. about
26+
11. as
27+
12. into
28+
13. like
29+
14. through
30+
15. after
31+
16. over
32+
17. between
33+
18. out
34+
19. against
35+
20. during
36+
37+
## 系动词
38+
系动词(Linking verbs)是一类特殊的动词,它们用来连接主语和表语,在句子中起到将其两者联系在一起的作用
39+
40+
需要注意的是,系动词不表示动作或行为,而是用来描述主语的状态、性质、特征等,因此通常用于构成表语结构
41+
42+
以下是英语中常见的系动词列表:
43+
44+
### 1. Be 动词
45+
- am
46+
- is
47+
- are
48+
- was
49+
- were
50+
- been
51+
- being
52+
53+
### 2. Sense 动词
54+
- feel
55+
- taste
56+
- smell
57+
- look
58+
- sound
59+
- seem
60+
61+
### 3. Other Linking Verbs
62+
- become
63+
- grow
64+
- remain
65+
- turn
66+
- prove
67+
- appear
68+
- stay
69+
70+
71+
72+
## 助动词
73+
以下是英语中常见的所有助动词(auxiliary verb)。它们可以在句子中起到辅助构成各种时态、语态、否定和疑问等语法功能,也能表达说话人的态度、意愿和推测等情感语气。
74+
75+
### 1. Be 动词
76+
- am
77+
- is
78+
- are
79+
- was
80+
- were
81+
- been
82+
- being
83+
84+
### 2. Do 动词
85+
- do
86+
- does
87+
- did
88+
89+
### 3. Have 动词
90+
- have
91+
- has
92+
- had
93+
94+
### 4. 情态助动词
95+
- can
96+
- could
97+
- may
98+
- might
99+
- shall
100+
- should
101+
- will
102+
- would
103+
- must
104+
- ought to(有时也算情态助动词)
105+
106+
<!-- ### 5. 半情态动词
107+
- need
108+
- dare
109+
- used to
110+
- ought to(有时也算半情态动词) -->
111+
112+
113+
114+
## 连接词
115+
116+
以下连接词是英语中常见的连接词,能够辅助语言表达的连贯性和完整性
117+
118+
1. 并列连词(Coordinating conjunctions):用于连接两个或多个并列的单词、短语、从句或句子。
119+
- and
120+
- or
121+
- but
122+
- so
123+
- yet
124+
- for
125+
- nor
126+
127+
2. 子连词(Subordinating conjunctions):用于连接主句和从句,引导从句起补充说明、解释或条件限制等作用。
128+
- after
129+
- although
130+
- as
131+
- because
132+
- before
133+
- if
134+
- once
135+
- since
136+
- than
137+
- that
138+
- though
139+
- till
140+
- unless
141+
- until
142+
- when
143+
- where
144+
- while
145+
146+
3. 连接副词(Correlative conjunctions): 一种特殊的连接词,通常是成对使用,并放在要连接的词、短语、句子之前。
147+
- both...and
148+
- either...or
149+
- neither...nor
150+
- not only...but also
151+
- whether...or
152+
153+
4. 独立主格连接词(Conjunctive adverbs): 常被视为特殊的连接词,位于两个分句之间,起到衔接两个分句的作用。
154+
- accordingly
155+
- also
156+
- besides
157+
- consequently
158+
- finally
159+
- furthermore
160+
- hence
161+
- however
162+
- indeed
163+
- instead
164+
- likewise
165+
- meanwhile
166+
- moreover
167+
- nevertheless
168+
- next
169+
- nonetheless
170+
- otherwise
171+
- still
172+
- then
173+
- therefore
174+
- thus
175+
176+
177+
178+
179+
## 代词
180+
1. 人称代词:I, you, he, she, it, we, you, they
181+
2. 物主代词:my/mine, your/yours, his, her/hers, its, our/ours, your/yours, their/theirs
182+
3. 反身代词:myself, yourself, himself, herself, itself, ourselves, yourselves, themselves
183+
4. 指示代词:this, that, these, those
184+
5. 疑问代词:who, whom, whose, what, which
185+
6. 关系代词:who, whom, whose, that, which
186+
7. 不定代词:somebody/someone, anybody/anyone, everybody/everyone, nobody/no-one, something, anything, everything, nothing, all, both, each, either, neither, many, much, few, several, some, any, none
187+
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"label": "介词",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "认知语言学习角度分析介词"
7+
}
8+
}

‎docs/grammar/preposition/by.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# by
2+
by的空间含义是在...旁边,a物 by b物即是a在b的旁边,如A house by the river,有间房子在河边
3+
4+
by由其空间含义隐喻有“离不开;依靠”含义,因为在...旁边,总是在旁边,无论什么方向的旁边都在旁边即为“离不开;依靠”
5+
6+
人 by 物,人依靠物,即为“通过”,如I go to the school by bus.
7+
8+
物 by 人,物依靠人创造,即为“由...创作”,如The book by the writer.
9+
10+
人 by 事,人在事的旁边,人离不开这件事即为“由于;因为;通过”,如They met by chance.他们不期而遇
11+
12+
事 by 物,事在物的旁边即依(从)物看事,即为“从....看;依;按照”,如By my watch it is two o'clock.从我的表看两点了
13+
14+
物 by 物,物依靠物即为“按...计”,如Parcels arrived by the dozen from America.包裹成打地从美国运来。
15+
16+
事 by 时间点,事在某个时间点旁边,在旁边但不能与时间点重合隐喻为“在...之前”,如Can you finish the work by five o'clock?你五点钟前能完成工作吗?
17+
18+
----
19+
20+
《我们赖以生存的隐喻》英文名Metaphors We Live By
21+
22+
by the way 在这条路的旁边隐喻为“顺便说一下(用于转入与之前主题无关的事)”,the way隐喻之前的主题

‎docs/grammar/preposition/over.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# over

‎docs/grammar/transformation.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
# 词性变换
5+
6+
## 动词变名词
7+
### 动词转动名词
8+
-ing:表达动作持续进行的事
9+
### 常见名词词缀
10+
11+
-ize:表示“使...化、使...成为”,如realize(实现)、organize(组织)、specialize(专门从事)等。
12+
13+
-tion:表示“行动、过程、状态”,如action(行动)、education(教育)、communication(交流)等。
14+
15+
-ment:表示“状态、结果、行为”,如development(发展)、achievement(成就)、movement(运动)等。
16+
17+
-ism:表示“主义、思想体系”,如communism(共产主义)、feminism(女权主义)、racism(种族主义)等。
18+
19+
-ist:表示“从事某种职业或专业的人”,如scientist(科学家)、pianist(钢琴家)、journalist(记者)等。
20+
21+
<!--
22+
-ness:表示“状态、性质”,如happiness(幸福)、kindness(善良)、darkness(黑暗)等。 -->
23+
24+
<!-- -ology:表示“学科、学科领域”,如biology(生物学)、psychology(心理学)、geology(地质学)等。 -->
25+
26+
<!-- -ity:表示“性质、状态”,如quality(质量)、ability(能力)、equality(平等)等。 -->
27+
28+
<!-- -er/-or:表示“人或物的职业或身份”,如teacher(教师)、doctor(医生)、actor(演员)等。 -->
29+
30+
31+
## 名词转形容词
32+
33+
-ful:表示“充满...的”或“有...的”,例如:beautiful(美丽的)、helpful(有帮助的)。
34+
35+
-less:表示“没有...的”或“缺乏...的”,例如:careless(粗心的)、hopeless(绝望的)。
36+
37+
<!-- -al:表示“与...相关的”,例如:national(国家的)、personal(个人的)。
38+
39+
-ic:表示“关于...的”或“具有...的”,例如:basic(基本的)、economic(经济的)。
40+
41+
-ary:表示“属于...的”或“与...相关的”,例如:ordinary(普通的)、primary(主要的)。 -->
42+
43+
44+
<!-- -ish:表示“略带...的”,例如:reddish(略带红色的)、yellowish(略带黄色的)。 -->
45+
46+
## 动词转形容词
47+
48+
的:通用词缀
49+
50+
-ed:表示“动作或状态已发生或已完成的”,如:惊讶的(amazed);
51+
52+
-ing:表示“动作或状态持续进行的”,如:令人惊叹的(amazing);
53+
54+
-ful:表示“充满……的”,如:充满感激的(grateful);
55+
56+
-ive:表示“具有……特性的”,如:具有创造性的(creative);
57+
58+
-less:表示“没有……的”,如:无意义的(meaningless);
59+
60+
-able:表示“可...的,能...的”,如comfortable(舒适的)、visible(可见的)等。
61+
62+
<!-- -al:表示“……的”,如:国家的(national); -->
63+
64+
<!-- -ous:表示“充满……的”,如:危险的(dangerous); -->
65+
66+
<!-- -y:表示“充满……的”,如:多雨的(rainy)。 -->
67+
68+
## 形容词变副词
69+
加ly
70+

0 commit comments

Comments
 (0)
Please sign in to comment.