Re: biblatex-chicago

2011-08-15 Thread Louis Turk
Hi Julio,

On 08/14/2011 11:30 PM, Julio Rojas wrote:
 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 . 
If in the preamble I use

\usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}


I get this error message:


Package keyval Error: citestyle undefined.

...liographyOptions\expandafter{\cms@options}


 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}
If I use:

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

\renewcommand\citep{\autocite}

\bibliography{/home/lat/notes-test}


only the bibtexkey prints, not the text it points to.


 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.
As you can see above, I'm using the correct full path to the
bibliography file, but still no success.

I suspect that we are getting close though. Thanks for the help!

Louis

 Try this and let me know. Regards.
 -
 Julio Rojas



Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
BTW, as I don't have biber I have to remove most of your references
and only left the first one, which works perfectly with bibtex.

Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas




Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Rethinking on everything, I think the problem is biber. It seems that
it cannot process your bibtex file, which is why the citekey, not the
properly formatted reference, appears. You need to check both, your
bibtex file as well as your biber installation. BTW, why biber?
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas jcredbe...@gmail.com wrote:
 BTW, as I don't have biber I have to remove most of your references
 and only left the first one, which works perfectly with bibtex.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas





Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Confirmed, at least from my side. The problem lies in your bibtex
file, which biber cannot process. I believe it has some characters,
that even if UTF-8 encoded, are not understood by biber. For example,
in one reference:

@INBOOK{ashbrook:brain,
  chapter = {7},
  title = {The Frontal Lobes, Intending, and a Purposeful God},
  publisher = {Pilgrim Press},
  year = {1997},
  author = {Ashbrook, James~B. and Albright, Carol Rausch},
  annote = {A typical InBook entry, identified by title and also, in this case,
by chapter number rather than page range.},
  booktitle = {The Humanizing Brain},
  location = {Cleveland, OH},
  shorttitle = {The Frontal Lobes}
}

You have a ~ in author. I removed this character and retried and it
seems to work with biber. Try yourself and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:53 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Rethinking on everything, I think the problem is biber. It seems that
 it cannot process your bibtex file, which is why the citekey, not the
 properly formatted reference, appears. You need to check both, your
 bibtex file as well as your biber installation. BTW, why biber?
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas jcredbe...@gmail.com wrote:
 BTW, as I don't have biber I have to remove most of your references
 and only left the first one, which works perfectly with bibtex.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas






Re: biblatex-chicago

2011-08-15 Thread Louis Turk
Hi Julio,

On 08/14/2011 11:30 PM, Julio Rojas wrote:
 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 . 
If in the preamble I use

\usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}


I get this error message:


Package keyval Error: citestyle undefined.

...liographyOptions\expandafter{\cms@options}


 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}
If I use:

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

\renewcommand\citep{\autocite}

\bibliography{/home/lat/notes-test}


only the bibtexkey prints, not the text it points to.


 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.
As you can see above, I'm using the correct full path to the
bibliography file, but still no success.

I suspect that we are getting close though. Thanks for the help!

Louis

 Try this and let me know. Regards.
 -
 Julio Rojas



Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
BTW, as I don't have biber I have to remove most of your references
and only left the first one, which works perfectly with bibtex.

Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas




Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Rethinking on everything, I think the problem is biber. It seems that
it cannot process your bibtex file, which is why the citekey, not the
properly formatted reference, appears. You need to check both, your
bibtex file as well as your biber installation. BTW, why biber?
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas jcredbe...@gmail.com wrote:
 BTW, as I don't have biber I have to remove most of your references
 and only left the first one, which works perfectly with bibtex.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas





Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Confirmed, at least from my side. The problem lies in your bibtex
file, which biber cannot process. I believe it has some characters,
that even if UTF-8 encoded, are not understood by biber. For example,
in one reference:

@INBOOK{ashbrook:brain,
  chapter = {7},
  title = {The Frontal Lobes, Intending, and a Purposeful God},
  publisher = {Pilgrim Press},
  year = {1997},
  author = {Ashbrook, James~B. and Albright, Carol Rausch},
  annote = {A typical InBook entry, identified by title and also, in this case,
by chapter number rather than page range.},
  booktitle = {The Humanizing Brain},
  location = {Cleveland, OH},
  shorttitle = {The Frontal Lobes}
}

You have a ~ in author. I removed this character and retried and it
seems to work with biber. Try yourself and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:53 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Rethinking on everything, I think the problem is biber. It seems that
 it cannot process your bibtex file, which is why the citekey, not the
 properly formatted reference, appears. You need to check both, your
 bibtex file as well as your biber installation. BTW, why biber?
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas jcredbe...@gmail.com wrote:
 BTW, as I don't have biber I have to remove most of your references
 and only left the first one, which works perfectly with bibtex.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas jcredbe...@gmail.com wrote:
 Try the attached document (change the bibliography path accordingly).
 I will remind you that I don't use biber, so I don't know if the
 problem lies there.

 Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com



 On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of \footcite. For this, you need to add the
 citestyle option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like \citep into \autocite adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas






Re: biblatex-chicago

2011-08-15 Thread Louis Turk
Hi Julio,

On 08/14/2011 11:30 PM, Julio Rojas wrote:
> As for the footnotes, you first have to use a biblatex style that
> automatically makes use of "\footcite". For this, you need to add the
> "citestyle" option
> citestyle=verbose-trad1 . 
If in the preamble I use

\usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}


I get this error message:


Package keyval Error: citestyle undefined.

...liographyOptions\expandafter{\cms@options}


> What I usually do is that I renew a command
> like "\citep" into "\autocite" adding the following command to the
> preamble:
>
> \renewcommand\citep{\autocite}
If I use:

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

\renewcommand\citep{\autocite}

\bibliography{/home/lat/notes-test}


only the bibtexkey prints, not the text it points to.

>
> As for the lack of references in the footnotes, it might be due to the
> lack of the bibliography's full path in the preamble.
As you can see above, I'm using the correct full path to the
bibliography file, but still no success.

I suspect that we are getting close though. Thanks for the help!

Louis
>
> Try this and let me know. Regards.
> -
> Julio Rojas



Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
BTW, as I don't have biber I have to remove most of your references
and only left the first one, which works perfectly with bibtex.

Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas  wrote:
> Try the attached document (change the bibliography path accordingly).
> I will remind you that I don't use biber, so I don't know if the
> problem lies there.
>
> Regards.
> -
> Julio Rojas
> jcredbe...@gmail.com
>
>
>
> On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk  
> wrote:
>> Hi Julio,
>>
>> On 08/14/2011 11:30 PM, Julio Rojas wrote:
>>
>> As for the footnotes, you first have to use a biblatex style that
>> automatically makes use of "\footcite". For this, you need to add the
>> "citestyle" option
>> citestyle=verbose-trad1 .
>>
>> If in the preamble I use
>>
>> \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}
>>
>> I get this error message:
>>
>> Package keyval Error: citestyle undefined.
>>
>> ...liographyOptions\expandafter{\cms@options}
>>
>> What I usually do is that I renew a command
>> like "\citep" into "\autocite" adding the following command to the
>> preamble:
>>
>> \renewcommand\citep{\autocite}
>>
>> If I use:
>>
>> \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}
>>
>> \renewcommand\citep{\autocite}
>>
>> \bibliography{/home/lat/notes-test}
>>
>> only the bibtexkey prints, not the text it points to.
>>
>> As for the lack of references in the footnotes, it might be due to the
>> lack of the bibliography's full path in the preamble.
>>
>> As you can see above, I'm using the correct full path to the bibliography
>> file, but still no success.
>>
>> I suspect that we are getting close though. Thanks for the help!
>>
>> Louis
>>
>> Try this and let me know. Regards.
>> -
>> Julio Rojas
>>
>


Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Rethinking on everything, I think the problem is biber. It seems that
it cannot process your bibtex file, which is why the citekey, not the
properly formatted reference, appears. You need to check both, your
bibtex file as well as your biber installation. BTW, why biber?
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas  wrote:
> BTW, as I don't have biber I have to remove most of your references
> and only left the first one, which works perfectly with bibtex.
>
> Regards.
> -
> Julio Rojas
> jcredbe...@gmail.com
>
>
>
> On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas  wrote:
>> Try the attached document (change the bibliography path accordingly).
>> I will remind you that I don't use biber, so I don't know if the
>> problem lies there.
>>
>> Regards.
>> -
>> Julio Rojas
>> jcredbe...@gmail.com
>>
>>
>>
>> On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk  
>> wrote:
>>> Hi Julio,
>>>
>>> On 08/14/2011 11:30 PM, Julio Rojas wrote:
>>>
>>> As for the footnotes, you first have to use a biblatex style that
>>> automatically makes use of "\footcite". For this, you need to add the
>>> "citestyle" option
>>> citestyle=verbose-trad1 .
>>>
>>> If in the preamble I use
>>>
>>> \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}
>>>
>>> I get this error message:
>>>
>>> Package keyval Error: citestyle undefined.
>>>
>>> ...liographyOptions\expandafter{\cms@options}
>>>
>>> What I usually do is that I renew a command
>>> like "\citep" into "\autocite" adding the following command to the
>>> preamble:
>>>
>>> \renewcommand\citep{\autocite}
>>>
>>> If I use:
>>>
>>> \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}
>>>
>>> \renewcommand\citep{\autocite}
>>>
>>> \bibliography{/home/lat/notes-test}
>>>
>>> only the bibtexkey prints, not the text it points to.
>>>
>>> As for the lack of references in the footnotes, it might be due to the
>>> lack of the bibliography's full path in the preamble.
>>>
>>> As you can see above, I'm using the correct full path to the bibliography
>>> file, but still no success.
>>>
>>> I suspect that we are getting close though. Thanks for the help!
>>>
>>> Louis
>>>
>>> Try this and let me know. Regards.
>>> -
>>> Julio Rojas
>>>
>>
>


Re: biblatex-chicago

2011-08-15 Thread Julio Rojas
Confirmed, at least from my side. The problem lies in your bibtex
file, which biber cannot process. I believe it has some characters,
that even if UTF-8 encoded, are not understood by biber. For example,
in one reference:

@INBOOK{ashbrook:brain,
  chapter = {7},
  title = {The Frontal Lobes, Intending, and a Purposeful God},
  publisher = {Pilgrim Press},
  year = {1997},
  author = {Ashbrook, James~B. and Albright, Carol Rausch},
  annote = {A typical InBook entry, identified by title and also, in this case,
by chapter number rather than page range.},
  booktitle = {The Humanizing Brain},
  location = {Cleveland, OH},
  shorttitle = {The Frontal Lobes}
}

