博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第 35 章 写作团队的运作
阅读量:6032 次
发布时间:2019-06-20

本文共 2816 字,大约阅读时间需要 9 分钟。

目录

35.1. Docbook 环境初始化
35.1.1. FreeBSD
35.1.2. Ubuntu/Debian
35.2. Subversion 版本控制
35.3. GIT

前提条件: subversion 服务器一台,或者使用sf.net, github.com, code.google.com 等等提供的服务,团队人员需要懂得docbook以及配置docbook环境

35.1. Docbook 环境初始化

35.1.1. FreeBSD

# pkg_add -r vim# pkg_add -r git# pkg_add -r libxml2 libxslt# pkg_add -r docbook-xsl

创建 book.xml

An Example Book
Your first name
Your surname
foo@example.com
2000
Copyright string here
If your book has an abstract then it should go here.
Preface
Your book may have a preface, in which case it should be placed here.
My first chapter
This is the first chapter in my book.
My first section
This is the first section in my book.

生成文档

$ xsltproc /usr/local/share/xsl/docbook/xhtml/docbook.xsl book.xml > book.html

35.1.2. Ubuntu/Debian

$ sudo apt-get install docbook-xsl$ sudo apt-get install xsltproc xmlto$ sudo apt-get install make$ sudo apt-get install git

创建 book.xml

An Example Book
Your first name
Your surname
foo@example.com
2000
Copyright string here
If your book has an abstract then it should go here.
Preface
Your book may have a preface, in which case it should be placed here.
My first chapter
This is the first chapter in my book.
My first section
This is the first section in my book.

生成文档

$ xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl/xhtml/docbook.xsl book.xml > book.html

原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章
固定弹层叉掉
查看>>
[编解码] 关于base64编码的原理及实现
查看>>
2015/6/1站立会议(补发)
查看>>
WinDbg配置和使用基础
查看>>
Realm数据库使用
查看>>
JDK7,JDK8 - 下载地址
查看>>
Mybatis使用接口开发
查看>>
《批量下载音乐文件》 requests 网页请求模块
查看>>
转:Object-Runtime的基本数据类型
查看>>
JMJS系统总结系列----Jquery分页扩展库(五)
查看>>
学习笔记5
查看>>
Excel技巧之——英文大小写转换(转)
查看>>
网页防止跨框架攻击
查看>>
理解和配置 Linux 下的 OOM Killer
查看>>
性能测试场景设计之用户模式设置
查看>>
box-sizing 属性
查看>>
我要写一篇文章吗?
查看>>
iOS保存model数据(自定义Model 可以存放到本地)
查看>>
svn导出文件进行比较
查看>>
Google 翻译的妙用
查看>>