I am using the template to write my master thesis ..... great one by the way.
I have a question, when i edit the bibliography then run the
main.tex
, i don't see the changes in the main.pdf
.Do you know why ?
Bakkar90
main.tex
, i don't see the changes in the main.pdf
.Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
main.tex
and then recompile using pdflatex
twice to see the changes. You should be able to do it from your compiler (find a drop-down menu with BibTeX as an option) or via the command line by navigating to the template folder and typing bibtex main
.Code: Select all
I found no \bibdata command- while reading file main.aux
I found no \bibstyle command- while reading file main.aux
\cite
commands, and \bibliography
and \bibliographystyle
commands in main.tex.\end{document}
command!\bibliographystyle{Style}
acm
was the only one that didn't make trouble.natbib
\usepackage[round]{natbib}
main.tex
:Code: Select all
\usepackage[square, numbers, comma, sort&compress]{natbib}
numbers
" and you will get the author-year style you are after. You can also change the square brackets to round if you wish.Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis