从 Geogebra 导出 TikZ

从 Geogebra 导出 TikZ

当我从 GeoGebra 导出 TikZ 图形时,我遇到了一个问题。这是我的 GeoGebra 图形。

在此处输入图片描述

当我将其导出到 TikZ 时,我收到以下代码:

\documentclass[10pt]{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1.0cm,y=1.0cm]
\clip(-1.2,-1.06) rectangle (7.24,6.1);
\draw [line width=2.pt] (2.,5.)-- (1.,1.);
\draw [line width=2.pt] (1.,1.)-- (4.,1.);
\draw [line width=2.pt] (4.,1.)-- (2.,5.);
\draw [->,line width=2.pt] (-1.,0.) -- (7.,0.);
\draw [->,line width=2.pt] (0.,-1.) -- (0.,6.);
\draw (-0.48,6.04) node[anchor=north west] {$y$};
\draw (6.52,0.82) node[anchor=north west] {$x$};
\draw [fill=black] (1.,1.) circle (2.5pt);
\draw[color=black] (0.62,1.15) node {$A$};
\draw [fill=black] (4.,1.) circle (2.5pt);
\draw[color=black] (4.28,1.11) node {$B$};
\draw [fill=black] (2.,5.) circle (2.5pt);
\draw[color=black] (1.68,5.27) node {$C$};
\end{tikzpicture}
\end{document}

编译此代码得到以下图表: 在此处输入图片描述

问题是所有标题都移动了,如果比较两个图,唯一的区别是标题位置。现在我必须在 LaTeX 代码中更改标题的坐标。有没有更快的方法?我的图有 20-25 个标题,我想避免进行这种手动调整。

相关内容