81 lines
1.4 KiB
TeX
81 lines
1.4 KiB
TeX
% 私募:从零到一 — 主文件(分章见 chapter/)
|
||
% 编译:XeLaTeX 或 LuaLaTeX(需 ctex、tikz、hyperref)
|
||
\documentclass[UTF8,openany]{ctexbook}
|
||
|
||
\usepackage{geometry}
|
||
\geometry{a4paper, margin=2.4cm}
|
||
|
||
\usepackage{xcolor}
|
||
\usepackage{hyperref}
|
||
\hypersetup{
|
||
colorlinks=true,
|
||
linkcolor=teal!60!black,
|
||
urlcolor=blue!60!black,
|
||
citecolor=gray!60!black,
|
||
}
|
||
|
||
\usepackage{tikz}
|
||
\usetikzlibrary{
|
||
arrows.meta,
|
||
positioning,
|
||
shapes.geometric,
|
||
calc,
|
||
backgrounds,
|
||
fit,
|
||
shadows,
|
||
decorations.pathmorphing,
|
||
}
|
||
|
||
\input{macros/tikz-compliance}
|
||
|
||
\title{私募:从零到一}
|
||
\author{}
|
||
\date{\today}
|
||
|
||
\begin{document}
|
||
|
||
\frontmatter
|
||
\maketitle
|
||
\tableofcontents
|
||
|
||
\mainmatter
|
||
|
||
\include{chapter/ch01}
|
||
\include{chapter/ch02}
|
||
\include{chapter/ch03}
|
||
\include{chapter/ch04}
|
||
\include{chapter/ch05}
|
||
\include{chapter/ch06}
|
||
\include{chapter/ch07}
|
||
\include{chapter/ch08}
|
||
\include{chapter/ch09}
|
||
\include{chapter/ch10}
|
||
\include{chapter/ch11}
|
||
\include{chapter/ch12}
|
||
\include{chapter/ch13}
|
||
\include{chapter/ch14}
|
||
\include{chapter/ch15}
|
||
|
||
\part{冷启动、团队与触达}
|
||
|
||
\include{chapter/ch16}
|
||
|
||
\part{合规与全球展业}
|
||
|
||
\include{chapter/ch17}
|
||
\include{chapter/ch18}
|
||
\include{chapter/ch19}
|
||
\include{chapter/ch20}
|
||
\include{chapter/ch21}
|
||
\include{chapter/ch22}
|
||
|
||
\part{Web3 与加密金融市场}
|
||
|
||
\include{chapter/ch23}
|
||
\include{chapter/ch24}
|
||
\include{chapter/ch25}
|
||
|
||
\backmatter
|
||
|
||
\end{document}
|