I've been walking around a lot before posting. But didn't really find my path.
The purpose of the document is Business Plan.
It is a very strict document indeed with codes I have to respect.
I almost have what I want concerning the layout presentation. But :
- Using makeatletter and makeatother, I can't have my foots and heads with a line. The command \renewcommand\{footrulewidth}{1pt} doesn't works anymore with it.
- I would have a way to automate the layout for chapters and sections. Currently, I have to copy the code between makeatletter and makeatother + the clear command to make it working
Code: Select all
\documentclass[12pt,a4paper,twoside]{book}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{fancyhdr}
\title{The World is mine}
\author{kevin}
\date{\today}
\newcommand{\clearemptydoublepage}{%
\newpage{\pagestyle{empty}\cleardoublepage}}
Code: Select all
\makeatletter
\renewcommand{\ps@plain}{%
\renewcommand\@oddhead{}%
\renewcommand\@evenhead{}%
\renewcommand\@oddfoot{\hfil\normalsize\textrm{}\hfil}%
\renewcommand\@evenfoot{}%
}
\makeatother
\pagestyle{plain}%
\chapter{example}
%and now I have to apply this line before each layout change :
\clearpage%
Thanks for your help,
LeHibou