私はtikzpictureに問題があります。私はラテックスで私のCVを作ったが、一つはうまく動作していない。スキルグラフには複数のエントリーがあります。ここにコードがあります。 ラテックスTikzpictures複数のエントリー
\documentclass[]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{center}
\begin{tikzpicture}[thick,scale=0.8, every node/.style={scale=0.8},every node/.style={font=\sffamily}]
\begin{axis}[title = \textbf{Sprachen},
xbar,
y axis line style = { opacity = 0 },
axis x line = none,
tickwidth = 0pt,
%enlarge y limits={abs=1cm},
enlarge x limits = 0.02,
symbolic y coords = { Französisch, Englisch, Deutsch},
%nodes near coords,
xmin=0,
xmax=1,
]
\addplot coordinates {
(1,Deutsch)
(0.65,Englisch)
(0.3,Französisch)
};
%\legend{Topics}
\end{axis}
\node[text width=3cm] at (1.5,-0.5)
{Grundkennt.};
\node[text width=3cm] at (5.25,-0.5)
{gut};
\node[text width=3cm] at (7.4,-0.5)
{sehr gut};
\draw (2.5,0.1) -- (2.5, 5.5);
\draw (5,0.1) -- (5, 5.5);
\end{tikzpicture}
\end{center}
\end{document}
私はあなたのいずれかが私を助けることができる願っています。
Greetz道
これは、LaTeXに関する質問のために、専用のスタック交換サイトで尋ねるべきです:http://tex.stackexchange.com – Adriaan
それでは、明日それを行います。どうもありがとうございました。 – Michael