Re: Pacchetto Layaureo e pdf

#3671
Up
0
Down
::


`
\documentclass[a4paper, 12pt, twoside]{book}

\usepackage[rilegatura=.8cm]{layaureo} %per usare un layout per il formato a 4 in rapporto aureo
\usepackage{longtable} %permette di realizzare tabelle su piu' pagine
\usepackage[latin1]{inputenc} %permette di utilizzare i caratteri ISO-8859-1 (caratteri accentati)
\usepackage[italian]{babel} %lingua italiana
\usepackage[T1]{fontenc} %codifica dei caratteri T1
\usepackage{listings} %per inserire listati
\usepackage[dvips]{graphicx} %per inserire figure eps
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{fancyhdr}
\usepackage{mathrsfs}
\usepackage[dvips]{rotating}
\usepackage[Sonny]{fncychap}
\usepackage[]{subfigure} %per mettere piu' figure affiancate
%\usepackage[svgnames]{xcolor}
\usepackage[format=default, labelformat=simple, labelsep=period, font={footnotesize,sf, it}, labelfont=bf, width=.75\textwidth]{caption}[2004/05/16]
%definizione del formato del testo per le caption

\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{} \fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\footnotesize{\bfseries\rightmark}}
\fancyhead[RE]{\footnotesize{\bfseries\leftmark}}
%\fancyhead[LO,RE]{\footnotesize{\nouppercase{\rightmark}}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\setlength{\headheight}{15pt}
\addtolength{\skip\footins}{1cm}
\fancypagestyle{plain}{\fancyhead{}\renewcommand{\headrulewidth}{0pt}}

\title{Pinocchio}
\author{Carlo Collodi}

\floatname{algorithm}{Algoritmo}
\floatname{Listing}{Listato}

\begin{document}
\setcounter{tocdepth}{4} %include anche le subsubsection nell'indice
\setcounter{secnumdepth}{4} %numera anche le subsubsection

\begin{titlepage}
\maketitle
\end{titlepage}
\thispagestyle{empty}

\frontmatter
\tableofcontents

\mainmatter
[ ….]

%Bibliografia
\addcontentsline{toc}{chapter}{Bibliografia}
\bibliographystyle{plain}
\nocite{*}
\bibliography{bibliografia}
\end{document}[code]`[/code]

Go to top