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:
ben
2025-10-21 12:56:11 +00:00
parent b6105b6770
commit 1595d7f68e
105 changed files with 19448 additions and 197 deletions

View 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(" - 或特殊的「指向性」意义")