diff --git a/officefile/latex/_fix_headings.py b/officefile/latex/_fix_headings.py deleted file mode 100644 index 06dfe6e..0000000 --- a/officefile/latex/_fix_headings.py +++ /dev/null @@ -1,44 +0,0 @@ -"""Fix H1 headings in md files: keep first # as chapter, demote rest to ##.""" -import os - -base = r'e:/Project/SI/2026_DesignAI/officefile' - -files_to_fix = [ - '01-introduction/01-introduction.md', - '03-1d-sequence/03-1d-sequence.md', - '05-3d-spatial/05-3d-spatial.md', - '08-reinforcement/08-reinforcement.md', -] - -for rel_path in files_to_fix: - fpath = os.path.join(base, rel_path) - with open(fpath, 'r', encoding='utf-8') as f: - lines = f.readlines() - - seen_first_h1 = False - changes = 0 - in_code_block = False - - for i, line in enumerate(lines): - # Track fenced code blocks - if line.startswith('```'): - in_code_block = not in_code_block - continue - - if in_code_block: - continue - - # Only target H1 headings (start with "# " but not "## ") - if line.startswith('# ') and not line.startswith('## '): - if not seen_first_h1: - seen_first_h1 = True - continue # Keep the first H1 as chapter title - - # Demote: "# heading" -> "## heading" - lines[i] = '#' + line # "# " -> "## " - changes += 1 - - with open(fpath, 'w', encoding='utf-8') as f: - f.writelines(lines) - - print(f'{rel_path}: demoted {changes} H1 -> H2 (kept first as chapter)') diff --git a/officefile/latex/chapters/ch00-preface.tex b/officefile/latex/chapters/ch00-preface.tex index c4195eb..7d4a8d2 100644 --- a/officefile/latex/chapters/ch00-preface.tex +++ b/officefile/latex/chapters/ch00-preface.tex @@ -5,17 +5,17 @@ 2022年底,ChatGPT的发布如同一声惊雷,让生成式人工智能一夜之间走入大众视野。此后短短两年间,AI技术以惊人的速度迭代演进——从文本对话到多模态理解,从被动应答到自主行动,从实验室探索到千行百业的应用落地。在这场技术变革中,设计领域受到的冲击尤为深远。AI不仅能生成图像、辅助建模、优化方案,更在根本上改变了“设计”这件事的范式:设计师的角色正在从“执行者”转变为“引导者”和“策展人”,从亲手绘制每一个细节,转变为与AI协同探索更大的创意空间。 然而,观察众多设计专业的师生和从业者的实际状态后,可以发现一个普遍的困境:\textbf{大家都在谈论AI,但真正理解AI并能有效运用AI的人并不多。} -多数人对AI的使用停留在"输入提示词、获取结果"的表层,缺乏对技术原理的理解,也难以将AI真正融入自己的专业工作流。特别是对于设计专业的学生和从业者而言,虽然了解并使用了许多AI工具,但对很多专业术语和概念的理解仍停留在表面,难以触及背后的原理,这在很大程度上限制了研究与实践的深入。 +多数人对AI的使用停留在“输入提示词、获取结果”的表层,缺乏对技术原理的理解,也难以将AI真正融入自己的专业工作流。特别是对于设计专业的学生和从业者而言,虽然了解并使用了许多AI工具,但对很多专业术语和概念的理解仍停留在表面,难以触及背后的原理,这在很大程度上限制了研究与实践的深入。 -尤其对于设计专业的学生来说,由于接触计算机和编程较少,缺乏进入这一领域的"语境",容易产生畏难情绪。而事实上,AI领域所涉及的终究是技术工程问题,并不存在玄学,在这个意义上理应能够被所有人掌握。梳理进入AI领域所需要的基本知识,归纳现代AI技术涉及的核心原理与沉淀的经验,并展示如何将其应用于设计学领域——从而为设计专业的学生、研究者和设计师提供切实的帮助,这正是本书的出发点。 +尤其对于设计专业的学生来说,由于接触计算机和编程较少,缺乏进入这一领域的“语境”,容易产生畏难情绪。而事实上,AI领域所涉及的终究是技术工程问题,并不存在玄学,在这个意义上理应能够被所有人掌握。梳理进入AI领域所需要的基本知识,归纳现代AI技术涉及的核心原理与沉淀的经验,并展示如何将其应用于设计学领域——从而为设计专业的学生、研究者和设计师提供切实的帮助,这正是本书的出发点。 \section{这本书讲什么} 本书分为上下两篇,试图回答两个核心问题: -\textbf{上篇}回答"AI是什么"——系统讲解AI的核心技术原理。面向设计专业读者,不追求面面俱到的数学推导,而是强调直觉理解:把神经网络看作函数组合,把注意力机制看作信息检索,把扩散模型看作逐步去噪。理解了这些基本原理,面对层出不穷的新工具和新模型,才能做到心中有数。 +\textbf{上篇}回答“AI是什么”——系统讲解AI的核心技术原理。面向设计专业读者,不追求面面俱到的数学推导,而是强调直觉理解:把神经网络看作函数组合,把注意力机制看作信息检索,把扩散模型看作逐步去噪。理解了这些基本原理,面对层出不穷的新工具和新模型,才能做到心中有数。 -\textbf{下篇}回答"AI能做什么"——聚焦五大设计领域的AI应用实践。从数字媒体到环境设计,从工业设计到城市规划,再到生态设计,每个领域都结合具体场景,展示AI如何辅助分析、生成、优化和评估。 +\textbf{下篇}回答“AI能做什么”——聚焦五大设计领域的AI应用实践。从数字媒体到环境设计,从工业设计到城市规划,再到生态设计,每个领域都结合具体场景,展示AI如何辅助分析、生成、优化和评估。 此外,附录中包含了大量与计算机和AI相关的基础知识与编程环境内容。虽然网络上有许多资源可供查询,但附录所收录的是实践过程中被认为最有必要了解和掌握的基本知识,也是开展设计人工智能研究的基础,因此以相当的篇幅进行了总结。更为详细的内容,可以参考书中所列的文献与技术文档资料。 @@ -25,7 +25,7 @@ \textbf{原理先行}。理解原理比掌握工具更重要。工具会过时,但原理具有持久的价值。因此,上篇用了较大篇幅讲解神经网络、注意力机制、扩散模型等核心概念。 -\textbf{函数式视角}。本书刻意避免一上来就堆砌数学公式,而是从"函数描述世界"的朴素观念出发,让读者理解神经网络的本质——通过函数组合来学习数据中的规律。 +\textbf{函数式视角}。本书刻意避免一上来就堆砌数学公式,而是从“函数描述世界”的朴素观念出发,让读者理解神经网络的本质——通过函数组合来学习数据中的规律。 \textbf{案例驱动}。每个技术概念都尽量配以设计领域的应用案例,让抽象的原理变得具体可感。 @@ -35,9 +35,9 @@ AI技术仍在飞速发展,本书的内容不可避免地会随着时间推移而需要更新。但书中所传达的核心思想——理解原理、拥抱工具、人机协作——将具有持久的价值。 -感谢AI技术本身——本书的写作过程中广泛使用了Claude Code等AI工具进行资料整理、内容润色和代码验证,这本身就是"AI赋能工作"的一次实践。 +感谢AI技术本身——本书的写作过程中广泛使用了Claude Code等AI工具进行资料整理、内容润色和代码验证,这本身就是“AI赋能工作”的一次实践。 -设计的人工智能时代才刚刚开始。希望这本书能成为读者进入这个新时代的一块踏脚石,从而汇聚起万千努力,能够成为点燃"通用设计智能"的星星之火。 +设计的人工智能时代才刚刚开始。希望这本书能成为读者进入这个新时代的一块踏脚石,从而汇聚起万千努力,能够成为点燃“通用设计智能”的星星之火。 \begin{flushright} diff --git a/officefile/latex/chapters/ch13-conclusion.tex b/officefile/latex/chapters/ch13-conclusion.tex deleted file mode 100644 index a7f09a8..0000000 --- a/officefile/latex/chapters/ch13-conclusion.tex +++ /dev/null @@ -1,4 +0,0 @@ -\chapter{第13章 结语与展望} - -对方的v - diff --git a/officefile/latex/main.tex b/officefile/latex/main.tex index b2da310..3263f76 100644 --- a/officefile/latex/main.tex +++ b/officefile/latex/main.tex @@ -43,9 +43,6 @@ \input{chapters/ch11-environment} \input{chapters/ch12-urban} -% 结语 -\input{chapters/ch13-conclusion} - % ---------- 附录部分 ---------- \appendix \input{appendices/ap00-divider} diff --git a/officefile/00-frontmatter/目录.md b/officefile/md/00-frontmatter/目录.md similarity index 100% rename from officefile/00-frontmatter/目录.md rename to officefile/md/00-frontmatter/目录.md diff --git a/officefile/00-frontmatter/自序.md b/officefile/md/00-frontmatter/自序.md similarity index 100% rename from officefile/00-frontmatter/自序.md rename to officefile/md/00-frontmatter/自序.md diff --git a/officefile/01-introduction/01-introduction.md b/officefile/md/01-introduction/01-introduction.md similarity index 100% rename from officefile/01-introduction/01-introduction.md rename to officefile/md/01-introduction/01-introduction.md diff --git a/officefile/02-framework/02-framework.md b/officefile/md/02-framework/02-framework.md similarity index 100% rename from officefile/02-framework/02-framework.md rename to officefile/md/02-framework/02-framework.md diff --git a/officefile/03-1d-sequence/03-1d-sequence.md b/officefile/md/03-1d-sequence/03-1d-sequence.md similarity index 100% rename from officefile/03-1d-sequence/03-1d-sequence.md rename to officefile/md/03-1d-sequence/03-1d-sequence.md diff --git a/officefile/04-2d-vision/04-2d-vision.md b/officefile/md/04-2d-vision/04-2d-vision.md similarity index 100% rename from officefile/04-2d-vision/04-2d-vision.md rename to officefile/md/04-2d-vision/04-2d-vision.md diff --git a/officefile/05-3d-spatial/05-3d-spatial.md b/officefile/md/05-3d-spatial/05-3d-spatial.md similarity index 100% rename from officefile/05-3d-spatial/05-3d-spatial.md rename to officefile/md/05-3d-spatial/05-3d-spatial.md diff --git a/officefile/06-generative-ai/06-generative-ai.md b/officefile/md/06-generative-ai/06-generative-ai.md similarity index 100% rename from officefile/06-generative-ai/06-generative-ai.md rename to officefile/md/06-generative-ai/06-generative-ai.md diff --git a/officefile/07-agent/07-agent.md b/officefile/md/07-agent/07-agent.md similarity index 100% rename from officefile/07-agent/07-agent.md rename to officefile/md/07-agent/07-agent.md diff --git a/officefile/08-reinforcement/08-reinforcement.md b/officefile/md/08-reinforcement/08-reinforcement.md similarity index 100% rename from officefile/08-reinforcement/08-reinforcement.md rename to officefile/md/08-reinforcement/08-reinforcement.md diff --git a/officefile/09-digital-media/09-digital-media.md b/officefile/md/09-digital-media/09-digital-media.md similarity index 100% rename from officefile/09-digital-media/09-digital-media.md rename to officefile/md/09-digital-media/09-digital-media.md diff --git a/officefile/10-industrial-design/10-industrial-design.md b/officefile/md/10-industrial-design/10-industrial-design.md similarity index 100% rename from officefile/10-industrial-design/10-industrial-design.md rename to officefile/md/10-industrial-design/10-industrial-design.md diff --git a/officefile/11-environmental-landscape/11-environmental-landscape.md b/officefile/md/11-environmental-landscape/11-environmental-landscape.md similarity index 100% rename from officefile/11-environmental-landscape/11-environmental-landscape.md rename to officefile/md/11-environmental-landscape/11-environmental-landscape.md diff --git a/officefile/12-urban-ecology/12-urban-ecology.md b/officefile/md/12-urban-ecology/12-urban-ecology.md similarity index 100% rename from officefile/12-urban-ecology/12-urban-ecology.md rename to officefile/md/12-urban-ecology/12-urban-ecology.md diff --git a/officefile/README.md b/officefile/md/README.md similarity index 100% rename from officefile/README.md rename to officefile/md/README.md diff --git a/officefile/appendix/附录1-基础知识与编程环境.md b/officefile/md/appendix/附录1-基础知识与编程环境.md similarity index 100% rename from officefile/appendix/附录1-基础知识与编程环境.md rename to officefile/md/appendix/附录1-基础知识与编程环境.md diff --git a/officefile/appendix/附录2-Vibe-Coding与工具链.md b/officefile/md/appendix/附录2-Vibe-Coding与工具链.md similarity index 100% rename from officefile/appendix/附录2-Vibe-Coding与工具链.md rename to officefile/md/appendix/附录2-Vibe-Coding与工具链.md diff --git a/officefile/appendix/附录3-学术论文撰写工作流.md b/officefile/md/appendix/附录3-学术论文撰写工作流.md similarity index 100% rename from officefile/appendix/附录3-学术论文撰写工作流.md rename to officefile/md/appendix/附录3-学术论文撰写工作流.md diff --git a/officefile/appendix/附录4-网络、网站与在线可视化.md b/officefile/md/appendix/附录4-网络、网站与在线可视化.md similarity index 100% rename from officefile/appendix/附录4-网络、网站与在线可视化.md rename to officefile/md/appendix/附录4-网络、网站与在线可视化.md diff --git a/officefile/appendix/附录5-在线学习资源.md b/officefile/md/appendix/附录5-在线学习资源.md similarity index 100% rename from officefile/appendix/附录5-在线学习资源.md rename to officefile/md/appendix/附录5-在线学习资源.md diff --git a/officefile/appendix/附录6-其他资源.md b/officefile/md/appendix/附录6-其他资源.md similarity index 100% rename from officefile/appendix/附录6-其他资源.md rename to officefile/md/appendix/附录6-其他资源.md diff --git a/officefile/appendix/附录7-参考文献.md b/officefile/md/appendix/附录7-参考文献.md similarity index 100% rename from officefile/appendix/附录7-参考文献.md rename to officefile/md/appendix/附录7-参考文献.md diff --git a/officefile/appendix/附录8-关键术语表.md b/officefile/md/appendix/附录8-关键术语表.md similarity index 100% rename from officefile/appendix/附录8-关键术语表.md rename to officefile/md/appendix/附录8-关键术语表.md diff --git a/officefile/appendix/附录9-Tips.md b/officefile/md/appendix/附录9-Tips.md similarity index 100% rename from officefile/appendix/附录9-Tips.md rename to officefile/md/appendix/附录9-Tips.md diff --git a/officefile/supplements/00-introduction/00.1-why-this-book.md b/officefile/md/supplements/00-introduction/00.1-why-this-book.md similarity index 100% rename from officefile/supplements/00-introduction/00.1-why-this-book.md rename to officefile/md/supplements/00-introduction/00.1-why-this-book.md diff --git a/officefile/supplements/00-introduction/00.2-what-is-spatial-intelligence.md b/officefile/md/supplements/00-introduction/00.2-what-is-spatial-intelligence.md similarity index 100% rename from officefile/supplements/00-introduction/00.2-what-is-spatial-intelligence.md rename to officefile/md/supplements/00-introduction/00.2-what-is-spatial-intelligence.md diff --git a/officefile/supplements/00-introduction/00.3-what-is-autonomous-design.md b/officefile/md/supplements/00-introduction/00.3-what-is-autonomous-design.md similarity index 100% rename from officefile/supplements/00-introduction/00.3-what-is-autonomous-design.md rename to officefile/md/supplements/00-introduction/00.3-what-is-autonomous-design.md diff --git a/officefile/supplements/00-introduction/00.4-claude-code-as-scaffold.md b/officefile/md/supplements/00-introduction/00.4-claude-code-as-scaffold.md similarity index 100% rename from officefile/supplements/00-introduction/00.4-claude-code-as-scaffold.md rename to officefile/md/supplements/00-introduction/00.4-claude-code-as-scaffold.md diff --git a/officefile/supplements/00-introduction/README.md b/officefile/md/supplements/00-introduction/README.md similarity index 100% rename from officefile/supplements/00-introduction/README.md rename to officefile/md/supplements/00-introduction/README.md diff --git a/officefile/supplements/00-introduction/practice/setup-first-assistant/README.md b/officefile/md/supplements/00-introduction/practice/setup-first-assistant/README.md similarity index 100% rename from officefile/supplements/00-introduction/practice/setup-first-assistant/README.md rename to officefile/md/supplements/00-introduction/practice/setup-first-assistant/README.md diff --git a/officefile/supplements/01-foundations/01.1-modular-intelligence.md b/officefile/md/supplements/01-foundations/01.1-modular-intelligence.md similarity index 100% rename from officefile/supplements/01-foundations/01.1-modular-intelligence.md rename to officefile/md/supplements/01-foundations/01.1-modular-intelligence.md diff --git a/officefile/supplements/01-foundations/01.2-state-and-state-machines.md b/officefile/md/supplements/01-foundations/01.2-state-and-state-machines.md similarity index 100% rename from officefile/supplements/01-foundations/01.2-state-and-state-machines.md rename to officefile/md/supplements/01-foundations/01.2-state-and-state-machines.md diff --git a/officefile/supplements/01-foundations/01.3-probability-and-uncertainty.md b/officefile/md/supplements/01-foundations/01.3-probability-and-uncertainty.md similarity index 100% rename from officefile/supplements/01-foundations/01.3-probability-and-uncertainty.md rename to officefile/md/supplements/01-foundations/01.3-probability-and-uncertainty.md diff --git a/officefile/supplements/01-foundations/01.4-feedback-and-learning.md b/officefile/md/supplements/01-foundations/01.4-feedback-and-learning.md similarity index 100% rename from officefile/supplements/01-foundations/01.4-feedback-and-learning.md rename to officefile/md/supplements/01-foundations/01.4-feedback-and-learning.md diff --git a/officefile/supplements/01-foundations/01.5-human-ai-collaboration.md b/officefile/md/supplements/01-foundations/01.5-human-ai-collaboration.md similarity index 100% rename from officefile/supplements/01-foundations/01.5-human-ai-collaboration.md rename to officefile/md/supplements/01-foundations/01.5-human-ai-collaboration.md diff --git a/officefile/supplements/01-foundations/README.md b/officefile/md/supplements/01-foundations/README.md similarity index 100% rename from officefile/supplements/01-foundations/README.md rename to officefile/md/supplements/01-foundations/README.md diff --git a/officefile/supplements/01-foundations/practice/langgraph-workflow/README.md b/officefile/md/supplements/01-foundations/practice/langgraph-workflow/README.md similarity index 100% rename from officefile/supplements/01-foundations/practice/langgraph-workflow/README.md rename to officefile/md/supplements/01-foundations/practice/langgraph-workflow/README.md diff --git a/officefile/supplements/02-spatial-intelligence/02.1-spatial-representation.md b/officefile/md/supplements/02-spatial-intelligence/02.1-spatial-representation.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/02.1-spatial-representation.md rename to officefile/md/supplements/02-spatial-intelligence/02.1-spatial-representation.md diff --git a/officefile/supplements/02-spatial-intelligence/02.2-spatial-reasoning.md b/officefile/md/supplements/02-spatial-intelligence/02.2-spatial-reasoning.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/02.2-spatial-reasoning.md rename to officefile/md/supplements/02-spatial-intelligence/02.2-spatial-reasoning.md diff --git a/officefile/supplements/02-spatial-intelligence/02.3-multi-criteria-decision.md b/officefile/md/supplements/02-spatial-intelligence/02.3-multi-criteria-decision.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/02.3-multi-criteria-decision.md rename to officefile/md/supplements/02-spatial-intelligence/02.3-multi-criteria-decision.md diff --git a/officefile/supplements/02-spatial-intelligence/02.4-spatial-optimization.md b/officefile/md/supplements/02-spatial-intelligence/02.4-spatial-optimization.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/02.4-spatial-optimization.md rename to officefile/md/supplements/02-spatial-intelligence/02.4-spatial-optimization.md diff --git a/officefile/supplements/02-spatial-intelligence/02.5-uncertainty-quantification.md b/officefile/md/supplements/02-spatial-intelligence/02.5-uncertainty-quantification.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/02.5-uncertainty-quantification.md rename to officefile/md/supplements/02-spatial-intelligence/02.5-uncertainty-quantification.md diff --git a/officefile/supplements/02-spatial-intelligence/README.md b/officefile/md/supplements/02-spatial-intelligence/README.md similarity index 100% rename from officefile/supplements/02-spatial-intelligence/README.md rename to officefile/md/supplements/02-spatial-intelligence/README.md diff --git a/officefile/supplements/03-autonomous-design/03.1-workflow-orchestration.md b/officefile/md/supplements/03-autonomous-design/03.1-workflow-orchestration.md similarity index 100% rename from officefile/supplements/03-autonomous-design/03.1-workflow-orchestration.md rename to officefile/md/supplements/03-autonomous-design/03.1-workflow-orchestration.md diff --git a/officefile/supplements/03-autonomous-design/03.2-agent-design-patterns.md b/officefile/md/supplements/03-autonomous-design/03.2-agent-design-patterns.md similarity index 100% rename from officefile/supplements/03-autonomous-design/03.2-agent-design-patterns.md rename to officefile/md/supplements/03-autonomous-design/03.2-agent-design-patterns.md diff --git a/officefile/supplements/03-autonomous-design/03.3-skill-composition.md b/officefile/md/supplements/03-autonomous-design/03.3-skill-composition.md similarity index 100% rename from officefile/supplements/03-autonomous-design/03.3-skill-composition.md rename to officefile/md/supplements/03-autonomous-design/03.3-skill-composition.md diff --git a/officefile/supplements/03-autonomous-design/03.4-memory-and-context.md b/officefile/md/supplements/03-autonomous-design/03.4-memory-and-context.md similarity index 100% rename from officefile/supplements/03-autonomous-design/03.4-memory-and-context.md rename to officefile/md/supplements/03-autonomous-design/03.4-memory-and-context.md diff --git a/officefile/supplements/03-autonomous-design/03.5-planning-and-execution.md b/officefile/md/supplements/03-autonomous-design/03.5-planning-and-execution.md similarity index 100% rename from officefile/supplements/03-autonomous-design/03.5-planning-and-execution.md rename to officefile/md/supplements/03-autonomous-design/03.5-planning-and-execution.md diff --git a/officefile/supplements/03-autonomous-design/README.md b/officefile/md/supplements/03-autonomous-design/README.md similarity index 100% rename from officefile/supplements/03-autonomous-design/README.md rename to officefile/md/supplements/03-autonomous-design/README.md diff --git a/officefile/supplements/04-practice/README.md b/officefile/md/supplements/04-practice/README.md similarity index 100% rename from officefile/supplements/04-practice/README.md rename to officefile/md/supplements/04-practice/README.md diff --git a/officefile/supplements/05-reflection/05.1-ai-limitations.md b/officefile/md/supplements/05-reflection/05.1-ai-limitations.md similarity index 100% rename from officefile/supplements/05-reflection/05.1-ai-limitations.md rename to officefile/md/supplements/05-reflection/05.1-ai-limitations.md diff --git a/officefile/supplements/05-reflection/05.2-ethics-and-responsibility.md b/officefile/md/supplements/05-reflection/05.2-ethics-and-responsibility.md similarity index 100% rename from officefile/supplements/05-reflection/05.2-ethics-and-responsibility.md rename to officefile/md/supplements/05-reflection/05.2-ethics-and-responsibility.md diff --git a/officefile/supplements/05-reflection/05.3-technical-iteration.md b/officefile/md/supplements/05-reflection/05.3-technical-iteration.md similarity index 100% rename from officefile/supplements/05-reflection/05.3-technical-iteration.md rename to officefile/md/supplements/05-reflection/05.3-technical-iteration.md diff --git a/officefile/supplements/05-reflection/05.4-future-directions.md b/officefile/md/supplements/05-reflection/05.4-future-directions.md similarity index 100% rename from officefile/supplements/05-reflection/05.4-future-directions.md rename to officefile/md/supplements/05-reflection/05.4-future-directions.md diff --git a/officefile/supplements/05-reflection/05.5-personal-knowledge-system.md b/officefile/md/supplements/05-reflection/05.5-personal-knowledge-system.md similarity index 100% rename from officefile/supplements/05-reflection/05.5-personal-knowledge-system.md rename to officefile/md/supplements/05-reflection/05.5-personal-knowledge-system.md diff --git a/officefile/supplements/05-reflection/README.md b/officefile/md/supplements/05-reflection/README.md similarity index 100% rename from officefile/supplements/05-reflection/README.md rename to officefile/md/supplements/05-reflection/README.md diff --git a/officefile/supplements/BOOK.md b/officefile/md/supplements/BOOK.md similarity index 100% rename from officefile/supplements/BOOK.md rename to officefile/md/supplements/BOOK.md diff --git a/officefile/supplements/CC4SI-README.md b/officefile/md/supplements/CC4SI-README.md similarity index 100% rename from officefile/supplements/CC4SI-README.md rename to officefile/md/supplements/CC4SI-README.md diff --git a/officefile/supplements/CONTRIBUTING.md b/officefile/md/supplements/CONTRIBUTING.md similarity index 100% rename from officefile/supplements/CONTRIBUTING.md rename to officefile/md/supplements/CONTRIBUTING.md diff --git a/officefile/supplements/appendix/appendix1-academic-writing-workflow.md b/officefile/md/supplements/appendix/appendix1-academic-writing-workflow.md similarity index 100% rename from officefile/supplements/appendix/appendix1-academic-writing-workflow.md rename to officefile/md/supplements/appendix/appendix1-academic-writing-workflow.md