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
.NEW: TikZ book now 40% off at Amazon.com for a short time.
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.NEW: TikZ book now 40% off at Amazon.com for a short time.