Re: Usare Biber con Emacs e RefTeX con più files bibliografici

#78203
admin
Amministratore del forum
    Up
    0
    Down
    ::


    Ho provato a riprodurre la situazione: non riscontro nessun problema. Ricordo che lavoro su Windows 7, Emacs 24.1.1, AUCTeX 11.86, RefTeX 4.31 e TeX Live 2012 appena aggiornata.

    Nel file .init.el ho scritto

    `
    (setq reftex-bibliography-commands (quote (“addbibresource” “bibliography”)))
    (setq reftex-default-bibliography
    (quote
    (“C:/Users/Orlando/texmf/bibtex/bib/local/biblio_aerodinamica.bib”
    “C:/Users/Orlando/texmf/bibtex/bib/local/biblio_strutture.bib”
    )
    )
    )`
    dove biblio_aerodinamica.bib contiene

    `@BOOK{aero:ashley:land,
    title = {Aerodynamics of wings and bodies},
    author = {Ashley, H. and Landahl, M.},
    year = {1985},
    publisher = {Dover Publications}
    }

    @BOOK{aero:niu:prova,
    title = {Titolo di prova},
    publisher = {Conmilit Press Ltd.},
    year = {1998},
    author = {Michael C. Y. Niu}
    }`
    mentre biblio_strutture.bib contiene

    `@BOOK{strutture:bruhn,
    title = {Analysis and design of flight vehicle structures},
    publisher = {Tri-State Offset Company},
    year = {1973},
    author = {{E. F. Bruhn}}
    }

    @BOOK{strutture:niu:asd,
    title = {Airframe structural design},
    publisher = {Conmilit Press Ltd.},
    year = {1988},
    author = {Michael C. Y. Niu}
    }

    @BOOK{strutture:niu:asaas,
    title = {Airframe stress analysis and sizing},
    author = {Michael C. Y. Niu},
    year = {1998},
    publisher = {Conmilit Press}
    }

    @BOOK{strutture:megson:aircraft,
    title = {Aircraft structures for engineering students},
    author = {Megson, T.H.G.},
    year = {2007},
    publisher = {Butterworth-Heinemann}
    }`
    Con il seguente documento

    `\documentclass{article}

    \usepackage[backend=biber]{biblatex}
    \addbibresource{biblio_strutture.bib}
    \addbibresource{biblio_aerodinamica.bib}

    \begin{document}

    \nocite{*}
    \printbibliography

    \end{document}`
    se scrivo [tt]C-c [ Niu[/tt] mi vengono proposti i record dell’uno e dell’altro con autore Niu.

    Hai eseguito bene le istruzioni della documentazione di biber?

    Ciao
    Orlando

    [attachment=440]RefTeX.PNG[/attachment]

    Attachments:
    You must be logged in to view attached files.

    Go to top