图片不在中心?如何解决?

图片不在中心?如何解决?
\begin{example} Trong một tam giác đều cạnh bằng $3$ cho $2012$ điểm phân biệt. Chứng minh rằng tồn tại một tam giác đều cạnh bằng $1$ chứa trong nó ít nhất $224$ điểm trong $2012$ điểm đã cho.
\begin{center}
\usetikzlibrary{arrows}
\definecolor{uququq}{rgb}{0,0,0}
\definecolor{qqqqff}{rgb}{0,0,0}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1.0cm,y=1.0cm]
\clip(-7.14,0.5) rectangle (14.26,5.70);
\draw (-1.64,1.06)-- (3.26,1.08);
\draw (-1.64,1.06)-- (0.79,5.31);
\draw (3.26,1.08)-- (0.79,5.31);
\draw (-0.83,2.48)-- (-0.01,1.07);
\draw (-0.42,3.19)-- (-0.02,3.9);
\draw (1.63,1.07)-- (-0.02,3.9);
\draw (1.62,3.9)-- (-0.01,1.07);
\draw (2.44,2.49)-- (1.63,1.07);
\draw (-0.83,2.48)-- (2.44,2.49);
\draw (-0.02,3.9)-- (1.62,3.9);
\begin{scriptsize}
\fill [color=qqqqff] (-1.64,1.06) circle (2.5pt);
\fill [color=qqqqff] (3.26,1.08) circle (2.5pt);
\fill [color=uququq] (0.79,5.31) circle (2.5pt);
\fill [color=uququq] (0.8,2.48) circle (2.5pt);
\fill [color=uququq] (-0.02,3.9) circle (2.5pt);
\fill [color=uququq] (-0.83,2.48) circle (2.5pt);
\fill [color=uququq] (1.62,3.9) circle (2.5pt);
\fill [color=uququq] (2.44,2.49) circle (2.5pt);
\fill [color=uququq] (-0.01,1.07) circle (2.5pt);
\fill [color=uququq] (1.63,1.07) circle (2.5pt);
\end{scriptsize}
\end{tikzpicture}
\end{center}
\end{example}

在此处输入图片描述

答案1

编译时,您会看到如下警告

Overfull \hbox (270.6885pt too wide) in paragraph at lines 44--45

这是由于指令

\clip(-7.14,0.5) rectangle (14.26,5.70);

GeoGebra 神秘地将其添加到其输出中。将其删除。发生的情况是,由于矩形太大,在 TeX 看来,图片比线宽宽得多,因此将这个大矩形与左边距齐平,并发出警告。

您还可以通过删除无用部分来改进代码。我还使用\[...\]而不是 ,center这样就不会出现页面在图表之前损坏的情况。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[vietnam]{babel}
\usepackage{xcolor}
\usepackage{tikz}
\usetikzlibrary{arrows}

\newtheorem{example}{Ví dụ}

\begin{document}

\begin{example}
Trong một tam giác đều cạnh bằng $3$ cho $2012$ điểm phân biệt. 
Chứng minh rằng tồn tại một tam giác đều cạnh bằng $1$ chứa trong
nó ít nhất $224$ điểm trong $2012$ điểm đã cho.
\[
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1.0cm,y=1.0cm]
\draw (-1.64,1.06)-- (3.26,1.08);
\draw (-1.64,1.06)-- (0.79,5.31);
\draw (3.26,1.08)-- (0.79,5.31);
\draw (-0.83,2.48)-- (-0.01,1.07);
\draw (-0.42,3.19)-- (-0.02,3.9);
\draw (1.63,1.07)-- (-0.02,3.9);
\draw (1.62,3.9)-- (-0.01,1.07);
\draw (2.44,2.49)-- (1.63,1.07);
\draw (-0.83,2.48)-- (2.44,2.49);
\draw (-0.02,3.9)-- (1.62,3.9);
\fill (-1.64,1.06) circle (2.5pt);
\fill (3.26,1.08) circle (2.5pt);
\fill (0.79,5.31) circle (2.5pt);
\fill (0.8,2.48) circle (2.5pt);
\fill (-0.02,3.9) circle (2.5pt);
\fill (-0.83,2.48) circle (2.5pt);
\fill (1.62,3.9) circle (2.5pt);
\fill (2.44,2.49) circle (2.5pt);
\fill (-0.01,1.07) circle (2.5pt);
\fill (1.63,1.07) circle (2.5pt);
\end{tikzpicture}
\]
\end{example}

\end{document}

在此处输入图片描述

相关内容