如何在报告中包含我自己的出版物列表?
这是我的 tex 文件:
\documentclass{article}
\usepackage{natbib}
% whatever you need here, basically a good idea is to use your real thesis header
\begin{document}
$ " $ Vacuum Linear Feed Through Drive using Stepper Motor and Lead Screw$ " $ by Kusum Soneji, NUiCONE 2013 ,4th Nirma University International Conference on Engineering.
\nocite{*}
\bibliographystyle{mystyle}
\bibliography{myrefbibfile}
\end{document}
然后我.bbl
为其生成文件。在主文件中如何调用它
答案1
您似乎在使用 natbib 编译包含参考书目的 latex 文件时遇到了麻烦。如果这是真正的问题,请注意以下几点:
1)对于您当前的 MWE 示例,请将文件保存myrefbibfile.bib
在与手稿.tex
文件相同的文件夹中
2) 编译时,请遵循以下顺序:运行 latex,然后运行 bibtex,最后运行 latex 两次。因此,其结果为:latex bibtex latex latex。
您不需要担心在编译过程中创建的.bbl 文件(除了了解您在经验中可能遇到的有关格式化和排序参考书目条目的各种具体问题)。