Skip to content

Commit

Permalink
resolve changkun#6, 使用 Pandoc 根据 Markdown 生成 PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
changkun committed Apr 10, 2018
1 parent 52aff9f commit fe4a86f
Show file tree
Hide file tree
Showing 18 changed files with 331 additions and 35 deletions.
4 changes: 2 additions & 2 deletions book/0-preface.md → book/00-preface.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 高速上手 C++ 11/14/17
# 序言

## 引言

Expand Down Expand Up @@ -36,4 +36,4 @@ C++17 则是近三年依赖 C++ 社区一致推进的方向,也指出了**现

<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/80x15.png" /></a>

本书系[欧长坤](https://github.com/changkun)著,采用[知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议](http://creativecommons.org/licenses/by-nc-nd/4.0/)许可。项目中代码使用 MIT 协议开源,参见[许可](../LICENSE)
本书系[欧长坤](https://github.com/changkun)著,采用[知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议](http://creativecommons.org/licenses/by-nc-nd/4.0/)许可。项目中代码使用 MIT 协议开源,参见[许可](../LICENSE)
2 changes: 1 addition & 1 deletion book/01-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ clean:

不必担心,本书的后续章节将为你介绍这一切。

[返回目录](./toc.md) | [上一章](./0-preface.md) | [下一章:语言可用性强化](./02-usability.md)
[返回目录](./toc.md) | [上一章](./00-preface.md) | [下一章:语言可用性强化](./02-usability.md)

## 进一步阅读的参考文献

Expand Down
4 changes: 2 additions & 2 deletions book/02-usability.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第二章 语言可用性的强化
# 第 2 章 语言可用性的强化

[TOC]

Expand Down Expand Up @@ -743,7 +743,7 @@ int main() {

> 事实上,有时候我们虽然使用了变参模板,却不一定需要对参数做逐个遍历,我们可以利用 `std::bind` 及完美转发等特性实现对函数和参数的绑定,从而达到成功调用的目的。
> 关于这方面的使用技巧,请参考习题~~可以通过项目课:[100 行 C++ 代码实现线程池](https://www.shiyanlou.com/teacher/courses/565) 进行进一步巩固学习。~~
> 关于这方面的使用技巧,请参考习题,TODO
### 折叠表达式

Expand Down
2 changes: 1 addition & 1 deletion book/03-runtime.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第三章 语言运行期的强化
# 第 3 章 语言运行期的强化

> 内容修订中
Expand Down
2 changes: 1 addition & 1 deletion book/04-containers.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第四章 对标准库的扩充:新增容器
# 第 4 章 对标准库的扩充:新增容器

> 内容修订中
Expand Down
2 changes: 1 addition & 1 deletion book/05-pointers.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第五章 对标准库的扩充:引用计数与智能指针
# 第 5 章 对标准库的扩充:引用计数与智能指针

> 内容修订中
Expand Down
34 changes: 16 additions & 18 deletions book/06-regex.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第六章 正则表达式库
# 第 6 章 正则表达式库

> 内容修订中
Expand Down Expand Up @@ -38,26 +38,26 @@
特殊字符是正则表达式里有特殊含义的字符,也是正则表达式的核心匹配语法。参见下表:

|特别字符|描述|
|:--:|:--|
|`$`| 匹配输入字符串的结尾位置。|
|`(`,`)`| 标记一个子表达式的开始和结束位置。子表达式可以获取供以后使用。|
|`*`| 匹配前面的子表达式零次或多次。|
|`+`| 匹配前面的子表达式一次或多次。|
|`.`| 匹配除换行符 `\n` 之外的任何单字符。|
|`[`| 标记一个中括号表达式的开始。|
|`?`| 匹配前面的子表达式零次或一次,或指明一个非贪婪限定符。|
| `\`| 将下一个字符标记为或特殊字符、或原义字符、或向后引用、或八进制转义符。例如, `n` 匹配字符 `n``\n` 匹配换行符。序列 `\\` 匹配 `'\'` 字符,而 `\(` 则匹配 `'('` 字符。|
|`^`| 匹配输入字符串的开始位置,除非在方括号表达式中使用,此时它表示不接受该字符集合。|
|`{`| 标记限定符表达式的开始。|
|`\`| 指明两项之间的一个选择。|
|:---:|:------------------------------------------------------|
|`$`| 匹配输入字符串的结尾位置。|
|`(`,`)`| 标记一个子表达式的开始和结束位置。子表达式可以获取供以后使用。|
|`*`| 匹配前面的子表达式零次或多次。|
|`+`| 匹配前面的子表达式一次或多次。|
|`.`| 匹配除换行符 `\n` 之外的任何单字符。|
|`[`| 标记一个中括号表达式的开始。|
|`?`| 匹配前面的子表达式零次或一次,或指明一个非贪婪限定符。|
| `\`| 将下一个字符标记为或特殊字符、或原义字符、或向后引用、或八进制转义符。例如, `n` 匹配字符 `n``\n` 匹配换行符。序列 `\\` 匹配 `'\'` 字符,而 `\(` 则匹配 `'('` 字符。|
|`^`| 匹配输入字符串的开始位置,除非在方括号表达式中使用,此时它表示不接受该字符集合。|
|`{`| 标记限定符表达式的开始。|
|`\`| 指明两项之间的一个选择。|

### 限定符

限定符用来指定正则表达式的一个给定的组件必须要出现多少次才能满足匹配。见下表:


|字符|描述|
|:--:|:--|
|:---:|:------------------------------------------------------|
|`*`|匹配前面的子表达式零次或多次。例如,`foo*` 能匹配 `fo` 以及 `foooo``*` 等价于`{0,}`|
|`+`|匹配前面的子表达式一次或多次。例如,`foo+` 能匹配 `foo` 以及 `foooo`,但不能匹配 `fo``+` 等价于 `{1,}`|
|`?`|匹配前面的子表达式零次或一次。例如,`Your(s)?` 可以匹配 `Your``Yours` 中的`Your``?` 等价于 `{0,1}`|
Expand All @@ -79,7 +79,7 @@ C++11 提供的正则表达式库操作 `std::string` 对象,模式 `std::rege

- `[a-z]+\.txt`: 在这个正则表达式中, `[a-z]` 表示匹配一个小写字母, `+` 可以使前面的表达式匹配多次,因此 `[a-z]+` 能够匹配一个小写字母组成的字符串。在正则表达式中一个 `.` 表示匹配任意字符,而 `\.` 则表示匹配字符 `.`,最后的 `txt` 表示严格匹配 `txt` 则三个字母。因此这个正则表达式的所要匹配的内容就是由纯小写字母组成的文本文件。

`std::regex_match` 用于匹配字符串和正则表达式,有很多不同的重载形式。最简单的一个形式就是传入`std::string` 以及一个 `std::regex` 进行匹配,当匹配成功时,会返回 `true`,否则返回 `false`。例如:
`std::regex_match` 用于匹配字符串和正则表达式,有很多不同的重载形式。最简单的一个形式就是传入 `std::string` 以及一个 `std::regex` 进行匹配,当匹配成功时,会返回 `true`,否则返回 `false`。例如:

```cpp
#include <iostream>
Expand Down Expand Up @@ -132,9 +132,7 @@ bar.txt sub-match[1]: bar
本节简单介绍了正则表达式本身,然后根据使用正则表达式的主要需求,通过一个实际的例子介绍了正则表达式库的使用。
> 本节提到的内容足以让我们开发编写一个简单的 Web 框架中关于URL匹配的功能。
> ~~关于这方面的开发和细节,可以通过项目课:[C++ 开发 Web 服务框架](https://www.shiyanlou.com/courses/568) 进行进一步学习。~~ TODO: 将这部分内容补充为习题
> 本节提到的内容足以让我们开发编写一个简单的 Web 框架中关于URL匹配的功能,请参考习题 TODO
## 进一步阅读的参考资料
Expand Down
6 changes: 2 additions & 4 deletions book/07-thread.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第七章 语言级线程支持
# 第 7 章 语言级线程支持

> 内容修订中
Expand Down Expand Up @@ -171,9 +171,7 @@ consumer.join();
C++11 语言层提供了并发编程的相关支持,本节简单的介绍了 `std::thread`/`std::mutex`/`std::future` 这些并发编程中不可回避的重要工具。
> 本节提到的内容足以让我们使用不超过 100 行代码编写一个简单的线程池库
>
> ~~关于这方面的使用技巧,可以通过项目课:[100 行 C++ 代码实现线程池](https://www.shiyanlou.com/teacher/courses/565) 进行进一步巩固学习。~~ TODO: 将这部分内容补充为习题
> 本节提到的内容足以让我们使用不超过 100 行代码编写一个简单的线程池库,请参考习题 TODO
## 进一步阅读的参考资料
Expand Down
4 changes: 2 additions & 2 deletions book/08-filesystem.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 第八章 标准库: 文件系统
# 第 8 章 标准库: 文件系统

> TODO: 这部分内容为 C++17 新增
> TODO: 这部分内容为 C++17 新增
2 changes: 1 addition & 1 deletion book/09-others.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第九章 其他杂项
# 第 9 章 其他杂项

> 内容修订中
Expand Down
2 changes: 1 addition & 1 deletion book/10-cpp20.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 第九章 展望: C++20 简介
# 第 10 章 展望: C++20 简介

> 内容修订中, 目前内容为第一版中对 C++17 的展望
Expand Down
6 changes: 6 additions & 0 deletions book/appendix.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@
- [CppCon YouTube 频道](https://www.youtube.com/user/CppCon/videos)
- [每位程序员都需要知道的内存知识](https://people.freebsd.org/~lstewart/articles/cpumemory.pdf)
- 待补充

## 许可

<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/80x15.png" /></a>

本书系[欧长坤](https://github.com/changkun)著,采用[知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议](http://creativecommons.org/licenses/by-nc-nd/4.0/)许可。项目中代码使用 MIT 协议开源,参见[许可](../LICENSE)
2 changes: 1 addition & 1 deletion book/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## 目录

- [**序言**](./0-preface.md)
- [**序言**](./00-preface.md)
- [**第 1 章 迈向 C++11/14/17**](./01-intro.md)
+ 1.1 被弃用的特性
+ 1.2 与 C 的兼容性
Expand Down
28 changes: 28 additions & 0 deletions pdf/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
title = '高速上手 C++11/14/17'
filename = 'modern-cpp-tutorial'
outputname='modern-cpp-tutorial'

all: pdf

pdf: markdown
@echo "Compiling PDF file..."
@pandoc -s $(filename).md -o $(filename).pdf \
--title-prefix $(title) \
--listings -H meta/cpp-listings.tex \
--template=meta/template.tex \
--normalize \
--smart \
--latex-engine=`which xelatex`
@echo "Done."
@rm *.md

markdown:
@echo "Copy markdown files..."
@cp -r ../book/* .
@echo "Aggregating markdown files..."
@python3 aggregator.py

clean:
rm -rf *.md *.pdf

.PHONY: markdown pdf clean
22 changes: 22 additions & 0 deletions pdf/aggregator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# !/usr/bin/env python3
# author: changkun<hi@changkun.us>

chapters = ['00-preface.md', '01-intro.md', '02-usability.md', '03-runtime.md', '04-containers.md', '05-pointers.md', '06-regex.md', '07-thread.md', '08-filesystem.md', '09-others.md', '10-cpp20.md', 'appendix.md']

ignores = ['TOC', '返回目录', '许可', 'license']

with open('modern-cpp-tutorial.md', 'w') as outfile:
outfile.write("""---
title: "高速上手 C++11/14/17"
author: 欧长坤 <hi@changkun.us>
copyright: cc-by-nc-nd 4.0
---
""")
for chapter in chapters:
with open(chapter) as ch:
outfile.write('\n')
for line in ch:
if any(keyword in line for keyword in ignores):
continue
else:
outfile.write(line)
26 changes: 26 additions & 0 deletions pdf/meta/cpp-listings.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

\usepackage{xcolor}

\definecolor{keyword}{HTML}{BA2CA3}
\definecolor{string}{HTML}{D12F1B}
\definecolor{comment}{HTML}{008400}

\lstset{
basicstyle={\small\ttfamily},
keywordstyle={\color[rgb]{0.13,0.29,0.53}\bfseries},
breaklines=true,
emphstyle={\bfseries\color{Rhodamine}},
commentstyle={\color[rgb]{0.56,0.35,0.01}\itshape},
stringstyle={\color[rgb]{0.31,0.60,0.02}},
showstringspaces=false,
frame=shadowbox,
breakatwhitespace=false,
captionpos=b,
extendedchars=true,
keepspaces=true,
numbers=left,
numberstyle=\tiny,
rulecolor=\color{black},
rulesepcolor={\color{blue!20!white}},
showspaces=false,
}
Loading

0 comments on commit fe4a86f

Please sign in to comment.