BibTeX, biblatex and biber ⇒ Citation in LaTex - question mark+author-year
Citation in LaTex - question mark+author-year
Code:
\bibliographystyle{plainnat}
\begin{document}
repeated interactions\cite(Axelrod1985)
\bibliography{C:/citations/library.bib}
\end{document}
the output gives me: repeated interactions [?]Axelrod1985) instead of repeated interactions (Axelrod1985).
Do you know I can get rid of the question mark?
Thanks!
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
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Citation in LaTex - question mark+author-year

See also: Question mark or bold citation key instead of citation number
Off-topic: I would recommend to use biblatex + biber instead of the old fashioned [t]\bibliographystyle[/t] and BibTeX.

Citation in LaTex - question mark+author-year
I attached the .blg file...
Many thanks,
Dan
- Attachments
-
- Eran dissertation proposal.blg
- (964 Bytes) Downloaded 284 times
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
Citation in LaTex - question mark+author-year
\cite(…)
instead of \cite{…}
. Note \cite
is a usual LaTeX command. Only picture commands use (…)
(for coordinates etc.). Generally LaTeX commands use {…}
for mandatory arguments and […]
for optional arguments.Off-topic: I would recommend to learn, how to run LaTeX and the single auxiliary programs yourself. PDFTeXify is a nice helper application, but it may fail and sometimes it is useful to be able to do the single runs on your own to find out the reason of a problem.