You have a "~" in author. I removed this character and retried and it
seems to work with biber. Try yourself and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Mon, Aug 15, 2011 at 6:53 PM, Julio Rojas  wrote:
> Rethinking on everything, I think the problem is biber. It seems that
> it cannot process your bibtex file, which is why the citekey, not the
> properly formatted reference, appears. You need to check both, your
> bibtex file as well as your biber installation. BTW, why biber?
> -
> Julio Rojas
> jcredbe...@gmail.com
>
>
>
> On Mon, Aug 15, 2011 at 6:48 PM, Julio Rojas  wrote:
>> BTW, as I don't have biber I have to remove most of your references
>> and only left the first one, which works perfectly with bibtex.
>>
>> Regards.
>> -
>> Julio Rojas
>> jcredbe...@gmail.com
>>
>>
>>
>> On Mon, Aug 15, 2011 at 6:45 PM, Julio Rojas  wrote:
>>> Try the attached document (change the bibliography path accordingly).
>>> I will remind you that I don't use biber, so I don't know if the
>>> problem lies there.
>>>
>>> Regards.
>>> -
>>> Julio Rojas
>>> jcredbe...@gmail.com
>>>
>>>
>>>
>>> On Mon, Aug 15, 2011 at 3:52 PM, Louis Turk  
>>> wrote:
 Hi Julio,

 On 08/14/2011 11:30 PM, Julio Rojas wrote:

 As for the footnotes, you first have to use a biblatex style that
 automatically makes use of "\footcite". For this, you need to add the
 "citestyle" option
 citestyle=verbose-trad1 .

 If in the preamble I use

 \usepackage[notes,autocite=footnote,natbib,citestyle=verbose-trad1]{biblatex-chicago}

 I get this error message:

 Package keyval Error: citestyle undefined.

 ...liographyOptions\expandafter{\cms@options}

 What I usually do is that I renew a command
 like "\citep" into "\autocite" adding the following command to the
 preamble:

 \renewcommand\citep{\autocite}

 If I use:

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 \renewcommand\citep{\autocite}

 \bibliography{/home/lat/notes-test}

 only the bibtexkey prints, not the text it points to.

 As for the lack of references in the footnotes, it might be due to the
 lack of the bibliography's full path in the preamble.

 As you can see above, I'm using the correct full path to the bibliography
 file, but still no success.

 I suspect that we are getting close though. Thanks for the help!

 Louis

 Try this and let me know. Regards.
 -
 Julio Rojas

>>>
>>
>


Re: biblatex-chicago

2011-08-14 Thread Louis Turk
Hi Julio,

On 08/14/2011 05:07 AM, Julio Rojas wrote:
 Louis, you also need to state the natbib option while loading
 biblatex-chicago (page 3 of the manual, citep and citet are commands
 implemented in natbib):

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 I don't have biber, but I believe that would be more than enough to
 make it work. Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com

Many thanks! It now compiles without an error message. However, the
result is incorrect. The key is being printed instead of the citation,
and it is in the text, not in a footnote. Example:

This is a test.aristotle:metaphy:gr

If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
number in the text as follows:

This is a test.1

but in the footnote itself only the key prints:

1 aristotle:metaphy:gr

Many thanks for helping me with this. I've been trying to get this to
work for a long time.

