I need a border style that has a nice appearance. I've found something like this:
\documentclass{book}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing}
\usepackage{lipsum}% dummy text
\begin{document}
\begin{titlepage}
\centering
\begin{tikzpicture}[overlay,remember picture]
\draw [line width=1mm,decorate%,decoration={snake
%,segment length=<length>,amplitude=<length>
% }
]
($ (current page.north west) + (0.3cm,-0.3cm) $)
rectangle
($ (current page.south east) + (-0.3cm,0.3cm) $);
\end{tikzpicture}
\huge Ejemplo de margenes
\end{titlepage}
\end{document}
But it looks neither beautiful nor formal. Perhaps something like this:
\documentclass{article}
\usepackage{fancybox}% http://ctan.org/pkg/fancybox
\usepackage{lipsum}% http://ctan.org/pkg/fancybox
\begin{document}
\thisfancyput(3.25in,-4.5in){%
\setlength{\unitlength}{1in}\fancyoval(7,9.5)}%
\lipsum[1-20]
\end{document}
But I don't know how to set the margin to the complete document.

