在生成 pdf 之前使用 texclipse 自动生成 pstricks 图形

在生成 pdf 之前使用 texclipse 自动生成 pstricks 图形

当使用 eclipse 和 pdflatex 时,我希望它自动创建 pstricks 图像。经典方法(不使用 eclipse 或 texlipse)是:

latex test.tex
dvips -o test-pics.ps test.dvi
ps2pdf test-pics.ps

然后就可以使用 pdflatex。我怎样才能让 texlipse 自动帮我完成这个任务?

答案1

  • 你可以pdflatex -shell-escape <file>使用包运行auto-pst-pdf
  • 或运行pst2pdf <file>以动态创建所有图像为 png 或 pdf 或...
  • 您可以运行xelatex,而pdflatex无需任何额外的包或额外的转换

相关内容