Sphinx 1.3.3 不在 Windows 7 上创建 PDF 文件

Sphinx 1.3.3 Does not create PDF file on Windows 7

我已经使用 Sphinx 成功创建了 HTML 文档。 我现在想创建一个 PDF。 我 运行 在命令行上执行以下操作(按照手册)。

make latexpdf

我得到以下输出,没有报告任何错误。

Running Sphinx v1.3.3
making output directory...
loading pickled environment... done
building [mo]: targets for 0 po files that are out of date
building [latex]: all documents
updating environment: 0 added, 0 changed, 0 removed
looking for now-outdated files... none found
processing MOBVRMDataTransferTool.tex... index overview sourcecodecontrol dependencies configuration references
resolving references...
writing... done
copying images... _static/VDT_Flow_Current_Overall.png
copying TeX support files...
done
build succeeded.
'make' is not recognized as an internal or external command,
operable program or batch file.

Build finished; the PDF files are in _build/latex.

目录_build/latex中没有PDF文件。

C:\virtual_env\m_vdt\m_vdt\docs\_build\latex>dir
 Volume in drive C is OS
 Volume Serial Number is 8A04-040B

 Directory of C:\virtual_env\m_vdt\m_vdt\docs\_build\latex

15/12/2015  09:04 AM    <DIR>          .
15/12/2015  09:04 AM    <DIR>          ..
15/12/2015  09:01 AM            18,775 fncychap.sty
15/12/2015  09:01 AM             2,057 Makefile
15/12/2015  09:04 AM            21,650 MOBVRMDataTransferTool.tex
15/12/2015  09:01 AM               220 python.ist
15/12/2015  09:01 AM            16,124 sphinx.sty
15/12/2015  09:01 AM             2,699 sphinxhowto.cls
15/12/2015  09:01 AM             4,101 sphinxmanual.cls
15/12/2015  09:01 AM            13,844 tabulary.sty
10/02/2015  02:39 PM            64,116 VDT_Flow_Current_Overall.png
                9 File(s)        143,586 bytes
                2 Dir(s)  343,139,319,808 bytes free

知道从哪里开始寻找吗?

您必须安装一个 make 程序(可选),例如GNU make, and a LaTeX distribution such as MiKTeX 以便生成 pdf 文件。

如果您没有安装make,您可以通过

生成pdf文件
make latex
cd _build/latex
latexmk -pdf *.tex