├── .gitignore ├── LICENSE ├── README.md ├── book ├── The Sovereign Individual_ Mastering the Tr - James Dale Davidson.pdf └── The_Sovereign_Individual_Z-Library (Translated).epub ├── tex-en-zh ├── Sovereign_Individual.pdf ├── Sovereign_Individual.tex ├── sovereign-individual-cn.tex └── texcode │ ├── chap1.tex │ ├── chap2.tex │ ├── chapter1.tex │ ├── chapter10.tex │ ├── chapter11.tex │ ├── chapter12.tex │ ├── chapter13.tex │ ├── chapter14.tex │ ├── chapter15.tex │ ├── chapter2.tex │ ├── chapter3.tex │ ├── chapter4.tex │ ├── chapter5.tex │ ├── chapter6.tex │ ├── chapter7.tex │ ├── chapter8.tex │ ├── chapter9.tex │ ├── mycomment.tex │ └── preface.tex ├── tex-zh ├── Sovereign_Individual.tex ├── figures │ └── Springer-logo.png ├── fonts │ ├── Dense-Regular.otf │ ├── Floane-Regular-2.otf │ ├── Frick0.3-Condensed-2.otf │ ├── Rodondo.otf │ ├── SANDBOX-TTF-2.ttf │ ├── Sansation_Bold.ttf │ ├── Sansation_Bold_Italic.ttf │ ├── Sansation_Italic.ttf │ └── Sansation_Regular.ttf ├── main.bbl ├── main.tex ├── maincontents │ ├── afterword.tex │ ├── appendix.tex │ ├── appendix2.tex │ ├── chapter1.tex │ ├── chapter10.tex │ ├── chapter11.tex │ ├── chapter2.tex │ ├── chapter3.tex │ ├── chapter4.tex │ ├── chapter5.tex │ ├── chapter6.tex │ ├── chapter7.tex │ ├── chapter8.tex │ ├── chapter9.tex │ ├── preface.tex │ ├── preface2.tex │ └── titlepage.tex ├── md-files │ ├── README.md │ ├── cpt1.md │ ├── cpt10.md │ ├── cpt11.md │ ├── cpt2.md │ ├── cpt3.md │ ├── cpt4.md │ ├── cpt5.md │ ├── cpt6.md │ ├── cpt7.md │ ├── cpt8.md │ ├── cpt9.md │ ├── end1.md │ ├── end2.md │ ├── end3.md │ ├── end4.md │ ├── 原书评.md │ ├── 新版序言.md │ └── 译者序.md ├── ref.bib ├── stys │ ├── Titlepage.sty │ ├── bottompage.sty │ └── secondtitlepage.sty └── versions │ ├── Sovereign_Individual_V1.pdf │ └── Sovereign_Individual_V2.pdf └── txt ├── c1.txt ├── c1_bilingual.txt └── c2_bilingual.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/README.md -------------------------------------------------------------------------------- /book/The Sovereign Individual_ Mastering the Tr - James Dale Davidson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/book/The Sovereign Individual_ Mastering the Tr - James Dale Davidson.pdf -------------------------------------------------------------------------------- /book/The_Sovereign_Individual_Z-Library (Translated).epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/book/The_Sovereign_Individual_Z-Library (Translated).epub -------------------------------------------------------------------------------- /tex-en-zh/Sovereign_Individual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/Sovereign_Individual.pdf -------------------------------------------------------------------------------- /tex-en-zh/Sovereign_Individual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/Sovereign_Individual.tex -------------------------------------------------------------------------------- /tex-en-zh/sovereign-individual-cn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/sovereign-individual-cn.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chap1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chap1.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chap2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chap2.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter1.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter10.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter11.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter12.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter12.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter13.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter13.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter14.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter14.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter15.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter15.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter2.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter3.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter4.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter5.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter6.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter7.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter8.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/chapter9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/chapter9.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/mycomment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/mycomment.tex -------------------------------------------------------------------------------- /tex-en-zh/texcode/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-en-zh/texcode/preface.tex -------------------------------------------------------------------------------- /tex-zh/Sovereign_Individual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/Sovereign_Individual.tex -------------------------------------------------------------------------------- /tex-zh/figures/Springer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/figures/Springer-logo.png -------------------------------------------------------------------------------- /tex-zh/fonts/Dense-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Dense-Regular.otf -------------------------------------------------------------------------------- /tex-zh/fonts/Floane-Regular-2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Floane-Regular-2.otf -------------------------------------------------------------------------------- /tex-zh/fonts/Frick0.3-Condensed-2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Frick0.3-Condensed-2.otf -------------------------------------------------------------------------------- /tex-zh/fonts/Rodondo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Rodondo.otf -------------------------------------------------------------------------------- /tex-zh/fonts/SANDBOX-TTF-2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/SANDBOX-TTF-2.ttf -------------------------------------------------------------------------------- /tex-zh/fonts/Sansation_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Sansation_Bold.ttf -------------------------------------------------------------------------------- /tex-zh/fonts/Sansation_Bold_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Sansation_Bold_Italic.ttf -------------------------------------------------------------------------------- /tex-zh/fonts/Sansation_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Sansation_Italic.ttf -------------------------------------------------------------------------------- /tex-zh/fonts/Sansation_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/fonts/Sansation_Regular.ttf -------------------------------------------------------------------------------- /tex-zh/main.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/main.bbl -------------------------------------------------------------------------------- /tex-zh/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/main.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/afterword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/afterword.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/appendix.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/appendix2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/appendix2.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter1.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter10.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter11.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter2.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter3.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter4.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter5.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter6.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter7.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter8.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/chapter9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/chapter9.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/preface.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/preface2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/preface2.tex -------------------------------------------------------------------------------- /tex-zh/maincontents/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/maincontents/titlepage.tex -------------------------------------------------------------------------------- /tex-zh/md-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/README.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt1.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt10.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt11.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt2.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt3.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt4.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt5.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt6.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt7.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt8.md -------------------------------------------------------------------------------- /tex-zh/md-files/cpt9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/cpt9.md -------------------------------------------------------------------------------- /tex-zh/md-files/end1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/end1.md -------------------------------------------------------------------------------- /tex-zh/md-files/end2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/end2.md -------------------------------------------------------------------------------- /tex-zh/md-files/end3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/end3.md -------------------------------------------------------------------------------- /tex-zh/md-files/end4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/end4.md -------------------------------------------------------------------------------- /tex-zh/md-files/原书评.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/原书评.md -------------------------------------------------------------------------------- /tex-zh/md-files/新版序言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/新版序言.md -------------------------------------------------------------------------------- /tex-zh/md-files/译者序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/md-files/译者序.md -------------------------------------------------------------------------------- /tex-zh/ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/ref.bib -------------------------------------------------------------------------------- /tex-zh/stys/Titlepage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/stys/Titlepage.sty -------------------------------------------------------------------------------- /tex-zh/stys/bottompage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/stys/bottompage.sty -------------------------------------------------------------------------------- /tex-zh/stys/secondtitlepage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/stys/secondtitlepage.sty -------------------------------------------------------------------------------- /tex-zh/versions/Sovereign_Individual_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/versions/Sovereign_Individual_V1.pdf -------------------------------------------------------------------------------- /tex-zh/versions/Sovereign_Individual_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/tex-zh/versions/Sovereign_Individual_V2.pdf -------------------------------------------------------------------------------- /txt/c1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/txt/c1.txt -------------------------------------------------------------------------------- /txt/c1_bilingual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/txt/c1_bilingual.txt -------------------------------------------------------------------------------- /txt/c2_bilingual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macin20/sovereign-individual-cn/HEAD/txt/c2_bilingual.txt --------------------------------------------------------------------------------