Geogebra 导入 latex 不起作用

Geogebra 导入 latex 不起作用

我创建了这个文件:

\documentclass[10pt]{article}

\usepackage{pstricks-add}

\pagestyle{empty}

\begin{document}

\newrgbcolor{zzttqq}{0.6 0.2 0}

\psset{xunit=1.0cm,yunit=1.0cm,algebraic=true,dotstyle=o,dotsize=3pt 
0,linewidth=0.8pt,arrowsize=3pt 2,arrowinset=0.25}

\begin{pspicture*}(-4.3,-2.6)(7.06,6.3)

\psaxes[labelFontSize=\scriptstyle,xAxis=true,yAxis=true,Dx=1,Dy=1,ticksize=-2pt 0,subticks=2]{->}(0,0)(-4.3,-2.6)(7.06,6.3)

\pspolygon[linecolor=zzttqq,fillcolor=zzttqq,fillstyle=solid,opacity=0.1](1,2)(3,2)(3,4)(1,4)

\psline[linecolor=zzttqq](1,2)(3,2)

\psline[linecolor=zzttqq](3,2)(3,4)

\psline[linecolor=zzttqq](3,4)(1,4)

\psline[linecolor=zzttqq](1,4)(1,2)

\begin{scriptsize}

\psdots[dotstyle=*,linecolor=blue](1,2)

\rput[bl](1.08,2.12){\blue{$A$}}

\psdots[dotstyle=*,linecolor=blue](3,2)

\rput[bl](3.08,2.12){\blue{$B$}}

\psdots[dotstyle=*,linecolor=blue](3,4)

\rput[bl](3.08,4.12){\blue{$C$}}

\psdots[dotstyle=*,linecolor=blue](1,4)

\rput[bl](1.08,4.12){\blue{$D$}}

\end{scriptsize}

\end{pspicture*}
\end{document}

他给了我 58 个错误。我真的不知道为什么会出现这些错误。也许是颜色有问题。我需要包含 tikz 包还是其他什么?

答案1

您有两个选择:

  1. 使用latex而不是pdflatex进行编译。如果您使用图形编辑器(例如 TeXMaker、TeXShop、TeXWorks、TeXnicCenter 等),则必须找到按钮来更改此设置。在终端中,您只需输入latex <yourfilenamehere>.texlatex将输出一个.dvi文件,然后您必须将其转换为 ,.ps然后转换为.pdf。(latex -> dvips -> ps2pdf

  2. 告诉 GeoGebra 导出到 TikZ。这将直接编译为 PDF。

相关内容