Re: [RISOLTO]Problema con margini

#38831
Up
0
Down
::

Prova a compilare con pdflatex (ammesso che non usi pstricks) e a vedere se hai ancora le gabbie sfalsate.

Ecco il mio preambolo attuale:

\documentclass[a4paper,12pt,twoside]{book}
\usepackage[latin1]{inputenc} %ACCENTI
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[italian]{babel} % ITALIANO
\usepackage{latexsym}
\usepackage{amsmath,amsfonts,amssymb} % MATEMATICA
\usepackage{graphicx} % INSERIMENTO FIGURE
\usepackage{verbatim} % A CHE SERVE?
\usepackage{microtype}
\usepackage{indentfirst}
\usepackage{wrapfig}
\usepackage{xcolor} % COLORI
\usepackage{frcursive}
\usepackage{cancel} % SIMBOLO MIGLIORE DI SEMPLIFICAZIONE NELLE FORMULE MATEMATICHE
\usepackage{color} % SCRIVERE COLORATO
\usepackage{fancybox}
\usepackage{numprint}
\usepackage[a4paper,top=4cm,bottom=4cm,left=4.5cm,right=4.5cm,headheight=15pt,bindingoffset=5mm]{geometry}
\usepackage{caption}
\captionsetup{labelformat=empty,textfont=sl}
\usepackage{natbib} % BIBLIOGRAFIA
\usepackage[resetlabels]{multibib} % BIBLIOGRAFIA
\newcites{web}{Siti Web consultati} % SITOGRAFIA
\usepackage{url} % SITI
\usepackage{amsthm}
\theoremstyle{plain} %STILE PLAIN PER I TEOREMI
\swapnumbers
\newtheorem{teo}{Teorema}[section]
\newtheorem{cor}[teo]{Corollario}
\newtheorem{prop}[teo]{Proposizione}
\newtheorem{lemma}[teo]{Lemma}
\newtheorem{defin}[teo]{Definizione}
\newtheorem{es}[teo]{Esercizio}
\newtheorem{ese}[teo]{Esempio}
\newtheorem{cost}[teo]{Costruzione}
\newtheorem{oss}[teo]{Osservazione}
\newenvironment{svolg}{\trivlist\item[]\emph{Svolgimento \ }\ignorespaces}%
{\endtrivlist}

\newcommand{\fncyblank}{\fancyhf{}}
\newenvironment{abstract}%
{\fncyblank \null \vfill \begin{center}%
\bfseries \end{center}}%
{\vfill \null }

\setlength{\unitlength}{2em}
\newcommand{\R}{\ensuremath{\mathbb{R}}}
\newcommand{\Q}{\ensuremath{\mathbb{Q}}}
\newcommand{\Z}{\ensuremath{\mathbb{Z}}}
\newcommand{\F}{\ensuremath{\mathbb{F}}}
\newcommand{\C}{\ensuremath{\mathbb{C}}}
\newcommand{\N}{\ensuremath{\mathbb{N}}}
\newcommand{\PP}{\ensuremath{\mathbb{P}}}
\renewcommand{\leq}{\leqslant}
\renewcommand{\geq}{\geqslant}
\definecolor{lightblue}{rgb}{0.1,124,4}

\newcommand{\asterismo}{\smash{%
\raisebox{-.4ex}{%
\setlength{\tabcolsep}{-.4pt}%
\begin{tabular}{@{}cc@{}}%
\multicolumn2c*\\[-1.5ex]*&*%
\end{tabular}}}}

\newenvironment{changemargin}[2]{%
\begin{list}{}{%
\setlength{\leftmargin}{#1}%
\setlength{\rightmargin}{#2}%
}%
\item[]}{
\end{list}}

\newenvironment{sistema}%
{\left\lbrace \begin{array}{@{}l@{}}}%
{\end{array}\right.}

\usepackage{fancyhdr}
\pagestyle{fancy}

\begin{document}

\addcontentsline{toc}{chapter}{Bibliografia}
\nocite{*}
\bibliographystyle{unsrt}
\bibliography{Bibliografia}
\cleardoublepage
\addcontentsline{toc}{chapter}{Siti web consultati}
\nociteweb{*}
\bibliographystyleweb{plain}
\bibliographyweb{web}

\end{document}

Incontro i seguenti problemi ancora:

1) 😥 Non riesco a capire perchè continuo ad avere le gabbie leggermente sfalsate…
2) Nel produrre un elenco puntato di teoremi (con l’ambiente itemize), ottengo il bullet su una riga e il titoletto TEOREMA sulla riga successiva; vorrei avere il titoletto affianco al punto.
3) La bibliografia non risulta nell’ordine in cui l’ho scritta (c’è un modo alternativo per ordinare lessicograficamente per cognome degli autori? Ad esempio N. Koblitz dopo M. Baldoni?)

Grazie!

Go to top