I have a new installation of
tikz (apt-get install pgf) on Debian. I have been using Latex for a couple of weeks and wanted to explore tikZ graphics. I have started out with some examples from tutorials. Whenever I run tikZ the pictures either do not appear or appear as a dot. On some cases where there are labels with the picture, the labels will all be bunched up around one spot on the page.
The following code produces the words "We are working on" with a dot roughly one inch to the right of the text.
Code: Select all
\documentclass{article} % say
\usepackage{tikz}
\begin{document}
We are working on
\begin{tikzpicture}
\draw (-1.5,0) -- (1.5,0);
\draw (0,-1.5) -- (0,1.5);
\end{tikzpicture}.
\end{document}
Any help is appreciated. I have been searching the web for solutions to this for several days and have found nothing.