I'm after a way to draw an oval that is in the centre of my page and touches all sides of the A4 page. I need it to happen many times as I'm drawing a complicated graphic.
So far I have been hindered by TikZ picture drawing things with default left hand margins and odd positioning offsets and the documentclass apparently putting in pargins "left, right, and centre". I've been at this for 12 hours and gotten nowhere so I thought I'd ask for help.
A second question worth answering is when I type in Texmakerx (remembering I'm using pdfLaTeX) something like \documentclass{} <- when I type these curly brackets, how can I select from a drop down, all appropriate entries -- or at least find out what the limitations to them are?
The following code draws a circle (in a box) with a border I don't want inside that box, adjusted from the left by a distance I don't want. I haven't even begun to investigate what happens near the other borders.
\documentclass[11pt]{article}
\pagestyle{empty}
\usepackage{tikz}
\usepackage{color}
\usepackage[top=0cm,right=0cm,bottom=0cm,left=0cm]{geometry}
\title{Practice}
\begin{document}
\fbox{
\begin{tikzpicture}[node distance=0cm, auto, >=stealth]
\filldraw [gray] (0,0) circle (2pt);
\end{tikzpicture}
}
\end{document}
tikzpagenodespackage. – Claudio Fiandrino Apr 10 '13 at 12:15