
Para utilizar un estilo Biblatex modificado con MacTex, copié los archivos .bbx
y .cbx
en usr/local/texlive/2015/texmf-dist/tex/latex/biblatex-iest
. Pero cuando intento usarlo en mi documento con \usepackage[bibstyle=iest, citestyle=iest, isbn=false, backend=biber]{biblatex}
, no lo carga, pero produce errores como
Package biblatex Error: Style 'iest.bbx' not found. \RequireBibliographyStyle{\blx@bbxfile}
Package biblatex Error: Style 'iest.cbx' not found. \RequireCitationStyle{\blx@cbxfile}
Package xkeyval Error: `isbn' undefined in families `blx@opt@pre'. \blx@processoptions
Package biblatex Error: Command '\cite' undefined. \cite
...
Utilicé mi código en un sistema Windows TexLive, allí funcionó perfectamente después de agregar los archivos .bbx
y .cbx
a la carpeta de látex.
¡Ahora descubrí que usar CUALQUIER estilo en el \usepackage[bibstyle=iest.bbx, citestyle=iest.cbx, isbn=false, backend=biber]{biblatex}
comando resulta que no se encuentra! Eso significa: Los mismos errores ocurren cuando cambio bibstyle=iest, citestyle=iest
a, style=chicago
por ejemplo.
Obviamente me estoy perdiendo algo muy importante. ¡Por favor ayúdame a descubrir qué es!
¿Necesito definir algún camino o algo así?
Aquí hay partes de mi código:
\documentclass[pagesize = auto, paper=a4, DIV=15,BCOR=0mm, fontsize=11pt]{scrreprt}
\usepackage{todonotes}
\reversemarginpar
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[scaled]{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[bibstyle=iest, citestyle=iest, isbn=false, backend=biber]{biblatex}
\bibliography{Literatur.bib}
\usepackage[]{setspace}
\onehalfspacing
\AfterTOCHead{\singlespacing}
\KOMAoptions{DIV=last}
\begin{document}
\shorthandoff{"}
Text \cite{citekey1}.
\printbibliography
\end{document}