# DEPRECATION NOTICE ## Old 8-Section Structure โ†’ New 4-Phase Structure The paper generation pipeline has been refactored to follow the **์ „๋ผ์ขŒ์ˆ˜๊ตฐ (Jeonla Naval Fleet) 4-Phase Framework** based on ๊ธฐ์Šน์ „๊ฒฐ (่ตทๆ‰ฟ่ฝ‰็ต). ### Migration Map | **OLD FILES** | **NEW FILES** | **Phase** | **Commander** | |---------------|---------------|-----------|---------------| | `generate_01_intro.py` | `generate_01_introduction.py` | Phase 1 (่ตท - Introduction) | ์ •์šด ๐Ÿข | | `generate_02_litreview.py` + `generate_03_conceptual.py` | `generate_02_theory_conceptual.py` | Phase 2 (ๆ‰ฟ - Theory & Conceptual) | ๊ถŒ์ค€ ๐Ÿ… | | `generate_04_method.py` + `generate_05_results.py` | `generate_03_empirics.py` | Phase 3 (่ฝ‰ - Empirics & Results) | ๊น€์™„ ๐Ÿ™ | | `generate_06_discussion.py` | `generate_04_discussion.py` | Phase 4 (็ต - Discussion & Conclusion) | ์–ด์˜๋‹ด ๐Ÿ‘พ | ### Deprecated Files (Legacy 8-Section Structure) The following files are **deprecated** and should not be used in new workflows: 1. โŒ `generate_01_intro.py` โ†’ Use `generate_01_introduction.py` instead 2. โŒ `generate_02_litreview.py` โ†’ Merged into `generate_02_theory_conceptual.py` 3. โŒ `generate_03_conceptual.py` โ†’ Merged into `generate_02_theory_conceptual.py` 4. โŒ `generate_04_method.py` โ†’ Merged into `generate_03_empirics.py` 5. โŒ `generate_05_results.py` โ†’ Merged into `generate_03_empirics.py` 6. โŒ `generate_06_discussion.py` โ†’ Enhanced as `generate_04_discussion.py` ### Files Retained (Supplementary Materials) The following files remain active as **supplementary sections** outside the main 4-phase narrative: - โœ… `generate_07_poster.py` โ€” Visual poster (์ „๋ผ์ขŒ์ˆ˜๊ตฐ 4-phase structure) - โœ… `generate_08_industry_comparison.py` โ€” Industry-specific analysis (PR #13 integration) ### New 4-Phase Architecture #### Phase 1: ่ตท (Introduction) โ€” ์ •์šด ๐Ÿข "The Door Opener" - **File**: `generate_01_introduction.py` - **Output**: `01_Introduction.md` - **Content**: Hook (Tesla vs Bosch), Puzzle, Preview of findings, Contributions, Roadmap - **Color**: Teal (#20B2AA) #### Phase 2: ๆ‰ฟ (Theory & Conceptual Model) โ€” ๊ถŒ์ค€ ๐Ÿ… "The Structure Builder" - **File**: `generate_02_theory_conceptual.py` - **Output**: `02_Theory_Conceptual.md` - **Content**: Literature review (Info Econ, Real Options, Modularity), Four-module framework (C-T-O-C), Hypotheses, Table 1 (Descriptive stats) - **Color**: Orange (#FF8C00) #### Phase 3: ่ฝ‰ (Empirics & Results) โ€” ๊น€์™„ ๐Ÿ™ "The Righteousness Prover" - **File**: `generate_03_empirics.py` - **Output**: `03_Empirics_Results.md` - **Content**: Data & methods, H1/H2 results with tables, Devil's Advocate (4 alternatives), Specification curve, Subsample analyses - **Color**: Crimson (#DC143C) #### Phase 4: ็ต (Discussion & Conclusion) โ€” ์–ด์˜๋‹ด ๐Ÿ‘พ "The Story Closer" - **File**: `generate_04_discussion.py` - **Output**: `04_Discussion_Conclusion.md` - **Content**: Theoretical implications, Managerial implications (Tesla Rule, Waymo Rule), Policy implications, Limitations, Future research, Conclusion - **Color**: Purple (#9370DB) ### Why the Change? The 8-section structure was fragmented and didn't align with the narrative flow. The new 4-phase structure: 1. **Clearer narrative arc**: ๊ธฐ์Šน์ „๊ฒฐ (setup โ†’ development โ†’ turn โ†’ resolution) mirrors traditional Korean storytelling 2. **Better modularity**: Each phase is self-contained with clear responsibilities 3. **Commander ownership**: Each phase has a designated "commander" (์ •์šดยท๊ถŒ์ค€ยท๊น€์™„ยท์–ด์˜๋‹ด) who owns that narrative role 4. **Reduced redundancy**: Literature + Conceptual merged; Methods + Results merged 5. **Easier maintenance**: 4 files instead of 6 (for core paper) ### Migration Guide If you have existing workflows using old files: **Option 1: Use new generate_all.py (Recommended)** ```bash python generate_all.py --mode 4phase # Generates all 4 phases with new structure ``` **Option 2: Run individual phases** ```bash python generate_01_introduction.py python generate_02_theory_conceptual.py python generate_03_empirics.py python generate_04_discussion.py ``` **Option 3: Keep legacy behavior (Not recommended)** ```bash python generate_all.py --mode legacy # Uses old 8-section structure (deprecated) ``` ### Timeline - **Old structure active until**: This commit - **Migration period**: Old files kept for reference, not deleted - **Full deprecation**: After verifying all downstream systems work with new structure ### Questions? See `README.md` for updated documentation on the 4-phase framework.