forked from colinaaa/algorithm-course-notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbook.tex
38 lines (30 loc) · 813 Bytes
/
book.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
\documentclass[cn]{elegantbook}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage[ruled,linesnumbered,vlined]{algorithm2e}
\usepackage{hyperref}
\usepackage{listings}
\def\figureautorefname{图}
\SetAlgorithmName{算法}{算法}{算法索引}
\renewcommand*{\lstlistingname}{代码}
\title{何老师算法课笔记}
\subtitle{还没有想好的副标题}
\author{计卓1801全体}
\institute{华中科技大学}
\date{\zhtoday}
\version{1.2.0}
\logo{logo.png}
\cover{cover.png}
\begin{document}
\maketitle
\tableofcontents
\pagenumbering{arabic}
% add your code here
\input{src/example.tex}
\input{src/dynamic-programming-1.tex}
\input{src/Network-flows.tex}
\input{src/Ln9-NearestPoints.tex}
\input{src/Ln11-LargeIntegerMultiplication.tex}
\bibliography{ref.bib}
\end{document}