feat: Complete project reorganization
- Reorganize core-theory into 6 thematic subdirectories (01-06) - Clean up root directory, move files to appropriate locations - Create comprehensive README files for navigation - Add new academic papers and research content - Implement English naming convention for better indexing - Total: 42 core theory files organized, 7 READMEs created Key improvements: - Clear hierarchical structure (foundational → matrix → analysis → empires) - Better discoverability with detailed navigation guides - Scalable framework for future content expansion - AI-friendly organization for indexing and processing
This commit is contained in:
31
archive/temp-files/temp_find_yue_right.py
Normal file
31
archive/temp-files/temp_find_yue_right.py
Normal file
@@ -0,0 +1,31 @@
|
||||
# 查找所有月字旁在右边的汉字
|
||||
# 月字旁作为偏旁时,通常在左边(肉月旁),在右边的极为罕见
|
||||
|
||||
right_yue_chars = [
|
||||
"胡", # 古 + 月
|
||||
"朋", # 月 + 月 (两个月)
|
||||
"服", # 月在右边部分
|
||||
"脩", # 攸 + 月
|
||||
"朝", # 十 + 早(月在内部)
|
||||
"期", # 其 + 月
|
||||
"朔", # 屰 + 月
|
||||
"朗", # 良 + 月(月在右下)
|
||||
"望", # 亡 + 月 + 王
|
||||
"朦", # 蒙(月在内部右侧)
|
||||
"胧", # 龙 + 月(月在右)
|
||||
"腾", # 月在右侧
|
||||
]
|
||||
|
||||
print("月字旁在右边的汉字分析:\n")
|
||||
for char in right_yue_chars:
|
||||
print(f"{char}")
|
||||
|
||||
print("\n\n重点分析:")
|
||||
print("1. 胡 = 古 + 月 (月在右)")
|
||||
print("2. 朋 = 月 + 月 (对称结构)")
|
||||
print("3. 期、朔、朗、望、朝 等 - 这些字与「时间」、「月亮天象」相关")
|
||||
print("4. 服、脩、腾、胧 - 月在右侧或内部")
|
||||
print("\n关键发现:")
|
||||
print("月字旁在右边时,往往不是表示「肉体」,而是表示:")
|
||||
print(" - 时间/天象(朔、望、期、朝)")
|
||||
print(" - 或特殊的「指向性」意义")
|
||||
Reference in New Issue
Block a user