martes, 18 de octubre de 2016

Latex Doble bibliografia con glosarios

    \documentclass{article}
    %http://www.tug.org/TUGboat/tb30-1/tb94mori.pdf
    %http://airminded.org/2006/02/25/multiple-bibliographies-in-latex/
    %http://mirror.ox.ac.uk/sites/ctan.org/macros/latex/contrib/multibib/multibib.pdf

    \usepackage{multibib}

    \newcites{A}{My References}
    \newcites{B}{Other References}

    \begin{document}

    \nociteA{lo2005reconciling, lo2002econometric, Lo2000a}
    \renewcommand{\refname}{My References}
    \bibliographystyleA{ieeetr}
    \bibliographyA{C:/Users/me/References/references} %this is my Bib file

    \nociteB{lo1988stock, lo2009a}
    \renewcommand{\refname}{Other References}
    \bibliographystyleB{ieeetr}
    \bibliographyB{C:/Users/me/References/references}

    %0. run PDF TEXIFY, as per norm. This generates A.AUX and B.AUX in your folders.
    %1. open up windows command prompt in Windt
    %2. run:  "bibtex A"
    %3. run:  "bibtex B"
    %4. run PDF TEXIFY, as per norm.


    \end{document}
   
   
Perfil con glosarios:  "%tm".glo -t "%tm".glg -s "%tm".ist -o "%tm".gls
Perfil sin glosarios:  "%tm.idx" -t "%tm.ilg" -o "%tm.ind"

Este segmento de código es para probar varias bibliografias en un mismo archivo.  Las dos últimas líneas son para la configuración en Texniccenter para windows.

No hay comentarios:

Publicar un comentario