Re: running head della bibliografia (con chapterbib)

#19081
Up
0
Down
::


Ho lo stesso problema: voglio usare bibunits e avere delle testatine decenti
Uso MikTex 2.6.
`

\documentclass[a4paper,oneside,12pt]{book}
%linguaggio
\usepackage[italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\hyphenation{Oberkommando}

%delimita foglio con GEOMETRY
\usepackage[bindingoffset=1.5cm,nomarginpar,vdivide={3cm,*,3cm},outer={2cm}]{geometry}

%indice
\usepackage{makeidx}
\usepackage{hyperref}
\setcounter{secnumdepth}{3} % per numerare anche \subsubsection
\setcounter{tocdepth}{3} % per farle apparire nell'indice
\usepackage{nomentbl}
\renewcommand{\nomname}{Lista dei Simboli}
\renewcommand{\nomAname}{Lettere Latine}
\renewcommand{\nomGname}{Lettere Greche}
\renewcommand{\nomXname}{Apici}
\renewcommand{\nomZname}{Pedici}
\makenomenclature

%tabelle
\usepackage{booktabs}
\usepackage[font={small,sc},format=hang,justification=raggedright]{caption}

%Impaginazione
\usepackage{indentfirst}
\usepackage[Glenn]{fncychap}
\frenchspacing
\usepackage[onehalfspacing]{setspace}

%elementi float
\usepackage{graphicx}
\usepackage{floatflt}
\usepackage{float}
\usepackage{amsmath}

%bibliografia
\usepackage{url}
\usepackage[sectionbib]{bibunits}
\usepackage[sort,sectionbib,square]{natbib}
\let\originalthebibliography\thebibliography
\renewcommand{\thebibliography}{%
\addcontentsline{toc}{section}{\protect\numberline{}\refname}%
\originalthebibliography}

%Impaginazione
\usepackage{fancyhdr,lipsum}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[L]{\bfseries\footnotesize\nouppercase{\rightmark}}
\fancyhead[R]{\bfseries\footnotesize\nouppercase{\leftmark}}
\fancyfoot[R]{\thepage}
\setlength{\headheight}{15pt}

\fancypagestyle{vuota}{
\fancyhf{} % clear all header and footer fields
\fancyfoot[R]{\bfseries \thepage} % except right footer
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}

\begin {document}
\bibliographyunit[\chapter]
\frontmatter
\tableofcontents
\listoffigures
\listoftables
\printnomenclature
\mainmatter
\input{capitolo1.tex}
\end{document}
`

E fin qui spero niente di male…

`
\chapter{I propellenti}
\begin{bibunit}
…..
\renewcommand*{\bibname}{Riferimenti bibliografici}
\markright{Riferimenti bibliografici}{Riferimenti bibliografici}%
\putbib[biblio]
\end{bibunit}
`
Il tutto compilato col file compila.bat
`
pdflatex tesi
makeindex -s nomentbl.ist -o tesi.nls tesi.nlo
bibtex bu1
pdflatex tesi
pdflatex tesi
`

Tutto bene fino quando all’ultima compilazione si impianta e si blocca su bu1.bbl e non finisce la compilazione, così chiuso la finestra DOS. Il file bu1.bbl comunque lo crea.
Ho provato a eliminare natbib: la compilazione avviene bene ma le testatine (headings?) no..perde il nome del capitolo.
Ho provato a compilare una volta di meno: bene le testatine, ma non trova i riferimenti.
Cosa mi invento?

Go to top