Louis





 On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =  {The Complete Correspondence, 1928--1940},
   publisher =  hup,
   year =  1999,
   author =  {Adorno, Theodor W. and Benjamin, Walter},
   editor =  {Lonitz, Henri},
   translator =  {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =  {A published collection of letters, in a Book entry
   rather than Letter. References to it would be by
   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis







Re: biblatex-chicago

2011-08-14 Thread Julio Rojas
As for the footnotes, you first have to use a biblatex style that
automatically makes use of \footcite. For this, you need to add the
citestyle option
citestyle=verbose-trad1 . What I usually do is that I renew a command
like \citep into \autocite adding the following command to the
preamble:

\renewcommand\citep{\autocite}

As for the lack of references in the footnotes, it might be due to the
lack of the bibliography's full path in the preamble.

Try this and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sun, Aug 14, 2011 at 3:49 PM, Louis Turk l...@dayspringpublisher.com wrote:
 Hi Julio,

 On 08/14/2011 05:07 AM, Julio Rojas wrote:
 Louis, you also need to state the natbib option while loading
 biblatex-chicago (page 3 of the manual, citep and citet are commands
 implemented in natbib):

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 I don't have biber, but I believe that would be more than enough to
 make it work. Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com

 Many thanks! It now compiles without an error message. However, the
 result is incorrect. The key is being printed instead of the citation,
 and it is in the text, not in a footnote. Example:

 This is a test.aristotle:metaphy:gr

 If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
 number in the text as follows:

 This is a test.1

 but in the footnote itself only the key prints:

 1 aristotle:metaphy:gr

 Many thanks for helping me with this. I've been trying to get this to
 work for a long time.

 Louis





 On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =      {The Complete Correspondence, 1928--1940},
   publisher =      hup,
   year =      1999,
   author =      {Adorno, Theodor W. and Benjamin, Walter},
   editor =      {Lonitz, Henri},
   translator =      {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =      {A published collection of letters, in a Book entry
                   rather than Letter. References to it would be by
                   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis








Re: biblatex-chicago

2011-08-14 Thread Louis Turk
Hi Julio,

On 08/14/2011 05:07 AM, Julio Rojas wrote:
 Louis, you also need to state the natbib option while loading
 biblatex-chicago (page 3 of the manual, citep and citet are commands
 implemented in natbib):

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 I don't have biber, but I believe that would be more than enough to
 make it work. Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com

Many thanks! It now compiles without an error message. However, the
result is incorrect. The key is being printed instead of the citation,
and it is in the text, not in a footnote. Example:

This is a test.aristotle:metaphy:gr

If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
number in the text as follows:

This is a test.1

but in the footnote itself only the key prints:

1 aristotle:metaphy:gr

Many thanks for helping me with this. I've been trying to get this to
work for a long time.

Louis





 On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =  {The Complete Correspondence, 1928--1940},
   publisher =  hup,
   year =  1999,
   author =  {Adorno, Theodor W. and Benjamin, Walter},
   editor =  {Lonitz, Henri},
   translator =  {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =  {A published collection of letters, in a Book entry
   rather than Letter. References to it would be by
   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis







Re: biblatex-chicago

2011-08-14 Thread Julio Rojas
As for the footnotes, you first have to use a biblatex style that
automatically makes use of \footcite. For this, you need to add the
citestyle option
citestyle=verbose-trad1 . What I usually do is that I renew a command
like \citep into \autocite adding the following command to the
preamble:

\renewcommand\citep{\autocite}

As for the lack of references in the footnotes, it might be due to the
lack of the bibliography's full path in the preamble.

Try this and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sun, Aug 14, 2011 at 3:49 PM, Louis Turk l...@dayspringpublisher.com wrote:
 Hi Julio,

 On 08/14/2011 05:07 AM, Julio Rojas wrote:
 Louis, you also need to state the natbib option while loading
 biblatex-chicago (page 3 of the manual, citep and citet are commands
 implemented in natbib):

 \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

 I don't have biber, but I believe that would be more than enough to
 make it work. Regards.
 -
 Julio Rojas
 jcredbe...@gmail.com

 Many thanks! It now compiles without an error message. However, the
 result is incorrect. The key is being printed instead of the citation,
 and it is in the text, not in a footnote. Example:

 This is a test.aristotle:metaphy:gr

 If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
 number in the text as follows:

 This is a test.1

 but in the footnote itself only the key prints:

 1 aristotle:metaphy:gr

 Many thanks for helping me with this. I've been trying to get this to
 work for a long time.

 Louis





 On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
 wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =      {The Complete Correspondence, 1928--1940},
   publisher =      hup,
   year =      1999,
   author =      {Adorno, Theodor W. and Benjamin, Walter},
   editor =      {Lonitz, Henri},
   translator =      {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =      {A published collection of letters, in a Book entry
                   rather than Letter. References to it would be by
                   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis








Re: biblatex-chicago

2011-08-14 Thread Louis Turk
Hi Julio,

On 08/14/2011 05:07 AM, Julio Rojas wrote:
> Louis, you also need to state the natbib option while loading
> biblatex-chicago (page 3 of the manual, citep and citet are commands
> implemented in natbib):
>
> \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}
>
> I don't have biber, but I believe that would be more than enough to
> make it work. Regards.
> -
> Julio Rojas
> jcredbe...@gmail.com

Many thanks! It now compiles without an error message. However, the
result is incorrect. The key is being printed instead of the citation,
and it is in the text, not in a footnote. Example:

This is a test.aristotle:metaphy:gr

If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
number in the text as follows:

This is a test.1

but in the footnote itself only the key prints:

1 aristotle:metaphy:gr

Many thanks for helping me with this. I've been trying to get this to
work for a long time.

Louis


>
>
>
> On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk  
> wrote:
>> Hi Julio,
>>
>> On 08/14/2011 02:03 AM, Julio Rojas wrote:
>>
>> Dear Louis, I would like to help you, but today I'm kind of busy. Can
>> you send an small example file (full preamble, bib file with one
>> reference, text with the reference) so I can take a look at it?
>>
>> Regards.
>>
>> PS: I suppose that you are using Lyx 2.0, aren't you?
>>
>> Yes.
>>
>> The .lyx and .bib files are attached.
>>
>> The record I tried to cite is:
>>
>> @Book{adorno:benj,
>>   title =  {The Complete Correspondence, 1928--1940},
>>   publisher =  hup,
>>   year =  1999,
>>   author =  {Adorno, Theodor W. and Benjamin, Walter},
>>   editor =  {Lonitz, Henri},
>>   translator =  {Nicholas Walker},
>>   location =  {Cambridge, MA},
>>   shorttitle = {Complete Correspondence},
>>   annote =  {A published collection of letters, in a Book entry
>>   rather than Letter. References to it would be by
>>   page rather than by individual letter.}
>> }
>>
>> I've also attached the lyx log file, just is case you need it. I notice that
>> there is no test-biblatex.bbl file. Does that make any difference?
>>
>> Many thanks for your help!
>>
>> Louis
>>
>>
>>
>>



Re: biblatex-chicago

2011-08-14 Thread Julio Rojas
As for the footnotes, you first have to use a biblatex style that
automatically makes use of "\footcite". For this, you need to add the
"citestyle" option
citestyle=verbose-trad1 . What I usually do is that I renew a command
like "\citep" into "\autocite" adding the following command to the
preamble:

\renewcommand\citep{\autocite}

As for the lack of references in the footnotes, it might be due to the
lack of the bibliography's full path in the preamble.

Try this and let me know. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sun, Aug 14, 2011 at 3:49 PM, Louis Turk  wrote:
> Hi Julio,
>
> On 08/14/2011 05:07 AM, Julio Rojas wrote:
>> Louis, you also need to state the natbib option while loading
>> biblatex-chicago (page 3 of the manual, citep and citet are commands
>> implemented in natbib):
>>
>> \usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}
>>
>> I don't have biber, but I believe that would be more than enough to
>> make it work. Regards.
>> -
>> Julio Rojas
>> jcredbe...@gmail.com
>
> Many thanks! It now compiles without an error message. However, the
> result is incorrect. The key is being printed instead of the citation,
> and it is in the text, not in a footnote. Example:
>
> This is a test.aristotle:metaphy:gr
>
> If I put \footcite{aristotle:metaphy:gr} in ERT, I get get a footnote
> number in the text as follows:
>
> This is a test.1
>
> but in the footnote itself only the key prints:
>
> 1 aristotle:metaphy:gr
>
> Many thanks for helping me with this. I've been trying to get this to
> work for a long time.
>
> Louis
>
>
>>
>>
>>
>> On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk  
>> wrote:
>>> Hi Julio,
>>>
>>> On 08/14/2011 02:03 AM, Julio Rojas wrote:
>>>
>>> Dear Louis, I would like to help you, but today I'm kind of busy. Can
>>> you send an small example file (full preamble, bib file with one
>>> reference, text with the reference) so I can take a look at it?
>>>
>>> Regards.
>>>
>>> PS: I suppose that you are using Lyx 2.0, aren't you?
>>>
>>> Yes.
>>>
>>> The .lyx and .bib files are attached.
>>>
>>> The record I tried to cite is:
>>>
>>> @Book{adorno:benj,
>>>   title =      {The Complete Correspondence, 1928--1940},
>>>   publisher =      hup,
>>>   year =      1999,
>>>   author =      {Adorno, Theodor W. and Benjamin, Walter},
>>>   editor =      {Lonitz, Henri},
>>>   translator =      {Nicholas Walker},
>>>   location =  {Cambridge, MA},
>>>   shorttitle = {Complete Correspondence},
>>>   annote =      {A published collection of letters, in a Book entry
>>>                   rather than Letter. References to it would be by
>>>                   page rather than by individual letter.}
>>> }
>>>
>>> I've also attached the lyx log file, just is case you need it. I notice that
>>> there is no test-biblatex.bbl file. Does that make any difference?
>>>
>>> Many thanks for your help!
>>>
>>> Louis
>>>
>>>
>>>
>>>
>
>


Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Maybe you need to use natbib to have \citet?
-
Julio Rojas
jcredbe...@gmail.com



On Fri, Aug 12, 2011 at 4:53 PM, Louis Turk l...@dayspringpublisher.com wrote:
 On 08/12/2011 05:17 PM, Louis Turk wrote:

 Hi everyone,

 I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
 for some time without success. I've read many documents on-line but
 still no success. I want to use the footnotes style citations. Lyx finds
 the .bib database and I can enter a citation, but in author-date style,
 not in the notes style I need.

 I get this error message when I try to compile:

 Undefined control sequence.

 \begin{document}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.



 This is what I have in the preamble:

 \bibliography{/home/lat/notes-test}

 \usepackage[notes]{biblatex-chicago}


 In settings/modules I have biblatex-citation-styles selected.

 In settings/Bibliography/citation style I have natbib author-date selected.

 In settings/Bibliography/Bibliography Generation/processor I have biber
 selected.

 In tools/preferences/output/latex/processor I have biber selected.

 I'm beginning to think I have something installed wrong. Is there a
 step-by-step how-to doc on installing biblatex, biblatex-biber and
 biblatex-chicago to get it to work properly with Lyx?


 Lou

 I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
 latest versions. On a bare bones file I now get:

 Undefined control sequence.

 This is a test.\citet

 {adorno:benj}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.

 Here is the file:

 #LyX 2.0 created this file. For more info see http://www.lyx.org/
 \lyxformat 413
 \begin_document
 \begin_header
 \textclass memoir
 \begin_preamble

 \bibliography{/home/lat/notes-test}
 \usepackage[notes]{biblatex-chicago}
 \usepackage{csquotes}
 \end_preamble
 \use_default_options true
 \begin_modules
 biblatex
 \end_modules
 \maintain_unincluded_children false
 \language english
 \language_package babel
 \inputencoding utf8
 \fontencoding global
 \font_roman default
 \font_sans default
 \font_typewriter default
 \font_default_family default
 \use_non_tex_fonts false
 \font_sc false
 \font_osf false
 \font_sf_scale 100
 \font_tt_scale 100

 \graphics default
 \default_output_format default
 \output_sync 0
 \bibtex_command biber
 \index_command default
 \paperfontsize default
 \spacing single
 \use_hyperref false
 \papersize default
 \use_geometry false
 \use_amsmath 1
 \use_esint 1
 \use_mhchem 1
 \use_mathdots 1
 \cite_engine natbib_authoryear
 \use_bibtopic false
 \use_indices false
 \paperorientation portrait
 \suppress_date false
 \use_refstyle 1
 \index Index
 \shortcut idx
 \color #008000
 \end_index
 \secnumdepth 3
 \tocdepth 3
 \paragraph_separation indent
 \paragraph_indentation default
 \quotes_language english
 \papercolumns 1
 \papersides 1
 \paperpagestyle default
 \tracking_changes false
 \output_changes false
 \html_math_output 0
 \html_css_as_file 0
 \html_be_strict false
 \end_header

 \begin_body

 \begin_layout Standard
 \begin_inset Note Note
 status open

 \begin_layout Plain Layout
 \begin_inset CommandInset bibtex
 LatexCommand bibtex
 btprint btPrintAll
 bibfiles /home/lat/notes-test
 options plain

 \end_inset


 \end_layout

 \end_inset


 \end_layout

 \begin_layout Standard
 This is a test.
 \begin_inset CommandInset citation
 LatexCommand citet
 key adorno:benj

 \end_inset


 \end_layout

 \begin_layout Standard
 \begin_inset ERT
 status open

 \begin_layout Plain Layout


 \backslash
 printbibliography
 \end_layout

 \end_inset


 \end_layout

 \end_body
 \end_document





Re: biblatex-chicago

2011-08-13 Thread Louis Turk
Hi Julio,

On 08/14/2011 12:38 AM, Julio Rojas wrote:
 Use the Natbib option in Document - Settings - Bibliography and the
 Biblatex citation style module in Document - Settings - Modules.
 Those, together with biblatex-chicago.
 -
 Julio Rojas
 jcredbe...@gmail.com
Thanks again for helping. I've done all that, but I still get errors.
Here is the log file:

This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
(format=pdflatex 2011.7.10)  14 AUG 2011 01:34
entering extended mode
 restricted \write18 enabled.
 %-line parsing enabled.
**test-biblatex.tex
(./test-biblatex.tex
LaTeX2e 2009/09/24
Babel v3.8l and hyphenation patterns for english, dumylang,
nohyphenation, ge
rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
french,
 galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic
, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
oriya, panja
bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, lati
n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
polish, portu
guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
swedis
h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.

(/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
Document Class: memoir 2011/03/06 v3.6j configurable book, report,
article docu
ment class
\onelineskip=\skip41
\lxvchars=\skip42
\xlvchars=\skip43
\@memcnta=\count79
\c@@memmarkcntra=\count80
(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Class memoir Info: An `ifetex' package is being emulated on input line 251.
(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
\stockheight=\skip44
\stockwidth=\skip45
\trimtop=\skip46
\trimedge=\skip47
(/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count81
) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
)
\binding=\skip48
\spinemargin=\skip49
\foremargin=\skip50
\uppermargin=\skip51
\lowermargin=\skip52
\headdrop=\skip53
\normalrulethickness=\skip54
\mem@maxheadheight=\skip55
\mem@maxfootheight=\skip56
\headwidth=\skip57
\c@storedpagenumber=\count82
\memPD=\dimen102
\m@mabparskip=\skip58
\thanksmarkwidth=\skip59
\thanksmarksep=\skip60
\droptitle=\skip61
\c@book=\count83
\c@part=\count84
\c@chapter=\count85
\c@section=\count86
\c@subsection=\count87
\c@subsubsection=\count88
\c@paragraph=\count89
\c@subparagraph=\count90
\beforechapskip=\skip62
\midchapskip=\skip63
\afterchapskip=\skip64
\chapindent=\skip65
\bottomsectionskip=\skip66
\secindent=\skip67
\beforesecskip=\skip68
\aftersecskip=\skip69
\subsecindent=\skip70
\beforesubsecskip=\skip71
\aftersubsecskip=\skip72
\subsubsecindent=\skip73
\beforesubsubsecskip=\skip74
\aftersubsubsecskip=\skip75
\paraindent=\skip76
\beforeparaskip=\skip77
\afterparaskip=\skip78
\subparaindent=\skip79
\beforesubparaskip=\skip80
\aftersubparaskip=\skip81
\pfbreakskip=\skip82
\c@@ppsavesec=\count91
\c@@ppsaveapp=\count92
\ragrparindent=\dimen103
\everylistparindent=\dimen104
\parsepi=\skip83
\topsepi=\skip84
\itemsepi=\skip85
\parsepii=\skip86
\topsepii=\skip87
\topsepiii=\skip88
\itemsepii=\skip89
\itemsepiii=\skip90
\partopsepii=\skip91
\partopsepiii=\skip92
\m@msavetopsep=\skip93
\m@msavepartopsep=\skip94
\@enLab=\toks14
\abstitleskip=\skip95
\absleftindent=\skip96
\abs@leftindent=\dimen105
\absrightindent=\skip97
\absparindent=\skip98
\absparsep=\skip99
\c@vslineno=\count93
\c@poemline=\count94
\c@modulo@vs=\count95
\c@memfvsline=\count96
\vleftskip=\skip100
\vrightskip=\skip101
\stanzaskip=\skip102
\versewidth=\skip103
\vgap=\skip104
\vindent=\skip105
\vleftmargin=\dimen106
\c@verse=\count97
\c@chrsinstr=\count98
\beforepoemtitleskip=\skip106
\afterpoemtitleskip=\skip107
\c@poem=\count99
\beforePoemTitleskip=\skip108
\midPoemTitleskip=\skip109
\afterPoemTitleskip=\skip110
\col@sep=\dimen107
\extrarowheight=\dimen108
\NC@list=\toks15
\extratabsurround=\skip111
\backup@length=\skip112
\TX@col@width=\dimen109
\TX@old@table=\dimen110
\TX@old@col=\dimen111
\TX@target=\dimen112
\TX@delta=\dimen113
\TX@cols=\count100
\TX@ftn=\toks16
\heavyrulewidth=\dimen114
\lightrulewidth=\dimen115
\cmidrulewidth=\dimen116
\belowrulesep=\dimen117
\belowbottomsep=\dimen118
\aboverulesep=\dimen119
\abovetopsep=\dimen120
\cmidrulesep=\dimen121
\cmidrulekern=\dimen122
\defaultaddspace=\dimen123

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Dear Louis, I would like to help you, but today I'm kind of busy. Can
you send an small example file (full preamble, bib file with one
reference, text with the reference) so I can take a look at it?

Regards.

PS: I suppose that you are using Lyx 2.0, aren't you?
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 7:47 PM, Louis Turk l...@dayspringpublisher.com wrote:
 Hi Julio,

 On 08/14/2011 12:38 AM, Julio Rojas wrote:
 Use the Natbib option in Document - Settings - Bibliography and the
 Biblatex citation style module in Document - Settings - Modules.
 Those, together with biblatex-chicago.
 -
 Julio Rojas
 jcredbe...@gmail.com
 Thanks again for helping. I've done all that, but I still get errors.
 Here is the log file:

 This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
 (format=pdflatex 2011.7.10)  14 AUG 2011 01:34
 entering extended mode
  restricted \write18 enabled.
  %-line parsing enabled.
 **test-biblatex.tex
 (./test-biblatex.tex
 LaTeX2e 2009/09/24
 Babel v3.8l and hyphenation patterns for english, dumylang,
 nohyphenation, ge
 rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
 ibycus, arabi
 c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
 czech, danis
 h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
 french,
  galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
 icelandic
 , assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
 oriya, panja
 bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
 lao, lati
 n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
 polish, portu
 guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
 swedis
 h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.

 (/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
 Document Class: memoir 2011/03/06 v3.6j configurable book, report,
 article docu
 ment class
 \onelineskip=\skip41
 \lxvchars=\skip42
 \xlvchars=\skip43
 \@memcnta=\count79
 \c@@memmarkcntra=\count80
 (/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
 Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
 Package ifpdf Info: pdfTeX in PDF mode is detected.
 )
 Class memoir Info: An `ifetex' package is being emulated on input line 251.
 (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
 Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
 ) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
 Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
 Package ifluatex Info: LuaTeX not detected.
 )
 \stockheight=\skip44
 \stockwidth=\skip45
 \trimtop=\skip46
 \trimedge=\skip47
 (/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
 Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
 \et@xins=\count81
 ) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
 File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
 )
 \binding=\skip48
 \spinemargin=\skip49
 \foremargin=\skip50
 \uppermargin=\skip51
 \lowermargin=\skip52
 \headdrop=\skip53
 \normalrulethickness=\skip54
 \mem@maxheadheight=\skip55
 \mem@maxfootheight=\skip56
 \headwidth=\skip57
 \c@storedpagenumber=\count82
 \memPD=\dimen102
 \m@mabparskip=\skip58
 \thanksmarkwidth=\skip59
 \thanksmarksep=\skip60
 \droptitle=\skip61
 \c@book=\count83
 \c@part=\count84
 \c@chapter=\count85
 \c@section=\count86
 \c@subsection=\count87
 \c@subsubsection=\count88
 \c@paragraph=\count89
 \c@subparagraph=\count90
 \beforechapskip=\skip62
 \midchapskip=\skip63
 \afterchapskip=\skip64
 \chapindent=\skip65
 \bottomsectionskip=\skip66
 \secindent=\skip67
 \beforesecskip=\skip68
 \aftersecskip=\skip69
 \subsecindent=\skip70
 \beforesubsecskip=\skip71
 \aftersubsecskip=\skip72
 \subsubsecindent=\skip73
 \beforesubsubsecskip=\skip74
 \aftersubsubsecskip=\skip75
 \paraindent=\skip76
 \beforeparaskip=\skip77
 \afterparaskip=\skip78
 \subparaindent=\skip79
 \beforesubparaskip=\skip80
 \aftersubparaskip=\skip81
 \pfbreakskip=\skip82
 \c@@ppsavesec=\count91
 \c@@ppsaveapp=\count92
 \ragrparindent=\dimen103
 \everylistparindent=\dimen104
 \parsepi=\skip83
 \topsepi=\skip84
 \itemsepi=\skip85
 \parsepii=\skip86
 \topsepii=\skip87
 \topsepiii=\skip88
 \itemsepii=\skip89
 \itemsepiii=\skip90
 \partopsepii=\skip91
 \partopsepiii=\skip92
 \m@msavetopsep=\skip93
 \m@msavepartopsep=\skip94
 \@enLab=\toks14
 \abstitleskip=\skip95
 \absleftindent=\skip96
 \abs@leftindent=\dimen105
 \absrightindent=\skip97
 \absparindent=\skip98
 \absparsep=\skip99
 \c@vslineno=\count93
 \c@poemline=\count94
 \c@modulo@vs=\count95
 \c@memfvsline=\count96
 \vleftskip=\skip100
 \vrightskip=\skip101
 \stanzaskip=\skip102
 \versewidth=\skip103
 \vgap=\skip104
 \vindent=\skip105
 \vleftmargin=\dimen106
 \c@verse=\count97
 \c@chrsinstr=\count98
 \beforepoemtitleskip=\skip106
 \afterpoemtitleskip=\skip107
 \c@poem=\count99
 

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Louis, you also need to state the natbib option while loading
biblatex-chicago (page 3 of the manual, citep and citet are commands
implemented in natbib):

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

I don't have biber, but I believe that would be more than enough to
make it work. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =      {The Complete Correspondence, 1928--1940},
   publisher =      hup,
   year =      1999,
   author =      {Adorno, Theodor W. and Benjamin, Walter},
   editor =      {Lonitz, Henri},
   translator =      {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =      {A published collection of letters, in a Book entry
   rather than Letter. References to it would be by
   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis






Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Maybe you need to use natbib to have \citet?
-
Julio Rojas
jcredbe...@gmail.com



On Fri, Aug 12, 2011 at 4:53 PM, Louis Turk l...@dayspringpublisher.com wrote:
 On 08/12/2011 05:17 PM, Louis Turk wrote:

 Hi everyone,

 I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
 for some time without success. I've read many documents on-line but
 still no success. I want to use the footnotes style citations. Lyx finds
 the .bib database and I can enter a citation, but in author-date style,
 not in the notes style I need.

 I get this error message when I try to compile:

 Undefined control sequence.

 \begin{document}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.



 This is what I have in the preamble:

 \bibliography{/home/lat/notes-test}

 \usepackage[notes]{biblatex-chicago}


 In settings/modules I have biblatex-citation-styles selected.

 In settings/Bibliography/citation style I have natbib author-date selected.

 In settings/Bibliography/Bibliography Generation/processor I have biber
 selected.

 In tools/preferences/output/latex/processor I have biber selected.

 I'm beginning to think I have something installed wrong. Is there a
 step-by-step how-to doc on installing biblatex, biblatex-biber and
 biblatex-chicago to get it to work properly with Lyx?


 Lou

 I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
 latest versions. On a bare bones file I now get:

 Undefined control sequence.

 This is a test.\citet

 {adorno:benj}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.

 Here is the file:

 #LyX 2.0 created this file. For more info see http://www.lyx.org/
 \lyxformat 413
 \begin_document
 \begin_header
 \textclass memoir
 \begin_preamble

 \bibliography{/home/lat/notes-test}
 \usepackage[notes]{biblatex-chicago}
 \usepackage{csquotes}
 \end_preamble
 \use_default_options true
 \begin_modules
 biblatex
 \end_modules
 \maintain_unincluded_children false
 \language english
 \language_package babel
 \inputencoding utf8
 \fontencoding global
 \font_roman default
 \font_sans default
 \font_typewriter default
 \font_default_family default
 \use_non_tex_fonts false
 \font_sc false
 \font_osf false
 \font_sf_scale 100
 \font_tt_scale 100

 \graphics default
 \default_output_format default
 \output_sync 0
 \bibtex_command biber
 \index_command default
 \paperfontsize default
 \spacing single
 \use_hyperref false
 \papersize default
 \use_geometry false
 \use_amsmath 1
 \use_esint 1
 \use_mhchem 1
 \use_mathdots 1
 \cite_engine natbib_authoryear
 \use_bibtopic false
 \use_indices false
 \paperorientation portrait
 \suppress_date false
 \use_refstyle 1
 \index Index
 \shortcut idx
 \color #008000
 \end_index
 \secnumdepth 3
 \tocdepth 3
 \paragraph_separation indent
 \paragraph_indentation default
 \quotes_language english
 \papercolumns 1
 \papersides 1
 \paperpagestyle default
 \tracking_changes false
 \output_changes false
 \html_math_output 0
 \html_css_as_file 0
 \html_be_strict false
 \end_header

 \begin_body

 \begin_layout Standard
 \begin_inset Note Note
 status open

 \begin_layout Plain Layout
 \begin_inset CommandInset bibtex
 LatexCommand bibtex
 btprint btPrintAll
 bibfiles /home/lat/notes-test
 options plain

 \end_inset


 \end_layout

 \end_inset


 \end_layout

 \begin_layout Standard
 This is a test.
 \begin_inset CommandInset citation
 LatexCommand citet
 key adorno:benj

 \end_inset


 \end_layout

 \begin_layout Standard
 \begin_inset ERT
 status open

 \begin_layout Plain Layout


 \backslash
 printbibliography
 \end_layout

 \end_inset


 \end_layout

 \end_body
 \end_document





Re: biblatex-chicago

2011-08-13 Thread Louis Turk
Hi Julio,

On 08/14/2011 12:38 AM, Julio Rojas wrote:
 Use the Natbib option in Document - Settings - Bibliography and the
 Biblatex citation style module in Document - Settings - Modules.
 Those, together with biblatex-chicago.
 -
 Julio Rojas
 jcredbe...@gmail.com
Thanks again for helping. I've done all that, but I still get errors.
Here is the log file:

This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
(format=pdflatex 2011.7.10)  14 AUG 2011 01:34
entering extended mode
 restricted \write18 enabled.
 %-line parsing enabled.
**test-biblatex.tex
(./test-biblatex.tex
LaTeX2e 2009/09/24
Babel v3.8l and hyphenation patterns for english, dumylang,
nohyphenation, ge
rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
french,
 galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic
, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
oriya, panja
bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, lati
n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
polish, portu
guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
swedis
h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.

(/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
Document Class: memoir 2011/03/06 v3.6j configurable book, report,
article docu
ment class
\onelineskip=\skip41
\lxvchars=\skip42
\xlvchars=\skip43
\@memcnta=\count79
\c@@memmarkcntra=\count80
(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Class memoir Info: An `ifetex' package is being emulated on input line 251.
(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
\stockheight=\skip44
\stockwidth=\skip45
\trimtop=\skip46
\trimedge=\skip47
(/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count81
) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
)
\binding=\skip48
\spinemargin=\skip49
\foremargin=\skip50
\uppermargin=\skip51
\lowermargin=\skip52
\headdrop=\skip53
\normalrulethickness=\skip54
\mem@maxheadheight=\skip55
\mem@maxfootheight=\skip56
\headwidth=\skip57
\c@storedpagenumber=\count82
\memPD=\dimen102
\m@mabparskip=\skip58
\thanksmarkwidth=\skip59
\thanksmarksep=\skip60
\droptitle=\skip61
\c@book=\count83
\c@part=\count84
\c@chapter=\count85
\c@section=\count86
\c@subsection=\count87
\c@subsubsection=\count88
\c@paragraph=\count89
\c@subparagraph=\count90
\beforechapskip=\skip62
\midchapskip=\skip63
\afterchapskip=\skip64
\chapindent=\skip65
\bottomsectionskip=\skip66
\secindent=\skip67
\beforesecskip=\skip68
\aftersecskip=\skip69
\subsecindent=\skip70
\beforesubsecskip=\skip71
\aftersubsecskip=\skip72
\subsubsecindent=\skip73
\beforesubsubsecskip=\skip74
\aftersubsubsecskip=\skip75
\paraindent=\skip76
\beforeparaskip=\skip77
\afterparaskip=\skip78
\subparaindent=\skip79
\beforesubparaskip=\skip80
\aftersubparaskip=\skip81
\pfbreakskip=\skip82
\c@@ppsavesec=\count91
\c@@ppsaveapp=\count92
\ragrparindent=\dimen103
\everylistparindent=\dimen104
\parsepi=\skip83
\topsepi=\skip84
\itemsepi=\skip85
\parsepii=\skip86
\topsepii=\skip87
\topsepiii=\skip88
\itemsepii=\skip89
\itemsepiii=\skip90
\partopsepii=\skip91
\partopsepiii=\skip92
\m@msavetopsep=\skip93
\m@msavepartopsep=\skip94
\@enLab=\toks14
\abstitleskip=\skip95
\absleftindent=\skip96
\abs@leftindent=\dimen105
\absrightindent=\skip97
\absparindent=\skip98
\absparsep=\skip99
\c@vslineno=\count93
\c@poemline=\count94
\c@modulo@vs=\count95
\c@memfvsline=\count96
\vleftskip=\skip100
\vrightskip=\skip101
\stanzaskip=\skip102
\versewidth=\skip103
\vgap=\skip104
\vindent=\skip105
\vleftmargin=\dimen106
\c@verse=\count97
\c@chrsinstr=\count98
\beforepoemtitleskip=\skip106
\afterpoemtitleskip=\skip107
\c@poem=\count99
\beforePoemTitleskip=\skip108
\midPoemTitleskip=\skip109
\afterPoemTitleskip=\skip110
\col@sep=\dimen107
\extrarowheight=\dimen108
\NC@list=\toks15
\extratabsurround=\skip111
\backup@length=\skip112
\TX@col@width=\dimen109
\TX@old@table=\dimen110
\TX@old@col=\dimen111
\TX@target=\dimen112
\TX@delta=\dimen113
\TX@cols=\count100
\TX@ftn=\toks16
\heavyrulewidth=\dimen114
\lightrulewidth=\dimen115
\cmidrulewidth=\dimen116
\belowrulesep=\dimen117
\belowbottomsep=\dimen118
\aboverulesep=\dimen119
\abovetopsep=\dimen120
\cmidrulesep=\dimen121
\cmidrulekern=\dimen122
\defaultaddspace=\dimen123

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Dear Louis, I would like to help you, but today I'm kind of busy. Can
you send an small example file (full preamble, bib file with one
reference, text with the reference) so I can take a look at it?

Regards.

PS: I suppose that you are using Lyx 2.0, aren't you?
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 7:47 PM, Louis Turk l...@dayspringpublisher.com wrote:
 Hi Julio,

 On 08/14/2011 12:38 AM, Julio Rojas wrote:
 Use the Natbib option in Document - Settings - Bibliography and the
 Biblatex citation style module in Document - Settings - Modules.
 Those, together with biblatex-chicago.
 -
 Julio Rojas
 jcredbe...@gmail.com
 Thanks again for helping. I've done all that, but I still get errors.
 Here is the log file:

 This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
 (format=pdflatex 2011.7.10)  14 AUG 2011 01:34
 entering extended mode
  restricted \write18 enabled.
  %-line parsing enabled.
 **test-biblatex.tex
 (./test-biblatex.tex
 LaTeX2e 2009/09/24
 Babel v3.8l and hyphenation patterns for english, dumylang,
 nohyphenation, ge
 rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
 ibycus, arabi
 c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
 czech, danis
 h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
 french,
  galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
 icelandic
 , assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
 oriya, panja
 bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
 lao, lati
 n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
 polish, portu
 guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
 swedis
 h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.

 (/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
 Document Class: memoir 2011/03/06 v3.6j configurable book, report,
 article docu
 ment class
 \onelineskip=\skip41
 \lxvchars=\skip42
 \xlvchars=\skip43
 \@memcnta=\count79
 \c@@memmarkcntra=\count80
 (/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
 Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
 Package ifpdf Info: pdfTeX in PDF mode is detected.
 )
 Class memoir Info: An `ifetex' package is being emulated on input line 251.
 (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
 Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
 ) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
 Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
 Package ifluatex Info: LuaTeX not detected.
 )
 \stockheight=\skip44
 \stockwidth=\skip45
 \trimtop=\skip46
 \trimedge=\skip47
 (/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
 Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
 \et@xins=\count81
 ) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
 File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
 )
 \binding=\skip48
 \spinemargin=\skip49
 \foremargin=\skip50
 \uppermargin=\skip51
 \lowermargin=\skip52
 \headdrop=\skip53
 \normalrulethickness=\skip54
 \mem@maxheadheight=\skip55
 \mem@maxfootheight=\skip56
 \headwidth=\skip57
 \c@storedpagenumber=\count82
 \memPD=\dimen102
 \m@mabparskip=\skip58
 \thanksmarkwidth=\skip59
 \thanksmarksep=\skip60
 \droptitle=\skip61
 \c@book=\count83
 \c@part=\count84
 \c@chapter=\count85
 \c@section=\count86
 \c@subsection=\count87
 \c@subsubsection=\count88
 \c@paragraph=\count89
 \c@subparagraph=\count90
 \beforechapskip=\skip62
 \midchapskip=\skip63
 \afterchapskip=\skip64
 \chapindent=\skip65
 \bottomsectionskip=\skip66
 \secindent=\skip67
 \beforesecskip=\skip68
 \aftersecskip=\skip69
 \subsecindent=\skip70
 \beforesubsecskip=\skip71
 \aftersubsecskip=\skip72
 \subsubsecindent=\skip73
 \beforesubsubsecskip=\skip74
 \aftersubsubsecskip=\skip75
 \paraindent=\skip76
 \beforeparaskip=\skip77
 \afterparaskip=\skip78
 \subparaindent=\skip79
 \beforesubparaskip=\skip80
 \aftersubparaskip=\skip81
 \pfbreakskip=\skip82
 \c@@ppsavesec=\count91
 \c@@ppsaveapp=\count92
 \ragrparindent=\dimen103
 \everylistparindent=\dimen104
 \parsepi=\skip83
 \topsepi=\skip84
 \itemsepi=\skip85
 \parsepii=\skip86
 \topsepii=\skip87
 \topsepiii=\skip88
 \itemsepii=\skip89
 \itemsepiii=\skip90
 \partopsepii=\skip91
 \partopsepiii=\skip92
 \m@msavetopsep=\skip93
 \m@msavepartopsep=\skip94
 \@enLab=\toks14
 \abstitleskip=\skip95
 \absleftindent=\skip96
 \abs@leftindent=\dimen105
 \absrightindent=\skip97
 \absparindent=\skip98
 \absparsep=\skip99
 \c@vslineno=\count93
 \c@poemline=\count94
 \c@modulo@vs=\count95
 \c@memfvsline=\count96
 \vleftskip=\skip100
 \vrightskip=\skip101
 \stanzaskip=\skip102
 \versewidth=\skip103
 \vgap=\skip104
 \vindent=\skip105
 \vleftmargin=\dimen106
 \c@verse=\count97
 \c@chrsinstr=\count98
 \beforepoemtitleskip=\skip106
 \afterpoemtitleskip=\skip107
 \c@poem=\count99
 

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Louis, you also need to state the natbib option while loading
biblatex-chicago (page 3 of the manual, citep and citet are commands
implemented in natbib):

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

I don't have biber, but I believe that would be more than enough to
make it work. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk l...@dayspringpublisher.com 
wrote:
 Hi Julio,

 On 08/14/2011 02:03 AM, Julio Rojas wrote:

 Dear Louis, I would like to help you, but today I'm kind of busy. Can
 you send an small example file (full preamble, bib file with one
 reference, text with the reference) so I can take a look at it?

 Regards.

 PS: I suppose that you are using Lyx 2.0, aren't you?

 Yes.

 The .lyx and .bib files are attached.

 The record I tried to cite is:

 @Book{adorno:benj,
   title =      {The Complete Correspondence, 1928--1940},
   publisher =      hup,
   year =      1999,
   author =      {Adorno, Theodor W. and Benjamin, Walter},
   editor =      {Lonitz, Henri},
   translator =      {Nicholas Walker},
   location =  {Cambridge, MA},
   shorttitle = {Complete Correspondence},
   annote =      {A published collection of letters, in a Book entry
   rather than Letter. References to it would be by
   page rather than by individual letter.}
 }

 I've also attached the lyx log file, just is case you need it. I notice that
 there is no test-biblatex.bbl file. Does that make any difference?

 Many thanks for your help!

 Louis






Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Maybe you need to use natbib to have \citet?
-
Julio Rojas
jcredbe...@gmail.com



On Fri, Aug 12, 2011 at 4:53 PM, Louis Turk  wrote:
> On 08/12/2011 05:17 PM, Louis Turk wrote:
>
> Hi everyone,
>
> I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
> for some time without success. I've read many documents on-line but
> still no success. I want to use the footnotes style citations. Lyx finds
> the .bib database and I can enter a citation, but in author-date style,
> not in the notes style I need.
>
> I get this error message when I try to compile:
>
> Undefined control sequence.
>
> \begin{document}
>
> The control sequence at the end of the top line
>
> of your error message was never \def'ed. If you have
>
> misspelled it (e.g., `\hobx'), type `I' and the correct
>
> spelling (e.g., `I\hbox'). Otherwise just continue,
>
> and I'll forget about whatever was undefined.
>
>
>
> This is what I have in the preamble:
>
> \bibliography{/home/lat/notes-test}
>
> \usepackage[notes]{biblatex-chicago}
>
>
> In settings/modules I have biblatex-citation-styles selected.
>
> In settings/Bibliography/citation style I have natbib author-date selected.
>
> In settings/Bibliography/Bibliography Generation/processor I have biber
> selected.
>
> In tools/preferences/output/latex/processor I have biber selected.
>
> I'm beginning to think I have something installed wrong. Is there a
> step-by-step how-to doc on installing biblatex, biblatex-biber and
> biblatex-chicago to get it to work properly with Lyx?
>
>
> Lou
>
> I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
> latest versions. On a bare bones file I now get:
>
> Undefined control sequence.
>
> This is a test.\citet
>
> {adorno:benj}
>
> The control sequence at the end of the top line
>
> of your error message was never \def'ed. If you have
>
> misspelled it (e.g., `\hobx'), type `I' and the correct
>
> spelling (e.g., `I\hbox'). Otherwise just continue,
>
> and I'll forget about whatever was undefined.
>
> Here is the file:
>
> #LyX 2.0 created this file. For more info see http://www.lyx.org/
> \lyxformat 413
> \begin_document
> \begin_header
> \textclass memoir
> \begin_preamble
>
> \bibliography{/home/lat/notes-test}
> \usepackage[notes]{biblatex-chicago}
> \usepackage{csquotes}
> \end_preamble
> \use_default_options true
> \begin_modules
> biblatex
> \end_modules
> \maintain_unincluded_children false
> \language english
> \language_package babel
> \inputencoding utf8
> \fontencoding global
> \font_roman default
> \font_sans default
> \font_typewriter default
> \font_default_family default
> \use_non_tex_fonts false
> \font_sc false
> \font_osf false
> \font_sf_scale 100
> \font_tt_scale 100
>
> \graphics default
> \default_output_format default
> \output_sync 0
> \bibtex_command biber
> \index_command default
> \paperfontsize default
> \spacing single
> \use_hyperref false
> \papersize default
> \use_geometry false
> \use_amsmath 1
> \use_esint 1
> \use_mhchem 1
> \use_mathdots 1
> \cite_engine natbib_authoryear
> \use_bibtopic false
> \use_indices false
> \paperorientation portrait
> \suppress_date false
> \use_refstyle 1
> \index Index
> \shortcut idx
> \color #008000
> \end_index
> \secnumdepth 3
> \tocdepth 3
> \paragraph_separation indent
> \paragraph_indentation default
> \quotes_language english
> \papercolumns 1
> \papersides 1
> \paperpagestyle default
> \tracking_changes false
> \output_changes false
> \html_math_output 0
> \html_css_as_file 0
> \html_be_strict false
> \end_header
>
> \begin_body
>
> \begin_layout Standard
> \begin_inset Note Note
> status open
>
> \begin_layout Plain Layout
> \begin_inset CommandInset bibtex
> LatexCommand bibtex
> btprint "btPrintAll"
> bibfiles "/home/lat/notes-test"
> options "plain"
>
> \end_inset
>
>
> \end_layout
>
> \end_inset
>
>
> \end_layout
>
> \begin_layout Standard
> This is a test.
> \begin_inset CommandInset citation
> LatexCommand citet
> key "adorno:benj"
>
> \end_inset
>
>
> \end_layout
>
> \begin_layout Standard
> \begin_inset ERT
> status open
>
> \begin_layout Plain Layout
>
>
> \backslash
> printbibliography
> \end_layout
>
> \end_inset
>
>
> \end_layout
>
> \end_body
> \end_document
>
>
>


Re: biblatex-chicago

2011-08-13 Thread Louis Turk
Hi Julio,

On 08/14/2011 12:38 AM, Julio Rojas wrote:
> Use the Natbib option in Document -> Settings -> Bibliography and the
> "Biblatex citation style" module in Document -> Settings -> Modules.
> Those, together with biblatex-chicago.
> -
> Julio Rojas
> jcredbe...@gmail.com
Thanks again for helping. I've done all that, but I still get errors.
Here is the log file:

This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
(format=pdflatex 2011.7.10)  14 AUG 2011 01:34
entering extended mode
 restricted \write18 enabled.
 %&-line parsing enabled.
**test-biblatex.tex
(./test-biblatex.tex
LaTeX2e <2009/09/24>
Babel  and hyphenation patterns for english, dumylang,
nohyphenation, ge
rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
french,
 galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic
, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
oriya, panja
bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, lati
n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
polish, portu
guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
swedis
h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.

(/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
Document Class: memoir 2011/03/06 v3.6j configurable book, report,
article docu
ment class
\onelineskip=\skip41
\lxvchars=\skip42
\xlvchars=\skip43
\@memcnta=\count79
\c@@memmarkcntra=\count80
(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Class memoir Info: An `ifetex' package is being emulated on input line 251.
(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
\stockheight=\skip44
\stockwidth=\skip45
\trimtop=\skip46
\trimedge=\skip47
(/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
\et@xins=\count81
) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
)
\binding=\skip48
\spinemargin=\skip49
\foremargin=\skip50
\uppermargin=\skip51
\lowermargin=\skip52
\headdrop=\skip53
\normalrulethickness=\skip54
\mem@maxheadheight=\skip55
\mem@maxfootheight=\skip56
\headwidth=\skip57
\c@storedpagenumber=\count82
\memPD=\dimen102
\m@mabparskip=\skip58
\thanksmarkwidth=\skip59
\thanksmarksep=\skip60
\droptitle=\skip61
\c@book=\count83
\c@part=\count84
\c@chapter=\count85
\c@section=\count86
\c@subsection=\count87
\c@subsubsection=\count88
\c@paragraph=\count89
\c@subparagraph=\count90
\beforechapskip=\skip62
\midchapskip=\skip63
\afterchapskip=\skip64
\chapindent=\skip65
\bottomsectionskip=\skip66
\secindent=\skip67
\beforesecskip=\skip68
\aftersecskip=\skip69
\subsecindent=\skip70
\beforesubsecskip=\skip71
\aftersubsecskip=\skip72
\subsubsecindent=\skip73
\beforesubsubsecskip=\skip74
\aftersubsubsecskip=\skip75
\paraindent=\skip76
\beforeparaskip=\skip77
\afterparaskip=\skip78
\subparaindent=\skip79
\beforesubparaskip=\skip80
\aftersubparaskip=\skip81
\pfbreakskip=\skip82
\c@@ppsavesec=\count91
\c@@ppsaveapp=\count92
\ragrparindent=\dimen103
\everylistparindent=\dimen104
\parsepi=\skip83
\topsepi=\skip84
\itemsepi=\skip85
\parsepii=\skip86
\topsepii=\skip87
\topsepiii=\skip88
\itemsepii=\skip89
\itemsepiii=\skip90
\partopsepii=\skip91
\partopsepiii=\skip92
\m@msavetopsep=\skip93
\m@msavepartopsep=\skip94
\@enLab=\toks14
\abstitleskip=\skip95
\absleftindent=\skip96
\abs@leftindent=\dimen105
\absrightindent=\skip97
\absparindent=\skip98
\absparsep=\skip99
\c@vslineno=\count93
\c@poemline=\count94
\c@modulo@vs=\count95
\c@memfvsline=\count96
\vleftskip=\skip100
\vrightskip=\skip101
\stanzaskip=\skip102
\versewidth=\skip103
\vgap=\skip104
\vindent=\skip105
\vleftmargin=\dimen106
\c@verse=\count97
\c@chrsinstr=\count98
\beforepoemtitleskip=\skip106
\afterpoemtitleskip=\skip107
\c@poem=\count99
\beforePoemTitleskip=\skip108
\midPoemTitleskip=\skip109
\afterPoemTitleskip=\skip110
\col@sep=\dimen107
\extrarowheight=\dimen108
\NC@list=\toks15
\extratabsurround=\skip111
\backup@length=\skip112
\TX@col@width=\dimen109
\TX@old@table=\dimen110
\TX@old@col=\dimen111
\TX@target=\dimen112
\TX@delta=\dimen113
\TX@cols=\count100
\TX@ftn=\toks16
\heavyrulewidth=\dimen114
\lightrulewidth=\dimen115
\cmidrulewidth=\dimen116
\belowrulesep=\dimen117
\belowbottomsep=\dimen118
\aboverulesep=\dimen119
\abovetopsep=\dimen120
\cmidrulesep=\dimen121
\cmidrulekern=\dimen122

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Dear Louis, I would like to help you, but today I'm kind of busy. Can
you send an small example file (full preamble, bib file with one
reference, text with the reference) so I can take a look at it?

Regards.

PS: I suppose that you are using Lyx 2.0, aren't you?
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 7:47 PM, Louis Turk  wrote:
> Hi Julio,
>
> On 08/14/2011 12:38 AM, Julio Rojas wrote:
>> Use the Natbib option in Document -> Settings -> Bibliography and the
>> "Biblatex citation style" module in Document -> Settings -> Modules.
>> Those, together with biblatex-chicago.
>> -
>> Julio Rojas
>> jcredbe...@gmail.com
> Thanks again for helping. I've done all that, but I still get errors.
> Here is the log file:
>
> This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010/Arch Linux)
> (format=pdflatex 2011.7.10)  14 AUG 2011 01:34
> entering extended mode
>  restricted \write18 enabled.
>  %&-line parsing enabled.
> **test-biblatex.tex
> (./test-biblatex.tex
> LaTeX2e <2009/09/24>
> Babel  and hyphenation patterns for english, dumylang,
> nohyphenation, ge
> rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek,
> ibycus, arabi
> c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian,
> czech, danis
> h, dutch, ukenglish, usenglishmax, esperanto, estonian, farsi, finnish,
> french,
>  galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
> icelandic
> , assamese, bengali, gujarati, hindi, kannada, malayalam, marathi,
> oriya, panja
> bi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
> lao, lati
> n, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
> polish, portu
> guese, romanian, russian, sanskrit, serbian, slovak, slovenian, spanish,
> swedis
> h, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded.
>
> (/usr/share/texmf-dist/tex/latex/memoir/memoir.cls
> Document Class: memoir 2011/03/06 v3.6j configurable book, report,
> article docu
> ment class
> \onelineskip=\skip41
> \lxvchars=\skip42
> \xlvchars=\skip43
> \@memcnta=\count79
> \c@@memmarkcntra=\count80
> (/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty
> Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
> Package ifpdf Info: pdfTeX in PDF mode is detected.
> )
> Class memoir Info: An `ifetex' package is being emulated on input line 251.
> (/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty
> Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
> ) (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
> Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
> Package ifluatex Info: LuaTeX not detected.
> )
> \stockheight=\skip44
> \stockwidth=\skip45
> \trimtop=\skip46
> \trimedge=\skip47
> (/usr/share/texmf-dist/tex/latex/etex-pkg/etex.sty
> Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB)
> \et@xins=\count81
> ) (/usr/share/texmf-dist/tex/latex/memoir/mem10.clo
> File: mem10.clo 2008/01/30 v0.3 memoir class 10pt size option
> )
> \binding=\skip48
> \spinemargin=\skip49
> \foremargin=\skip50
> \uppermargin=\skip51
> \lowermargin=\skip52
> \headdrop=\skip53
> \normalrulethickness=\skip54
> \mem@maxheadheight=\skip55
> \mem@maxfootheight=\skip56
> \headwidth=\skip57
> \c@storedpagenumber=\count82
> \memPD=\dimen102
> \m@mabparskip=\skip58
> \thanksmarkwidth=\skip59
> \thanksmarksep=\skip60
> \droptitle=\skip61
> \c@book=\count83
> \c@part=\count84
> \c@chapter=\count85
> \c@section=\count86
> \c@subsection=\count87
> \c@subsubsection=\count88
> \c@paragraph=\count89
> \c@subparagraph=\count90
> \beforechapskip=\skip62
> \midchapskip=\skip63
> \afterchapskip=\skip64
> \chapindent=\skip65
> \bottomsectionskip=\skip66
> \secindent=\skip67
> \beforesecskip=\skip68
> \aftersecskip=\skip69
> \subsecindent=\skip70
> \beforesubsecskip=\skip71
> \aftersubsecskip=\skip72
> \subsubsecindent=\skip73
> \beforesubsubsecskip=\skip74
> \aftersubsubsecskip=\skip75
> \paraindent=\skip76
> \beforeparaskip=\skip77
> \afterparaskip=\skip78
> \subparaindent=\skip79
> \beforesubparaskip=\skip80
> \aftersubparaskip=\skip81
> \pfbreakskip=\skip82
> \c@@ppsavesec=\count91
> \c@@ppsaveapp=\count92
> \ragrparindent=\dimen103
> \everylistparindent=\dimen104
> \parsepi=\skip83
> \topsepi=\skip84
> \itemsepi=\skip85
> \parsepii=\skip86
> \topsepii=\skip87
> \topsepiii=\skip88
> \itemsepii=\skip89
> \itemsepiii=\skip90
> \partopsepii=\skip91
> \partopsepiii=\skip92
> \m@msavetopsep=\skip93
> \m@msavepartopsep=\skip94
> \@enLab=\toks14
> \abstitleskip=\skip95
> \absleftindent=\skip96
> \abs@leftindent=\dimen105
> \absrightindent=\skip97
> \absparindent=\skip98
> \absparsep=\skip99
> \c@vslineno=\count93
> \c@poemline=\count94
> \c@modulo@vs=\count95
> \c@memfvsline=\count96
> \vleftskip=\skip100
> \vrightskip=\skip101
> \stanzaskip=\skip102
> \versewidth=\skip103
> \vgap=\skip104
> \vindent=\skip105
> 

Re: biblatex-chicago

2011-08-13 Thread Julio Rojas
Louis, you also need to state the natbib option while loading
biblatex-chicago (page 3 of the manual, citep and citet are commands
implemented in natbib):

\usepackage[notes,autocite=footnote,natbib]{biblatex-chicago}

I don't have biber, but I believe that would be more than enough to
make it work. Regards.
-
Julio Rojas
jcredbe...@gmail.com



On Sat, Aug 13, 2011 at 10:23 PM, Louis Turk  
wrote:
> Hi Julio,
>
> On 08/14/2011 02:03 AM, Julio Rojas wrote:
>
> Dear Louis, I would like to help you, but today I'm kind of busy. Can
> you send an small example file (full preamble, bib file with one
> reference, text with the reference) so I can take a look at it?
>
> Regards.
>
> PS: I suppose that you are using Lyx 2.0, aren't you?
>
> Yes.
>
> The .lyx and .bib files are attached.
>
> The record I tried to cite is:
>
> @Book{adorno:benj,
>   title =      {The Complete Correspondence, 1928--1940},
>   publisher =      hup,
>   year =      1999,
>   author =      {Adorno, Theodor W. and Benjamin, Walter},
>   editor =      {Lonitz, Henri},
>   translator =      {Nicholas Walker},
>   location =  {Cambridge, MA},
>   shorttitle = {Complete Correspondence},
>   annote =      {A published collection of letters, in a Book entry
>   rather than Letter. References to it would be by
>   page rather than by individual letter.}
> }
>
> I've also attached the lyx log file, just is case you need it. I notice that
> there is no test-biblatex.bbl file. Does that make any difference?
>
> Many thanks for your help!
>
> Louis
>
>
>
>


Re: biblatex-chicago

2011-08-12 Thread Louis Turk
On 08/12/2011 05:17 PM, Louis Turk wrote:
 Hi everyone,

 I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
 for some time without success. I've read many documents on-line but
 still no success. I want to use the footnotes style citations. Lyx finds
 the .bib database and I can enter a citation, but in author-date style,
 not in the notes style I need.

 I get this error message when I try to compile:

 Undefined control sequence.

 \begin{document}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.



 This is what I have in the preamble:

 \bibliography{/home/lat/notes-test}

 \usepackage[notes]{biblatex-chicago}

  
 In settings/modules I have biblatex-citation-styles selected.

 In settings/Bibliography/citation style I have natbib author-date selected.

 In settings/Bibliography/Bibliography Generation/processor I have biber
 selected.

 In tools/preferences/output/latex/processor I have biber selected.

 I'm beginning to think I have something installed wrong. Is there a
 step-by-step how-to doc on installing biblatex, biblatex-biber and
 biblatex-chicago to get it to work properly with Lyx?


 Lou

I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
latest versions. On a bare bones file I now get:

Undefined control sequence.

This is a test.\citet

{adorno:benj}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


Here is the file:


#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass memoir
\begin_preamble
\bibliography{/home/lat/notes-test}
\usepackage[notes]{biblatex-chicago}
\usepackage{csquotes}
\end_preamble
\use_default_options true
\begin_modules
biblatex
\end_modules
\maintain_unincluded_children false
\language english
\language_package babel
\inputencoding utf8
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100

\graphics default
\default_output_format default
\output_sync 0
\bibtex_command biber
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine natbib_authoryear
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
\begin_inset CommandInset bibtex
LatexCommand bibtex
btprint btPrintAll
bibfiles /home/lat/notes-test
options plain

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Standard
This is a test.
\begin_inset CommandInset citation
LatexCommand citet
key adorno:benj

\end_inset


\end_layout

\begin_layout Standard
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
printbibliography
\end_layout

\end_inset


\end_layout

\end_body
\end_document




Re: biblatex-chicago

2011-08-12 Thread Louis Turk
On 08/12/2011 05:17 PM, Louis Turk wrote:
 Hi everyone,

 I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
 for some time without success. I've read many documents on-line but
 still no success. I want to use the footnotes style citations. Lyx finds
 the .bib database and I can enter a citation, but in author-date style,
 not in the notes style I need.

 I get this error message when I try to compile:

 Undefined control sequence.

 \begin{document}

 The control sequence at the end of the top line

 of your error message was never \def'ed. If you have

 misspelled it (e.g., `\hobx'), type `I' and the correct

 spelling (e.g., `I\hbox'). Otherwise just continue,

 and I'll forget about whatever was undefined.



 This is what I have in the preamble:

 \bibliography{/home/lat/notes-test}

 \usepackage[notes]{biblatex-chicago}

  
 In settings/modules I have biblatex-citation-styles selected.

 In settings/Bibliography/citation style I have natbib author-date selected.

 In settings/Bibliography/Bibliography Generation/processor I have biber
 selected.

 In tools/preferences/output/latex/processor I have biber selected.

 I'm beginning to think I have something installed wrong. Is there a
 step-by-step how-to doc on installing biblatex, biblatex-biber and
 biblatex-chicago to get it to work properly with Lyx?


 Lou

I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
latest versions. On a bare bones file I now get:

Undefined control sequence.

This is a test.\citet

{adorno:benj}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


Here is the file:


#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass memoir
\begin_preamble
\bibliography{/home/lat/notes-test}
\usepackage[notes]{biblatex-chicago}
\usepackage{csquotes}
\end_preamble
\use_default_options true
\begin_modules
biblatex
\end_modules
\maintain_unincluded_children false
\language english
\language_package babel
\inputencoding utf8
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100

\graphics default
\default_output_format default
\output_sync 0
\bibtex_command biber
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine natbib_authoryear
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
\begin_inset CommandInset bibtex
LatexCommand bibtex
btprint btPrintAll
bibfiles /home/lat/notes-test
options plain

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Standard
This is a test.
\begin_inset CommandInset citation
LatexCommand citet
key adorno:benj

\end_inset


\end_layout

\begin_layout Standard
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
printbibliography
\end_layout

\end_inset


\end_layout

\end_body
\end_document




Re: biblatex-chicago

2011-08-12 Thread Louis Turk
On 08/12/2011 05:17 PM, Louis Turk wrote:
> Hi everyone,
>
> I've been trying to use biblatex-chicago with Lyx 2.0 and biblatex-biber
> for some time without success. I've read many documents on-line but
> still no success. I want to use the footnotes style citations. Lyx finds
> the .bib database and I can enter a citation, but in author-date style,
> not in the notes style I need.
>
> I get this error message when I try to compile:
>
> Undefined control sequence.
>
> \begin{document}
>
> The control sequence at the end of the top line
>
> of your error message was never \def'ed. If you have
>
> misspelled it (e.g., `\hobx'), type `I' and the correct
>
> spelling (e.g., `I\hbox'). Otherwise just continue,
>
> and I'll forget about whatever was undefined.
>
>
>
> This is what I have in the preamble:
>
> \bibliography{/home/lat/notes-test}
>
> \usepackage[notes]{biblatex-chicago}
>
>  
> In settings/modules I have biblatex-citation-styles selected.
>
> In settings/Bibliography/citation style I have natbib author-date selected.
>
> In settings/Bibliography/Bibliography Generation/processor I have biber
> selected.
>
> In tools/preferences/output/latex/processor I have biber selected.
>
> I'm beginning to think I have something installed wrong. Is there a
> step-by-step how-to doc on installing biblatex, biblatex-biber and
> biblatex-chicago to get it to work properly with Lyx?
>
>
> Lou
>
I've reinstall biblatex, biblatex-biber, and biblatex-chicago with the
latest versions. On a bare bones file I now get:

Undefined control sequence.

This is a test.\citet

{adorno:benj}

The control sequence at the end of the top line

of your error message was never \def'ed. If you have

misspelled it (e.g., `\hobx'), type `I' and the correct

spelling (e.g., `I\hbox'). Otherwise just continue,

and I'll forget about whatever was undefined.


Here is the file:


#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass memoir
\begin_preamble
\bibliography{/home/lat/notes-test}
\usepackage[notes]{biblatex-chicago}
\usepackage{csquotes}
\end_preamble
\use_default_options true
\begin_modules
biblatex
\end_modules
\maintain_unincluded_children false
\language english
\language_package babel
\inputencoding utf8
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100

\graphics default
\default_output_format default
\output_sync 0
\bibtex_command biber
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 1
\cite_engine natbib_authoryear
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
\begin_inset CommandInset bibtex
LatexCommand bibtex
btprint "btPrintAll"
bibfiles "/home/lat/notes-test"
options "plain"

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Standard
This is a test.
\begin_inset CommandInset citation
LatexCommand citet
key "adorno:benj"

\end_inset


\end_layout

\begin_layout Standard
\begin_inset ERT
status open

\begin_layout Plain Layout


\backslash
printbibliography
\end_layout

\end_inset


\end_layout

\end_body
\end_document




Re: biblatex-chicago

2011-05-24 Thread Julio Rojas
Dear Louis, this command is not Biblatex's, but Bibtex's. The style of your
bibliography is defined in the preamble. Check page 2 of the
Biblatex-Chicago manual:
http://ctan.mines-albi.fr/macros/latex/contrib/biblatex-contrib/biblatex-chicago/doc/biblatex-chicago.pdf

You should also read Biblatex's Manual, as it seems you are not defining in
your preamble the name of your bib file.

Good luck. Regards.

-
Julio Rojas
jcredbe...@gmail.com


On Tue, May 24, 2011 at 7:17 AM, Louis Turk l...@dayspringpublisher.comwrote:

 Hi everyone,

 I'm using Lyx 2.0. I have an English book which uses a few Hebrew and
 Greek words. I need to use biblatex-chicago footnote citations with this
 book.

 I've installed:

 biblatex
 biblatex-biber
 biblatex-chicago

 Document class: book (Memoir)

 Modules: Biblatex-citation-styles

 Language: English USA
Encoding: Unicode (XeTex)(utf8)
Language package: Always Babel

 Bibliography:
Citation style: Natbib Author-year
Bibliograpy generation:
Processor: biber
Options: none

 Output: Default output format: PDF (XeTex)

 Preamble:

 \usepackage[hebrew,greek,english]{babel}
 \usepackage{fontspec}
 \usepackage{csquotes}
 \usepackage[backend=biber]{biblatex}
 \chapterstyle{bianchi}
 \setlength{\hoffset}{0.5 in}
 \setlength{\voffset}{0.3 in}
 \RequirePackage{microtype}
 \renewenvironment{quote}%
   {\sffamily\small\list{}{\rightmargin\z@}%
\item[]}%
   {\endlist}
 \renewenvironment{quotation}%
   {\sffamily\small\list{}{\listparindent 1.5em%
\itemindent\listparindent
\rightmargin   \z@
\parsep\z@ \@plus\p@}%
\item[]}%
   {\endlist}

 I can insert citations, but when I try to make the PDF file I get the
 following error messages:

 Package biblatex Error: ' \bibliographystyle' invalid.
 LaTex error: Can be used only in preamble.

  \bibliographystyle{chicago-fa}

 Use the package option 'style' instead.
 I'm ignoring the command.

 What am I doing wrong here, and how can I fix it?

 Lou




Re: biblatex-chicago

2011-05-24 Thread Julio Rojas
Dear Louis, this command is not Biblatex's, but Bibtex's. The style of your
bibliography is defined in the preamble. Check page 2 of the
Biblatex-Chicago manual:
http://ctan.mines-albi.fr/macros/latex/contrib/biblatex-contrib/biblatex-chicago/doc/biblatex-chicago.pdf

You should also read Biblatex's Manual, as it seems you are not defining in
your preamble the name of your bib file.

Good luck. Regards.

-
Julio Rojas
jcredbe...@gmail.com


On Tue, May 24, 2011 at 7:17 AM, Louis Turk l...@dayspringpublisher.comwrote:

 Hi everyone,

 I'm using Lyx 2.0. I have an English book which uses a few Hebrew and
 Greek words. I need to use biblatex-chicago footnote citations with this
 book.

 I've installed:

 biblatex
 biblatex-biber
 biblatex-chicago

 Document class: book (Memoir)

 Modules: Biblatex-citation-styles

 Language: English USA
Encoding: Unicode (XeTex)(utf8)
Language package: Always Babel

 Bibliography:
Citation style: Natbib Author-year
Bibliograpy generation:
Processor: biber
Options: none

 Output: Default output format: PDF (XeTex)

 Preamble:

 \usepackage[hebrew,greek,english]{babel}
 \usepackage{fontspec}
 \usepackage{csquotes}
 \usepackage[backend=biber]{biblatex}
 \chapterstyle{bianchi}
 \setlength{\hoffset}{0.5 in}
 \setlength{\voffset}{0.3 in}
 \RequirePackage{microtype}
 \renewenvironment{quote}%
   {\sffamily\small\list{}{\rightmargin\z@}%
\item[]}%
   {\endlist}
 \renewenvironment{quotation}%
   {\sffamily\small\list{}{\listparindent 1.5em%
\itemindent\listparindent
\rightmargin   \z@
\parsep\z@ \@plus\p@}%
\item[]}%
   {\endlist}

 I can insert citations, but when I try to make the PDF file I get the
 following error messages:

 Package biblatex Error: ' \bibliographystyle' invalid.
 LaTex error: Can be used only in preamble.

  \bibliographystyle{chicago-fa}

 Use the package option 'style' instead.
 I'm ignoring the command.

 What am I doing wrong here, and how can I fix it?

 Lou




Re: biblatex-chicago

2011-05-24 Thread Julio Rojas
Dear Louis, this command is not Biblatex's, but Bibtex's. The style of your
bibliography is defined in the preamble. Check page 2 of the
Biblatex-Chicago manual:
http://ctan.mines-albi.fr/macros/latex/contrib/biblatex-contrib/biblatex-chicago/doc/biblatex-chicago.pdf

You should also read Biblatex's Manual, as it seems you are not defining in
your preamble the name of your bib file.

Good luck. Regards.

-
Julio Rojas
jcredbe...@gmail.com


On Tue, May 24, 2011 at 7:17 AM, Louis Turk wrote:

> Hi everyone,
>
> I'm using Lyx 2.0. I have an English book which uses a few Hebrew and
> Greek words. I need to use biblatex-chicago footnote citations with this
> book.
>
> I've installed:
>
> biblatex
> biblatex-biber
> biblatex-chicago
>
> Document class: book (Memoir)
>
> Modules: Biblatex-citation-styles
>
> Language: English USA
>Encoding: Unicode (XeTex)(utf8)
>Language package: Always Babel
>
> Bibliography:
>Citation style: Natbib Author-year
>Bibliograpy generation:
>Processor: biber
>Options: none
>
> Output: Default output format: PDF (XeTex)
>
> Preamble:
>
> \usepackage[hebrew,greek,english]{babel}
> \usepackage{fontspec}
> \usepackage{csquotes}
> \usepackage[backend=biber]{biblatex}
> \chapterstyle{bianchi}
> \setlength{\hoffset}{0.5 in}
> \setlength{\voffset}{0.3 in}
> \RequirePackage{microtype}
> \renewenvironment{quote}%
>   {\sffamily\small\list{}{\rightmargin\z@}%
>\item[]}%
>   {\endlist}
> \renewenvironment{quotation}%
>   {\sffamily\small\list{}{\listparindent 1.5em%
>\itemindent\listparindent
>\rightmargin   \z@
>\parsep\z@ \@plus\p@}%
>\item[]}%
>   {\endlist}
>
> I can insert citations, but when I try to make the PDF file I get the
> following error messages:
>
> Package biblatex Error: ' \bibliographystyle' invalid.
> LaTex error: Can be used only in preamble.
>
>  \bibliographystyle{chicago-fa}
>
> Use the package option 'style' instead.
> I'm ignoring the command.
>
> What am I doing wrong here, and how can I fix it?
>
> Lou
>
>