-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.tex
More file actions
64 lines (45 loc) · 1.52 KB
/
book.tex
File metadata and controls
64 lines (45 loc) · 1.52 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
\documentclass[lang=en,color=green]{elegantbook}
\title{Pragmatic Node.js development}
\subtitle{Primer in Nest.js}
\author{Zlatibor Zed Veljkovic}
\date{June 5, 2022}
\version{0.5}
\bioinfo{Email}{zveljkovic@hotmail.com}
\extrainfo{I had more time so it is short}
\setcounter{tocdepth}{3}
\logo{cule.jpg}
\cover{cover.jpg}
\definecolor{codebg}{rgb}{0.8,0.8,0.8}
% 本文档命令
\usepackage{array}
\usepackage{enumitem}
\usepackage[outputdir=./auxil]{minted}
\usepackage{mdframed}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{color}
\newcommand{\ccr}[1]{\makecell{{\color{#1}\rule{1cm}{1cm}}}}
\newcommand{\ci}{\mintinline{bat}}
\newcommand{\bi}[1]{\textit{\textbf{#1}}}
\setmintedinline{bgcolor=codebg}
\AtBeginEnvironment{minted}{%
\renewcommand{\fcolorbox}[4][]{#4}}
% 修改标题页的橙色带
% \definecolor{customcolor}{RGB}{32,178,170}
% \colorlet{coverlinecolor}{customcolor}
\begin{document}
\maketitle
\frontmatter
\tableofcontents
\mainmatter
\chapter{Developer tools}\label{ch:developer-tools}
\input{_developer-tools}
\chapter{NestJS application recommendations}\label{ch:nestjs-application-recommendations}
\input{_nestjs-application-recommendations}
\chapter{NestJS component guide}\label{ch:nestjs-component-guides}
\input{_nestjs-component-guides}
\chapter{NestJS architectural guides}\label{ch:nestjs-architectural-guides}
\input{_nestjs-architectural-guides}
\chapter{NestJS testing}\label{ch:nestjs-testing}
\input{_nestjs-testing}
\end{document}