Graphics, Figures & TablesHow make double border of page?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

How make double border of page?

Post by artemff »

How make double border of page? That I can fill list usually...

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: How make double border of page?

Post by gmedina »

Hi,

I don't undestrand your question. PLease try to describe your request in more detail.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

Re: How make double border of page?

Post by artemff »

gmedina, sorry...
I want draw such border:
Attachments
dborder.JPG
dborder.JPG (7.49 KiB) Viewed 6444 times
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

How make double border of page?

Post by gmedina »

The fancybox package offers you some commands to achieve what you desire. A little example:

Code: Select all

\documentclass{article}
\usepackage{fancybox}
\usepackage{lipsum}% just to generate some text

\begin{document}

\thisfancypage{%
  \setlength{\fboxsep}{10pt}\doublebox}{}

\lipsum[1-4]

\end{document}
For more information, refer to section 9 Framing a whole page (pages 15-16) of the package documentation.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply