TikZ 中的标签全部位于 tikzpicture 的左下角

TikZ 中的标签全部位于 tikzpicture 的左下角

我对 Ti 中的标签有疑问Z.我的标签都位于的左下角tikzpicture

\documentclass{birkjour}
%\documentclass[12pt]{article}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{calc,positioning}
%\usepackage{a4kopka}
%\pagestyle{empty} \topmargin-18mm \textheight265mm \textwidth166mm
%\parindent0pt
%\oddsidemargin-5mm
\usepackage{geometry}
\geometry{top=18mm}
\newcommand{\R}{\mathbb{R}}
\newcommand{\C}{\mathbb{C}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\F}{\mathbb{F}}
%\newcommand{\H}{\mathbb{H}}
\newcommand{\K}{\mathbb{K}}
\newcommand{\T}{\mathbb{T}}
\usepackage[latin1]{inputenc}
\newcommand{\rb}[1]{\raisebox{1.5ex}[-1.5ex]{#1}}
\newcommand{\dis}{\displaystyle}
\newcommand{\cal}{\mathcal}

\newtheorem{thm}{Theorem}[section]
\newtheorem{corrollary}[thm]{Corollary}
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{proposition}[thm]{Proposition}
\theoremstyle{definition}
\newtheorem{definition}[thm]{Definition}
\newtheorem{convention}[thm]{Convention}
%\theoremstyle{remark}
\newtheorem{remark}[thm]{Remark}
\newtheorem{example}[thm]{Example}

\newtheorem*{ex}{Example}
\numberwithin{equation}{section}


%wie vom Journal der Geometrie gefordert:
\setlength{\parskip}{1.3ex plus0.3ex minus0.3ex}
\setlength{\parindent}{0cm}
%ENDE wie vom Journal der Geometrie gefordert

\usepackage{fancyhdr}

%\input pagenumbers

    \begin{document}
%hier Figure1
\centering
\begin{figure}
\begin{tikzpicture}[scale=1.5]
  \coordinate (a_0) at (1,0);
  \coordinate (b_0) at (6,0);
  \coordinate (u) at (4,0);
  \coordinate (z) at (6,2);
  \coordinate [label=above:$s(u)$] (u')  at (5,1);
  \coordinate (c_0) at (6,1.25);

  \draw (a_0) -- (b_0);
  \draw (a_0) -- (c_0);
  \draw (b_0) -- (z);
  \draw (u) -- (z);
\end{tikzpicture}
\end{figure}
\end{document}

有人能告诉我标签 s(u) 有什么问题吗?

谢谢。

“s(u)”的定位错误

相关内容