- 积分
- 2085
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-10-25
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 dragonphy 于 2021-3-23 11:51 编辑
如何將 LaTeX 轉換成 docx 呢?Pandoc 是個不錯的選擇XDDD
官網介紹 (下載):https://pandoc.org/index.html
https://github.com/jgm/pandoc/wiki/Pandoc-Filters
https://github.com/lierdakil/pandoc-crossref/releases
案例示範:
pandoc -s 路徑\轉換前檔名.tex -o 路徑\轉換後檔名.docx --csl=路徑\期刊的引用樣式.csl --bibliography=路徑\你的文獻資料庫.bib --filter 路徑\pandoc-crossref --filter pandoc-eqnos --filter pandoc-citeproc --toc -V [自定選項,例如字體]
[註解]:
(1) 我還沒破解\autoref{}和\sfrac{}{}應該如何轉換
(2) \textdegree \textcelsius 等等 無法轉換
(3) 以上是因為\begin{document}之前的package和設定無法被pandoc使用。我嘗試過 (--template=) 、.yaml 和 (--include-in-header=) 但是仍就無法實現調用package。
(4) filter是input和output之間的轉換器可到github尋找。
|
|