h******d 发帖数: 81 | 1 In a tex editor, I create a database file for my references, and save as .
bib file, then I create a normal latex file using standard command:
\bibliographystyle{}
\bibliography
but I run
latex {filename}
bibtex
latex
latex
I just got a paper with only a "Reference" shown, no my bibliography.
What's wrong?
Thanks for help |
S**I 发帖数: 15689 | 2 \bibliography{references} %expect file "references.bib"
【在 h******d 的大作中提到】 : In a tex editor, I create a database file for my references, and save as . : bib file, then I create a normal latex file using standard command: : \bibliographystyle{} : \bibliography : but I run : latex {filename} : bibtex : latex : latex : I just got a paper with only a "Reference" shown, no my bibliography.
|
h******d 发帖数: 81 | 3 Yes,
\bibliographystyle{plain}
\bibliogrphy{file.bib}
but I still don't get anything except"Reference".
for .bib file, I put
@Article{,
author = {K. Costello},
title = {The Gromov-Witten potential associated to a TCFT},
journal = {Journal of Topology},
year = {2009},
OPTkey = {•},
OPTvolume = {2},
OPTnumber = {4},
OPTpages = {779-822},
OPTmonth = {•},
OPTnote = {math.QA/0509264},
OPTannote = {•}
}
then I click "save", then choose file name: file.bib, is this correct?
Does the e
【在 S**I 的大作中提到】 : \bibliography{references} %expect file "references.bib"
|
a**e 发帖数: 5794 | 4 你在正文中怎样引用的?
【在 h******d 的大作中提到】 : In a tex editor, I create a database file for my references, and save as . : bib file, then I create a normal latex file using standard command: : \bibliographystyle{} : \bibliography : but I run : latex {filename} : bibtex : latex : latex : I just got a paper with only a "Reference" shown, no my bibliography.
|
h******d 发帖数: 81 | 5 just use
\bibliographystyle{plain}
\bibliogrphy{file}
Is there anything wrong? I suspect the creation of .bib file is right or
wrong?(when I save the file, I need to add .bib myself, the dafault
extension name is just .tex, is it right or wrong?)
【在 a**e 的大作中提到】 : 你在正文中怎样引用的?
|
a**e 发帖数: 5794 | 6
这句是设定格式
这句是列出参考文献
但是我问的是,你在正文中怎样引用的?一般是\cite{ref_key}
【在 h******d 的大作中提到】 : just use : \bibliographystyle{plain} : \bibliogrphy{file} : Is there anything wrong? I suspect the creation of .bib file is right or : wrong?(when I save the file, I need to add .bib myself, the dafault : extension name is just .tex, is it right or wrong?)
|
h******d 发帖数: 81 | 7 但我就想列出reference啊. 列不出来!!!
【在 a**e 的大作中提到】 : : 这句是设定格式 : 这句是列出参考文献 : 但是我问的是,你在正文中怎样引用的?一般是\cite{ref_key}
|
a**n 发帖数: 3801 | 8 你文章里没引用?
【在 h******d 的大作中提到】 : 但我就想列出reference啊. 列不出来!!!
|
h******d 发帖数: 81 | 9 list the reference in the back needs citation in the paper?
【在 a**n 的大作中提到】 : 你文章里没引用?
|
g*****1 发帖数: 173 | 10 如果文章中没有引用的话可以用
\nocite{*}
列出所有的参考文献。 |
|
|
h******d 发帖数: 81 | 11 Is the command:
\documentclass{article}
\begin{document}
***** %body
\notice{*}
\bibliographystyle{plain}
\bibliography{file}
\end{document}
?
【在 g*****1 的大作中提到】 : 如果文章中没有引用的话可以用 : \nocite{*} : 列出所有的参考文献。
|
a**n 发帖数: 3801 | 12 nocite不是notice
【在 h******d 的大作中提到】 : Is the command: : \documentclass{article} : \begin{document} : ***** %body : \notice{*} : \bibliographystyle{plain} : \bibliography{file} : \end{document} : ?
|
h******d 发帖数: 81 | 13 I tried, it just shows the first article in the file.bib, the following
iterms are missing!
【在 a**n 的大作中提到】 : nocite不是notice
|
b*****n 发帖数: 71 | 14 您的bib文件里面bibkey都没有,当然没法引用……
【在 h******d 的大作中提到】 : I tried, it just shows the first article in the file.bib, the following : iterms are missing!
|
g*****1 发帖数: 173 | 15 对,有可能是这个问题,bib文件里面的参考文献格式如下,
@inproceedings{DBLP:conf/chi/LeskovecHK10, //这一行是key。
author = {Jure Leskovec and
Daniel P. Huttenlocher and
Jon M. Kleinberg},
title = {Signed networks in social media},
booktitle = {CHI},
year = {2010},
pages = {1361-1370},
ee = {http://doi.acm.org/10.1145/1753326.1753532},
crossref = {DBLP:conf/chi/2010},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
【在 b*****n 的大作中提到】 : 您的bib文件里面bibkey都没有,当然没法引用……
|