diff options
-rw-r--r-- | Documentation/translations/zh_CN/process/howto.rst | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Documentation/translations/zh_CN/process/howto.rst b/Documentation/translations/zh_CN/process/howto.rst index c4ff8356b88d..b244a7190eb6 100644 --- a/Documentation/translations/zh_CN/process/howto.rst +++ b/Documentation/translations/zh_CN/process/howto.rst | |||
@@ -146,14 +146,18 @@ Linux内核代码中包含有大量的文档。这些文档对于学习如何与 | |||
146 | :ref:`Documentation/process/applying-patches.rst <applying_patches>` | 146 | :ref:`Documentation/process/applying-patches.rst <applying_patches>` |
147 | 关于补丁是什么以及如何将它打在不同内核开发分支上的好介绍 | 147 | 关于补丁是什么以及如何将它打在不同内核开发分支上的好介绍 |
148 | 148 | ||
149 | 内核还拥有大量从代码自动生成的文档。它包含内核内部API的全面介绍以及如何 | 149 | 内核还拥有大量从代码自动生成或者从 ReStructuredText(ReST) 标记生成的文档, |
150 | 妥善处理加锁的规则。生成的文档会放在 Documentation/output/目录下。在内 | 150 | 比如这个文档,它包含内核内部API的全面介绍以及如何妥善处理加锁的规则。所有 |
151 | 核源码的主目录中使用以下不同命令将会分别生成PDF、Postscript、HTML和手册 | 151 | 这些文档都可以通过运行以下命令从内核代码中生成为PDF或HTML文档:: |
152 | 页等不同格式的文档:: | ||
153 | 152 | ||
154 | make pdfdocs | 153 | make pdfdocs |
155 | make htmldocs | 154 | make htmldocs |
156 | 155 | ||
156 | ReST格式的文档会生成在 Documentation/output. 目录中。 | ||
157 | 它们也可以用下列命令生成 LaTeX 和 ePub 格式文档:: | ||
158 | |||
159 | make latexdocs | ||
160 | make epubdocs | ||
157 | 161 | ||
158 | 如何成为内核开发者 | 162 | 如何成为内核开发者 |
159 | ------------------ | 163 | ------------------ |