Theses, Books, Title pages ⇒ Using bibTex on Orange Legrand Book
Using bibTex on Orange Legrand Book
Dear all,
I have problems with using bibTex with Orange Legrand Book and I really need to. It's quite urgent. Is there a (not too complicated) way to do that?
Thank you so much !
I have problems with using bibTex with Orange Legrand Book and I really need to. It's quite urgent. Is there a (not too complicated) way to do that?
Thank you so much !
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Using bibTex on Orange Legrand Book
Welcome,
a good start for us to work on your problem would be to know: What error do you have?
a good start for us to work on your problem would be to know: What error do you have?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Using bibTex on Orange Legrand Book
Hey,
Thank you very much for your quick reply.
I wanted to use the packages "cite" or "apacite" for my bibliography but it doesn't work. I think it's because of the use of \printbibliography function, which probably comes from the biblatex package. I am fine with using it but I don't understand why they put weird things in brackets at the beginning of every new line. I'd prefer to have something like
[1] Author, (Date), etc...
[2] Author, ...
and so on.
Even on the original file, it writes [Smi12], [Smi13] and I don't want that to appear on the PDF file.
Thanks in advance!
Thank you very much for your quick reply.
I wanted to use the packages "cite" or "apacite" for my bibliography but it doesn't work. I think it's because of the use of \printbibliography function, which probably comes from the biblatex package. I am fine with using it but I don't understand why they put weird things in brackets at the beginning of every new line. I'd prefer to have something like
[1] Author, (Date), etc...
[2] Author, ...
and so on.
Even on the original file, it writes [Smi12], [Smi13] and I don't want that to appear on the PDF file.
Thanks in advance!
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Using bibTex on Orange Legrand Book
What the template does is nothing strange, this is an alphabetical label as is used in many disciplines, you on the other hand want a numerical label. Use
Package apacite would give you an author-date style, so not what you want.
style=numeric
.Package apacite would give you an author-date style, so not what you want.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Using bibTex on Orange Legrand Book
Thank you! What if I want the list in the alphabetical order but without anything on the left?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Using bibTex on Orange Legrand Book
Probably
style=authoryear
.The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Using bibTex on Orange Legrand Book
Great, it works, thanks a lot!
In the meantime, my professor sent me a .bst file he uses for the bibliography.
Is there any way to include it in the structure.tex file?
(Sorry for all those questions! I'm not very familiar with the use of templates)
In the meantime, my professor sent me a .bst file he uses for the bibliography.
Is there any way to include it in the structure.tex file?
(Sorry for all those questions! I'm not very familiar with the use of templates)
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Using bibTex on Orange Legrand Book
If you want to (have to) use bst files, that means switching back to the old BibTeX system.
Please ask you professor if the current output is ok and valid. If he wants the bibliography to look exactly like it would with the bst-file, we can do that.
Honestly, often advisors tell to use something because they just don't know the alternatives, so in my personal opinion, just ask them. That's their job.
Please ask you professor if the current output is ok and valid. If he wants the bibliography to look exactly like it would with the bst-file, we can do that.
Honestly, often advisors tell to use something because they just don't know the alternatives, so in my personal opinion, just ask them. That's their job.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Using bibTex on Orange Legrand Book
Yeah, apparently he exactly wants that... That I use his bst file.
Is that hard to use with structure.tex?
Is that hard to use with structure.tex?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Using bibTex on Orange Legrand Book
Delete everything that has to do with the new biblatex system, and use the old one.
You might also need package natbib.
Code: Select all
\bibliographystyle{whatHeWants}
\bibliography{yourDatabase}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.