Re: ClassicThesis e backref

#24466
Up
0
Down
::


Ecco qui un esempio minimalissimo in cui è presente il problema:
`
\documentclass[a4paper,11pt,twoside,openright,cleardoubleempty,titlepage,fleqn,final,pointlessnumbers]{scrreprt}

% Define the classicthesis style
\usepackage[]{classicthesis-ldpkg}
\usepackage[drafting,subfig,eulermath,eulerchapternumbers,pdfspacing]{classicthesis}

% Language
\usepackage[italian,english]{babel}
\usepackage[utf8x]{inputenc}

% Bibliography and sitography
\usepackage{natbib}
\usepackage{multibib}
\newcites{web}{{Websites}}
\usepackage{url}

\begin{document}
\myChapter{Prova}
As presented in \citep{Acikmese2007a}.

Available on \citep{web:dictionary}.

\cleardoublepage
\begingroup
\nocite{*}
\manualmark
\refstepcounter{dummy}
\markboth{\spacedlowsmallcaps{\bibname}}{\spacedlowsmallcaps{\bibname}}
\addcontentsline{toc}{chapter}{\tocEntry{\bibname}}
\bibliographystyle{alpha}
\bibliography{biblio}
\endgroup

%Sitography
\cleardoublepage
\nociteweb{*}
\manualmark
\refstepcounter{dummy}
\markboth{\spacedlowsmallcaps{Websites}}{\spacedlowsmallcaps{Websites}}
\addcontentsline{toc}{chapter}{\tocEntry{Websites}}
\bibliographystyleweb{plain}
\bibliographyweb{web}

\end{document}
`

Ecco il file biblio.bib:

`
@ARTICLE{Acikmese2007a,
author = {Acikmese, B. and Ploen. Scott R.},
title = {Convex Programming Approach to Powered Descent Guidance for Mars
Landing},
journal = {Journal of Guidance, Control and Dynamics},
year = {2007},
volume = {30},
pages = {1353-1366},
number = {5},
month = {September-October},
}
`

ed il file web.bib:

`
@MISC{web:dictionary,
title={Dictionary.com},
note={\url{http://dictionary.reference.com/}, last visit on 2007-30-10}
}
`

Come in precedenza è presente il backref nella sitografia ma non nella bibliografia.

Grazie mille per l’aiuto!

Go to top