Antonio Díaz wrote:
> Im sorry Jürgen, I send here the correct file…

OK, let's check a few things:

* What does "kpsewhich Informe.bib" and "kpsewhich Informe2.bib" on the 
command line reveal?

* please replace bibtexall with the attached version

* now if you run LyX from the console and try to view PDF, which messages do 
you get on the cosole?

* does the LaTeX log file contain any biblatex warning messages?

Jürgen
#!/usr/bin/env python
# -*- coding: iso-8859-15 -*-

# \author Juergen Spitzmueller

# This file is a wrapper on bibtex to let LyX
# process every aux file in the temp directory
# this is needed if you use chapterbib with LyX.
# Place this file somewhere in your PATH , then
# open Tools->Preferences->LaTeX in LyX and change
# the "bibtex command" from "bibtex" to "bibtexall".

import sys, os
for filename in os.listdir("."):
	if filename.endswith('.aux'):
		f = os.path.splitext(filename)[0]
		print "bibtexall: running bibtex on " + f
		os.popen('bibtex ' + f)

Reply via email to