我正在尝试用乳胶代码生成png图像,因为我需要这个功能用于webproject。我的目标是实现[codecogs] [1]之类的东西 我不是指整个编辑器,而只是图像生成的功能。 你知道如何在网站上解决这个问题吗?
我的尝试是某种tex到图像生成器,我决定分别使用它。我认为这些非常好看。但我不能让它运行! 所以我在实施方面遇到了问题。 (有关信息:我正在使用Windows)
此外,这是正确的,这是客户端程序吗?
答案 0 :(得分:1)
我为我的LaTeX图形项目使用以下Makefile:
SOURCE = symbol
DELAY = 80
DENSITY = 300
WIDTH = 512
make:
pdflatex $(SOURCE).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
gif:
pdfcrop $(SOURCE).pdf
convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif
make clean
png:
make svg
inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png
transparentGif:
convert $(SOURCE).pdf -transparent white result.gif
make clean
svg:
make
#inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg
pdf2svg $(SOURCE).pdf $(SOURCE).svg
# Necessary, as pdf2svg does not always create valid svgs:
#inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg
pdflatex source.tex -output-format=pdf
pdf2svg source.pdf source.svg
inkscape source.svg -w source --export-png=source.png
Incscape也可以直接将PDF转换为PNG。
另一个选项是来自ImageMagick的convert