Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Hello Herbert, Thank you very much for your instructions to modify the miniscript: /usr/bin/bibtex $1"1.aux" /usr/bin/bibtex $1"2.aux" /usr/bin/bibtex $1"3.aux" /usr/bin/bibtex $1"4.aux" ... usw Now the script works excellent and everything is fine -- bibtopic works with LyX !!! I

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Herbert Voss
"Jürgen Spitzmüller" wrote: So the miniscript to use bibtopic with LyX (saved as "bibtex" in ~/bin) looks like this (for four bibliography topics): #!/bin/bash /usr/bin/bibtex $1%% -- starts bibtex file /usr/bin/bibtex $1"1"%% -- starts bibtex file1

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Herbert Voss wrote: try the following script. it looks for all files with fileNR.aux and starts bibtex, so you don't have to know how many bib-files you have. #!/bin/bash /usr/bin/bibtex $1 # -- starts bibtex file.aux NEXT=1 FILE=$1$NEXT while [ -a $FILE.aux ]; do

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Hello Herbert, Thank you very much for your instructions to modify the miniscript: /usr/bin/bibtex $1"1.aux" /usr/bin/bibtex $1"2.aux" /usr/bin/bibtex $1"3.aux" /usr/bin/bibtex $1"4.aux" ... usw Now the script works excellent and everything is fine -- bibtopic works with LyX !!! I

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Herbert Voss
"Jürgen Spitzmüller" wrote: So the miniscript to use bibtopic with LyX (saved as "bibtex" in ~/bin) looks like this (for four bibliography topics): #!/bin/bash /usr/bin/bibtex $1%% -- starts bibtex file /usr/bin/bibtex $1"1"%% -- starts bibtex file1

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Herbert Voss wrote: try the following script. it looks for all files with fileNR.aux and starts bibtex, so you don't have to know how many bib-files you have. #!/bin/bash /usr/bin/bibtex $1 # -- starts bibtex file.aux NEXT=1 FILE=$1$NEXT while [ -a $FILE.aux ]; do

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Hello Herbert, Thank you very much for your instructions to modify the miniscript: > /usr/bin/bibtex $1"1.aux" > /usr/bin/bibtex $1"2.aux" > /usr/bin/bibtex $1"3.aux" > /usr/bin/bibtex $1"4.aux" > ... usw Now the script works excellent and everything is fine -- bibtopic works with LyX !!! I

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Herbert Voss
"Jürgen Spitzmüller" wrote: > So the miniscript to use bibtopic with LyX (saved as "bibtex" in ~/bin) looks > like this (for four bibliography topics): > > #!/bin/bash > /usr/bin/bibtex $1%% -- starts bibtex > /usr/bin/bibtex $1"1"%% -- starts bibtex >

Re: Using bibtopic.sty with LyX?

2000-10-16 Thread Jürgen Spitzmüller
Herbert Voss wrote: > try the following script. it looks for all files with fileNR.aux > and starts bibtex, so you don't have to know how many bib-files > you have. > > > #!/bin/bash > /usr/bin/bibtex $1 # -- starts bibtex > NEXT=1 > FILE=$1$NEXT > while [ -a $FILE.aux ]; do