我正在尝试将大型 Excel 转换为大型 Bibtex 书目。我首先运行一个示例。我运行了我的代码,但它看起来并不像应该的那样。
\documentclass[11pt]{article}
\begin{document}
\bibliographystyle{plain}
\bibliography{mybib}
@article{article1,
author={Sell, Ralph R.},
title={TRANSFERRED JOBS.},
journal={Work and Occupations},
volume={10},
number={2},
year={1983},
pages={179-206}
}
\end{document}
打印
References
@articlearticle1, author=Sell, Ralph R., title=TRANSFERRED JOBS., journal=Work and Occupations, volume=10, number=2, year=1983, pages=179- 206
我遗漏了什么?
答案1
这会自动写入一个mynewbib.bib
文件并将内容放在其中\begin{filecontents}...\end{filecontents}
。如果mynewbib.bib
已经存在,则不会写入任何内容(覆盖)。
我添加了引用article1
并编写了这份foo.tex
名为
- pdflatex foo
- bibtex foo
- pdflatex foo
进行两次编译pdflatex
对于获取参考文献和 bib 输入的正确性非常重要且必要。
\documentclass[11pt]{article}
\begin{filecontents}{mynewbib.bib}
@article{article1,
author={Sell, Ralph R.},
title={TRANSFERRED JOBS.},
journal={Work and Occupations},
volume={10},
number={2},
year={1983},
pages={179-206}
}
\end{filecontents}
\begin{document}
\cite{article1}
\bibliographystyle{plain}
\bibliography{mynewbib}
\end{document}
如果我使用abstract.bst
下面注释中给出的,输出将是这样的