其他
Claroja
这个作者很懒,什么都没留下…
展开
-
Windows配置GitBook
去nodejs官网下载nodejs,并安装 https://nodejs.org/en/安装gitbook 在cmd中输入"npm install gitbook-cli -g"去gitbook官网下载gitbook编辑器,并安装 https://www.gitbook.com/editor开始编辑 gitbookeditor默认文件保存的路径是:C:\Users\Administra原创 2017-05-30 13:45:22 · 1264 阅读 · 0 评论 -
reveal.js
结构section>Single Horizontal Slidesection>section> section>1.1section> section>1.2section>section>section>2section>展示动画section>slide 1section> sec原创 2018-01-05 14:57:44 · 327 阅读 · 0 评论 -
latex 数学公式
h_\theta(x)=\theta_0+\theta _1x_1+\theta_2x_2+...+\theta_nx_nhθ(x)=θ0+θ1x1+θ2x2+...+θnxnh_\theta(x)=\theta_0+\theta _1x_1+\theta_2x_2+...+\theta_nx_n参考文献: https://zh.numberempire.com/latexequatio原创 2017-12-26 11:26:46 · 324 阅读 · 0 评论 -
Sphinx 语法
数学公式:math: #行内公式Since Pythagoras, we know that :math:`a^2 + b^2 = c^2`... math:: #单行公式.. math:: (a + b)^2 = a^2 + 2ab + b^2 (a - b)^2 = a^2 - 2ab + b^2.. math:: (a + b)^2 &= (a + b)(a + b) \原创 2017-12-27 11:16:50 · 1029 阅读 · 1 评论 -
reStructuredText
段落段落必须由空行代替段落1段落2内联标记*斜体***粗体**``代码块``列表有序列表列表的格式是列表符号(星号,编号.,#.)加一个空格。 子列表需要和父列表分行并且缩进两个空格1. 第 **一** 条 段落#. 第二条 1. 小条#. 第三条 更多的可选样式1. 数字a.原创 2017-12-25 13:50:19 · 573 阅读 · 0 评论 -
latex
安装sudo apt-get install texlive //安装latexsudo apt-get install latex-cjk-all //安装中文字体sudo apt-get install texmaker//安装编辑器原创 2017-12-26 10:17:00 · 328 阅读 · 0 评论 -
Sphinx sphinx_rtd_theme
1.安装rtd主题 pip install sphinx_rtd_theme 2.配置conf.py文件 html_theme = ‘sphinx_rtd_theme’原创 2017-12-25 16:05:39 · 4995 阅读 · 0 评论 -
Sphinx index.rst
假设我们有两个文本file1.rst和file2.rst他们的内容如下 file1.rstfile1 title1============这里是段落内容file1 title1.1--------------这里是内容file1 title1.2--------------这里是内容file2.rstfile2 title1=============这原创 2017-12-25 14:39:20 · 1247 阅读 · 0 评论 -
Sphinx API文档例子
index.rst文档内容:.. newproject documentation master file, created by sphinx-quickstart on Mon Dec 25 11:23:47 2017. You can adapt this file completely to your liking, but it should at least原创 2017-12-25 13:22:34 · 701 阅读 · 0 评论 -
Sphinx 文档例子
.├── build├── make.bat├── Makefile└── source ├── conf.py ├── index.rst ├── intro.rst ├── _static └── _templates原创 2017-12-25 13:08:57 · 616 阅读 · 0 评论 -
Sphinx 初始化项目
Welcome to the Sphinx 1.5.6 quickstart utility.Please enter values for the following settings (just press Enter toaccept a default value, if one is given in brackets).Enter the root path for docu原创 2017-12-25 11:03:34 · 437 阅读 · 0 评论 -
MkDocs 文档编辑器
http://www.mkdocs.org/安装pip install mkdocs基本命令 命令 描述 mkdocs new [dir-name] 新建一个项目 mkdocs serve 开启网页服务 mkdocs build 创建静态网站 mkdocs help 帮助文档注意,new会在当前目录下建立项目文档,serve/build都要在项目目录下执行 配翻译 2017-07-20 10:10:27 · 1942 阅读 · 0 评论 -
graphviz
1.创建图digraph name1 { label = "graph"; a;b; subgraph cluster_sgh { label = "subgraph"; c;d; }}使用node []和edge []对全局进行设置digraph graph1 { node [sh原创 2018-09-10 10:59:46 · 2369 阅读 · 0 评论