Skip to content

Commit 929c00c

Browse files
committed
third init
Former-commit-id: c49a42c
1 parent d117fd4 commit 929c00c

141 files changed

Lines changed: 10643 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 260 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
## Core latex/pdflatex auxiliary files:
2+
*.aux
3+
*.lof
4+
*.log
5+
*.lot
6+
*.fls
7+
*.out
8+
*.toc
9+
*.fmt
10+
*.fot
11+
*.cb
12+
*.cb2
13+
.*.lb
14+
15+
## Intermediate documents:
16+
*.dvi
17+
*.xdv
18+
*-converted-to.*
19+
# these rules might exclude image files for figures etc.
20+
# *.ps
21+
# *.eps
22+
# *.pdf
23+
24+
## Generated if empty string is given at "Please type another file name for output:"
25+
.pdf
26+
./tex_src/book/main.pdf
27+
28+
## Bibliography auxiliary files (bibtex/biblatex/biber):
29+
*.bbl
30+
*.bcf
31+
*.blg
32+
*-blx.aux
33+
*-blx.bib
34+
*.run.xml
35+
36+
## Build tool auxiliary files:
37+
*.fdb_latexmk
38+
*.synctex
39+
*.synctex(busy)
40+
*.synctex.gz
41+
*.synctex.gz(busy)
42+
*.pdfsync
43+
44+
## Build tool directories for auxiliary files
45+
# latexrun
46+
latex.out/
47+
48+
## Auxiliary and intermediate files from other packages:
49+
# algorithms
50+
*.alg
51+
*.loa
52+
53+
# achemso
54+
acs-*.bib
55+
56+
# amsthm
57+
*.thm
58+
59+
# beamer
60+
*.nav
61+
*.pre
62+
*.snm
63+
*.vrb
64+
65+
# changes
66+
*.soc
67+
68+
# comment
69+
*.cut
70+
71+
# cprotect
72+
*.cpt
73+
74+
# elsarticle (documentclass of Elsevier journals)
75+
*.spl
76+
77+
# endnotes
78+
*.ent
79+
80+
# fixme
81+
*.lox
82+
83+
# feynmf/feynmp
84+
*.mf
85+
*.mp
86+
*.t[1-9]
87+
*.t[1-9][0-9]
88+
*.tfm
89+
90+
#(r)(e)ledmac/(r)(e)ledpar
91+
*.end
92+
*.?end
93+
*.[1-9]
94+
*.[1-9][0-9]
95+
*.[1-9][0-9][0-9]
96+
*.[1-9]R
97+
*.[1-9][0-9]R
98+
*.[1-9][0-9][0-9]R
99+
*.eledsec[1-9]
100+
*.eledsec[1-9]R
101+
*.eledsec[1-9][0-9]
102+
*.eledsec[1-9][0-9]R
103+
*.eledsec[1-9][0-9][0-9]
104+
*.eledsec[1-9][0-9][0-9]R
105+
106+
# glossaries
107+
*.acn
108+
*.acr
109+
*.glg
110+
*.glo
111+
*.gls
112+
*.glsdefs
113+
114+
# gnuplottex
115+
*-gnuplottex-*
116+
117+
# gregoriotex
118+
*.gaux
119+
*.gtex
120+
121+
# htlatex
122+
*.4ct
123+
*.4tc
124+
*.idv
125+
*.lg
126+
*.trc
127+
*.xref
128+
129+
# hyperref
130+
*.brf
131+
132+
# knitr
133+
*-concordance.tex
134+
# TODO Comment the next line if you want to keep your tikz graphics files
135+
*.tikz
136+
*-tikzDictionary
137+
138+
# listings
139+
*.lol
140+
141+
# makeidx
142+
*.idx
143+
*.ilg
144+
*.ind
145+
*.ist
146+
147+
# minitoc
148+
*.maf
149+
*.mlf
150+
*.mlt
151+
*.mtc[0-9]*
152+
*.slf[0-9]*
153+
*.slt[0-9]*
154+
*.stc[0-9]*
155+
156+
# minted
157+
_minted*
158+
*.pyg
159+
160+
# morewrites
161+
*.mw
162+
163+
# nomencl
164+
*.nlg
165+
*.nlo
166+
*.nls
167+
168+
# pax
169+
*.pax
170+
171+
# pdfpcnotes
172+
*.pdfpc
173+
174+
# sagetex
175+
*.sagetex.sage
176+
*.sagetex.py
177+
*.sagetex.scmd
178+
179+
# scrwfile
180+
*.wrt
181+
182+
# sympy
183+
*.sout
184+
*.sympy
185+
sympy-plots-for-*.tex/
186+
187+
# pdfcomment
188+
*.upa
189+
*.upb
190+
191+
# pythontex
192+
*.pytxcode
193+
pythontex-files-*/
194+
195+
# tcolorbox
196+
*.listing
197+
198+
# thmtools
199+
*.loe
200+
201+
# TikZ & PGF
202+
*.dpth
203+
*.md5
204+
*.auxlock
205+
206+
# todonotes
207+
*.tdo
208+
209+
# vhistory
210+
*.hst
211+
*.ver
212+
213+
# easy-todo
214+
*.lod
215+
216+
# xcolor
217+
*.xcp
218+
219+
# xmpincl
220+
*.xmpi
221+
222+
# xindy
223+
*.xdy
224+
225+
# xypic precompiled matrices
226+
*.xyc
227+
228+
# endfloat
229+
*.ttt
230+
*.fff
231+
232+
# Latexian
233+
TSWLatexianTemp*
234+
235+
## Editors:
236+
# WinEdt
237+
*.bak
238+
*.sav
239+
240+
# Texpad
241+
.texpadtmp
242+
243+
# LyX
244+
*.lyx~
245+
246+
# Kile
247+
*.backup
248+
249+
# KBibTeX
250+
*~[0-9]*
251+
252+
# auto folder when using emacs and auctex
253+
./auto/*
254+
*.el
255+
256+
# expex forward references with \gathertags
257+
*-tags.tex
258+
259+
# standalone packages
260+
*.sta

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 ligong
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!--
2+
* @Author: your name
3+
* @Date: 2020-04-24 15:31:30
4+
* @LastEditTime: 2020-04-27 14:49:29
5+
* @LastEditors: your name
6+
* @Description: In User Settings Edit
7+
* @FilePath: \HongLouMeng-ZhiPingBen\README.md
8+
-->
9+
10+
# HongLouMeng ZhiPingBen
11+
12+
最初的预览目标版本
13+
14+
[拙编《红楼梦脂评汇校本》出版,发布定稿电子版----------_kolistan_新浪博客 ](http://blog.sina.com.cn/s/blog_5057dca80101es12.html)
15+
16+
然后是亚马逊
17+
18+
[《红楼梦脂评汇校本 (BookDNA典藏书系)》 曹雪芹, 脂砚斋, 吴铭恩 书评 简介 电子书下载 Kindle电子书]( https://www.amazon.cn/dp/B00M2R1RKQ?t=hwg_ca_fx_7-23&tag=hwg_ca_fx_7-23)
19+
20+
接着我拿到了epub格式,接着就是一波转换。
21+
22+
然后有了中间文件,重绘了批注图。最初实现基本功能能看的版本只花了2天时间就做出来了。
23+
24+
## 从码云回归
25+
26+
曾经迁移至:https://gitee.com/lingr7/The-Story-of-the-Stone/
27+
28+
推荐:上译厂刘风,张国立 红楼梦有声书 https://www.ximalaya.com/renwenjp/20654769/ 最初的预览目标版本
29+
30+
## 编译方法
31+
32+
推荐使用TeXLive 2022
33+
可从清华开源镜像网站获取安装包。
34+
windows下,使用 ./tex_src/book/make.bat,自动编译,生成stone.pdf文件。编译方法参考了https://github.com/CTeX-org/lshort-zh-cn
35+
36+
## 2020年变化
37+
38+
感谢:[关于多行标题居中悬挂对齐在目录中的换行问题 · Issue #111 · CTeX-org/forum]( https://github.com/CTeX-org/forum/issues/111)
39+
40+
```latex
41+
\usepackage{varwidth} %% 提供 varwidth 环境
42+
43+
\usepackage[titles]{tocloft}
44+
\setlength{\cftchapnumwidth}{8\ccwd}
45+
46+
\ctexset{
47+
chapter = {
48+
format += \centering,
49+
name = {第,回},
50+
nameformat += \chapternameformat,
51+
titleformat = \chaptertitleformat
52+
}
53+
}
54+
\newcommand{\chapternameformat}[1]{\kaishu #1}
55+
\newcommand{\chaptertitleformat}[1]{%
56+
\CTEXifname{\parbox[t]{8\ccwd}{#1}}{#1}}
57+
```
58+
59+
## 2021年变化
60+
61+
生僻字相关,设置fontset=windows以支持一些生僻字;
62+
移除了自己的100+条笔记;
63+
增加了带圈数字支持;
64+
修改了圆形和菱形及方形;
65+
修正引号使用;
66+
尝试了章节尾注,把全部尾注替换为脚注暂时未做;
67+
68+
## 2022年变化
69+
70+
编译stone.tex,使用lshort-zh-cn.pdf同款样式。
71+
每章脚注。19 61 67 80有章节标题脚注,放在第一行。
72+
73+
## 截图展示
74+
75+
[项目码云wiki](https://gitee.com/lingr7/The-Story-of-the-Stone/wikis/Home)
76+
77+
## Todo
78+
79+
- [ ] 诗句
80+
81+
- [ ] 对联
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
\chapter{版权信息}
2+
3+
{红楼梦脂评汇校本}\\
4+
曹雪芹著~~脂砚斋评~~吴铭恩汇校\\[2\baselineskip]?浙江出版集团数字传媒有限公司~2016\\
5+
本书版权为浙江出版集团数字传媒有限公司所有,未经书面授权,不得在任何地区以任何方式转载、翻印、仿制或节录本书文字或图片。
6+
7+
DNA-BN:ECFP-N00004139-20160531\\
8+
最后修订:2016年5月31日\\
9+
编辑\&amp;制作:{肖若臻}\\
10+
11+
出版:浙江出版集团数字传媒有限公司\\
12+
浙江~杭州~体育场路347号\\
13+
互联网出版许可证:新出网证(浙)字10号\\
14+
电子邮箱:cb@bookdna.cn\\
15+
网  址:www.bookdna.cn\\
16+
BookDNA是浙江出版联合集团旗下电子书出版机构,为作者提供电子书出版服务。\\
17+
如您发现本书内容错讹,敬请指正,以便新版修订。\\
18+
吴铭恩:kolistan@vip.qq.com\\
19+
20+
?Zhejiang Publishing United Group Digital Media CO.,LTD,2014\\
21+
No.347 Tiyuchang Road, Hangzhou 310006 P.R.C.\\
22+
cb@bookdna.cn\\
23+
www.bookdna.cn
24+
25+
% \hypertarget{part0001_split_000.htmlux5cux23calibre_pb_0}{}
26+
27+
% \protect\hypertarget{part0001_split_001.html}{}{}
28+
29+
% \hypertarget{part0001_split_001.htmlux5cux23calibre_pb_1}{}
30+
\section{纸质版编目数据}
31+
32+
北方联合出版传媒集团 万卷出版公司 2013.10\\
33+
ISBN:9787547028056

0 commit comments

Comments
 (0)