
No estoy muy seguro de cómo explicar mi problema. Por favor dímelo si necesitas más información. Mi documento es muy grande y tiene muchas configuraciones. Estoy usando TeXnicCenter con BibTex-Compiler 2.8. Cuando estoy construyendo el PDF (LaTeX->DviPS->PS2PDF), obtengo esto:
La entrada BibTex:
@incollection{Agrawal.2008,
author = {Agrawal, Motilal and Konolige, Kurt and Blas, Morten Rufus},
title = {{C}en{S}ur{E}: {C}enter {S}urround {E}xtremas for {R}ealtime {F}eature {D}etection and {M}atching},
pages = {102--115},
volume = {5305},
publisher = {Springer},
isbn = {978-3-540-88692-1},
series = {Lecture Notes in Computer Science},
editor = {Forsyth, David and Torr, Philip and Zisserman, Andrew},
booktitle = {{C}omputer {V}ision -- {E}{C}{C}{V} 2008},
year = {2008},
address = {Berlin und Heidelberg},
doi = {10.1007/978-3-540-88693-8\_8}
}
¿Cuál es mi problema? El DOI se muestra dos veces. Y solo quiero la última notación (DOI.10.1007...). Probé el paquete doi pero esto causa muchos problemas con mis archivos tex. ¿Me podría ayudar? Intentaré dar más información.
Ejemplo mínimo:
\documentclass[a4paper,11pt]{scrreprt}
\usepackage[komastyle,automark]{scrpage2}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage[a4paper,left=2.5cm,top=2.5cm,bottom=2.5cm,includeheadfoot,width=16cm]{geometry}
\bibliographystyle{alphadin2}
\usepackage[hyphens]{url}
\begin{document}
\chapter{TEST}
This is a test \cite{Agrawal.2008}.
\newpage
\addcontentsline{toc}{chapter}{Bib}
\bibliography{minimalbib} %Add the entry i this file
\end{document}
Respuesta1
Este comportamiento es un error de alphadin.bst
. En una pregunta anterior en comp.tex.texDOI en alfadina(alemán) se muestra el método para resolver el problema. Sin embargo, cada tipo de entrada debe redefinirse.
En mi opinión, el paquete biblatex
es una muy buena alternativa.