├── .gitignore ├── 00_preface.tex ├── 01_first_manuscript.tex ├── 02_chinese.tex ├── LICENSE ├── README.md ├── hard_way.tex ├── pic ├── 01_hello_mac.png └── 02_chinese_mac.png ├── settings_caption.tex ├── settings_defines.tex ├── settings_listings.tex └── src ├── 01_hello.tex └── 02_chinese.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/.gitignore -------------------------------------------------------------------------------- /00_preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/00_preface.tex -------------------------------------------------------------------------------- /01_first_manuscript.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/01_first_manuscript.tex -------------------------------------------------------------------------------- /02_chinese.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/02_chinese.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/README.md -------------------------------------------------------------------------------- /hard_way.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/hard_way.tex -------------------------------------------------------------------------------- /pic/01_hello_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/pic/01_hello_mac.png -------------------------------------------------------------------------------- /pic/02_chinese_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/pic/02_chinese_mac.png -------------------------------------------------------------------------------- /settings_caption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/settings_caption.tex -------------------------------------------------------------------------------- /settings_defines.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/settings_defines.tex -------------------------------------------------------------------------------- /settings_listings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/settings_listings.tex -------------------------------------------------------------------------------- /src/01_hello.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/src/01_hello.tex -------------------------------------------------------------------------------- /src/02_chinese.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liam0205/LaTeX_hard_way/HEAD/src/02_chinese.tex --------------------------------------------------------------------------------