All Questions
Tagged with include bibliographies
14 questions
0
votes
0
answers
24
views
Specify additional include directories within a tex file [duplicate]
I want my document to use class files, style files or bibliography style files located in some subdirectory of my TeX document's directory. Sometimes I can sorta-kinda- use, say,
\documentclass{...
0
votes
0
answers
47
views
LaTeX citation with included chapters
this is my first time asking a question at StackExchange and my first time using Latex to write something so pls excuse some form mistakes. I already invested a lot of time to find my mistake while ...
0
votes
1
answer
59
views
Using \include(only) to produce 2 pdf-s: text and references
This is what I want to do:
you keep the references in the same document, but in a file included
with \include. Then you can use \includeonly to produce separate PDFs,
one without references and ...
0
votes
1
answer
870
views
Error in compiling \includepdf
My latex file is something like this:
\usepackage{pdfpages}
\begin{document}
...
\bibliographystyle{abbrv}
\bibliography{my_bib}
\includepdf[pages=-]{my_file.pdf}
\end{document}
The ...
0
votes
0
answers
221
views
Is there a version of \include and \input for bibtex? [duplicate]
I'd like to spread out my references between multiple bibtex files. I tried putting all my references into a file called etho.bib, then put \input{etho.bib} into my main bibtex file. This didn't word. ...
2
votes
0
answers
201
views
References undefinded when using \include{filename}
I am compiling my thesis where I have a rootfile and each chapter is read in with \include{chapterfolder/chaptername}. Everything works but the references, they are all undefinded. When I run BibTex ...
2
votes
1
answer
567
views
Bibulous not recognizing references in included file
I am using the Bibulous tool to create nicely customizable bib styles (see also Create clean and simple custom bibstyle)
i.e. this tool uses an alternative command to parse the *.bib file and create ...
3
votes
0
answers
840
views
\include{} and bibtex [closed]
I can't make \include{} and BibTeX work together for some reasons. The bibliography is displayed but not the references. They all appear with ?. What is wrong with me?
Here is my code :
\...
1
vote
0
answers
973
views
Error Extra \else \include after using bibtex for each \include using chapterbib [duplicate]
Thanks first of all for the previous times that I have already found answers to my problems without having to post anything!
My problems is as follows: when I compile my main file only after I have ...
3
votes
1
answer
2k
views
How to use reftex in multiple files
I tried some solutions but fail so far.
I divide large data into multiple files and then include all of them in main file. I used emacs24. Here is general of my main.tex file
\include{chapter1}
\...
0
votes
1
answer
378
views
Bibliography & \include
I am working on a big project divided, and i've decided that the best way to go about it is to write separately each chapter and then simply used the \include command on the main document. However, I ...
3
votes
1
answer
2k
views
\bibentry problem with chapterbib package
In my document I want to create a separate bibliography for each chapter. This works fine by using the chapterbib package. However, \bibentry does not work anymore in included files when invoking the ...
1
vote
1
answer
261
views
Include vs Input in my case
Suppose you have two fully finished thesis, with their own bibliography and their own appendices. When I include one into the other, there is (obviously) some interference between the two different ...
24
votes
3
answers
19k
views
Multiple bibliographies
I have the following:
\documentclass{report}
\begin{document}
\include{chapter1}
\include{chapter2}
\end{document}
I also have a reference.bib file, with entries book1, book2 and book3.
chapter1....