使用 pdflatex 生成 Yii 2 中文权威指南 PDF

18-12-02 16:46 22937 0 技术

问题来源

https://github.com/yiisoft-contrib/yiiframework.com/issues/142 https://en.wikibooks.org/wiki/LaTeX/Internationalization#Chinese

解决方案

https://github.com/yiisoft-contrib/yiiframework.com/blob/master/commands/GuideController.php#L85

修改为:

// https://en.wikibooks.org/wiki/LaTeX/Internationalization#Chinese
// TODO this does not work yet. See https://github.com/yiisoft-contrib/yiiframework.com/issues/142
file_put_contents("$pdfTarget/main.tex", str_replace(['\usepackage[british]{babel}', '\begin{document}', '\end{document}'], ['\usepackage{CJKutf8}', '\begin{document}' . PHP_EOL . '\begin{CJK}{UTF8}{gbsn}', '\end{CJK}' . PHP_EOL . '\end{document}'], file_get_contents("$pdfTarget/main.tex")));

{gbsn} 是“宋体”,所以前提是服务器已经安装中文的“宋体”字体。

请登录后发表评论 点击登录

文章归档

文章日历

2024 年 04 月
29 01 02 03 04 05 06
07 08 09 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
29 30 01 02 03 04 05

文章标签

最新评论

友情链接