我試圖使用pandoc生成一個帶有一些乳膠的降價文件的html幻燈片。獲取與pandoc和mathjax的一些問題
該文件是here at github。
如果我運行下面的命令pandoc:
pandoc -s -t s5 --mathjax apresentacao.md -o index.html
數學是完全由MathJax顯示出來,但我只得到一個網頁的所有幻燈片,也沒有幻燈片功能。
如果我運行follwing命令:
pandoc -s --self-contained -t s5 --mathjax apresentacao.md -o index.html
我得到一個完全沒有問題的介紹,但MathJax加載失敗。生成的html文件(難以忍受)充滿了二進制文件,用於加載的圖像和JavaScript庫。但它似乎沒有正確納入MathJax。
你們有這個問題嗎?有沒有簡單的方法來解決這個問題?
我使用以下pandoc版本:
$ pandoc --version
pandoc 1.11.1
Compiled with citeproc-hs 0.3.8, texmath 0.6.1.3, highlighting-kate 0.5.3.8.
Syntax highlighting is supported for the following languages:
actionscript, ada, apache, asn1, asp, awk, bash, bibtex, boo, c, changelog,
clojure, cmake, coffee, coldfusion, commonlisp, cpp, cs, css, curry, d,
diff, djangotemplate, doxygen, doxygenlua, dtd, eiffel, email, erlang,
fortran, fsharp, gnuassembler, go, haskell, haxe, html, ini, java, javadoc,
javascript, json, jsp, julia, latex, lex, literatecurry, literatehaskell,
lua, makefile, mandoc, matlab, maxima, metafont, mips, modula2, modula3,
monobasic, nasm, noweb, objectivec, objectivecpp, ocaml, octave, pascal,
perl, php, pike, postscript, prolog, python, r, relaxngcompact, rhtml, ruby,
rust, scala, scheme, sci, sed, sgml, sql, sqlmysql, sqlpostgresql, tcl,
texinfo, verilog, vhdl, xml, xorg, xslt, xul, yacc, yaml
Default user data directory: /home/calsaverini/.pandoc
Copyright (C) 2006-2013 John MacFarlane
Web: http://johnmacfarlane.net/pandoc
This is free software; see the source for copying conditions. There is no
warranty, not even for merchantability or fitness for a particular purpose.
我假設你打算在第二個命令行中加入'--self-contained'。見https://github.com/jgm/pandoc/issues/682 – 2013-04-25 05:45:49
好的指出,我會解決它。 – 2013-04-25 17:27:55