7

I'm writing my thesis. For example, this paper on arxiv. https://arxiv.org/abs/1409.0473

I'm using Overleaf. I used Export Bibtex Citation on arxiv and paste the information into the .bib file. The result is shown as in the graph.

But my prof says I should add the detailed information of the references such as pages, number, and volume.

I'm very confused, how should I do this? Are this information contained in the Bibtex Citation from arxiv?

enter image description here

The exported information is

@misc{https://doi.org/10.48550/arxiv.1409.0473,
  doi = {10.48550/ARXIV.1409.0473},
  
  url = {https://arxiv.org/abs/1409.0473},
  
  author = {Bahdanau, Dzmitry and Cho, Kyunghyun and Bengio, Yoshua},
  
  keywords = {Computation and Language (cs.CL), Machine Learning (cs.LG), Neural and Evolutionary Computing (cs.NE), Machine Learning (stat.ML), FOS: Computer and information sciences, FOS: Computer and information sciences},
  
  title = {Neural Machine Translation by Jointly Learning to Align and Translate},
  
  publisher = {arXiv},
  
  year = {2014},
  
  copyright = {arXiv.org perpetual, non-exclusive license}
}
11
  • 5
    Not an answer, but the paper in your example has actually been published at a conference (see the comment field on arXiv), so unless you need to cite something specifically that's only present in the arXiv version, you should mention the conference as the venue.
    – GoodDeeds
    Commented Feb 20, 2023 at 7:03
  • @GoodDeeds Thank you, I have updated question. But how should I modify my .bib file and cite it in my text to show the information? Is the information of the conference contained in the above exported bib information?
    – user900476
    Commented Feb 20, 2023 at 7:09
  • 1
    @user900476 you will probably either have to add the info manually or look at the conference/journal websites where the papers have been "officially" published if they provide exportable citations.
    – Sursula
    Commented Feb 20, 2023 at 7:13
  • 2
    @user900476 I believe ICLR (and for that matter arXiv) doesn't have the concept of page numbers and volumes. All you can include is venue name and year (and identifier if you cite from arXiv).
    – GoodDeeds
    Commented Feb 20, 2023 at 7:18
  • 1
    @user900476 There is nothing wrong with using arXiv bibtex, as long as you want to cite the arXiv version of a paper, and not the conference/journal version (if it exists).
    – GoodDeeds
    Commented Feb 20, 2023 at 7:21

2 Answers 2

3

TLDR: You should include detailed information about the paper you cite, and you have not done this. This is why your prof is confused.


If the screenshot is how the citation looks in your thesis, then it's obvious why your advisor is confused.

You have shown only the authors' names, title, and year. Anybody reading your thesis will be confused how they are expected to search for the paper, and how they can be sure that they found the same paper that you meant.

This is why, when citing a journal article, you include not only authors' names, title and year, but also journal title, volume, number, and preferrably pages. This will give readers a very clear indication which work has been cited.

If you cite a paper from arXiv, you should include information that will explicitly say that this is an arXiv preprint, and give readers some obvious way to find the paper on arXiv. An arXiv url perfectly fits this purpose, or alternatively you can use any wording that will convey the same information, e.g. "digital preprint, arXiv #1409.0473", or something similar. Your prof should be able to tell which style is preferrable for your thesis.

Note that arXiv url is already present in your bibtex record, so it is just a matter of TeX or BibTeX configuration to have it shown in the citation. My TeXfu is rusty, but I remember tinkering a lot with configs to show the citations exactly as I see fit in my thesis some 10 years ago.

And regarding the comments by your prof, most probably they thought that this is a citation from a journal, and therefore asked to include the said information. Without anything indicating that this is an arXiv publication, it is quite natural to think that this is a journal citation. If you tell them that this is an arXiv paper, they most probably would not require journal name etc., but would require an arXiv url or similar information as I have explained above.

1

Maybe your boss is not aware that your article is available in a standard way / in a journal? From the link you provided I exported the citation the way GoogleScholar suggests it, I think in this way it becomes clear that this is an arXiv article.

@article{bahdanau2014neural,
   title={Neural machine translation by jointly learning to align and translate},
   author={Bahdanau, Dzmitry and Cho, Kyunghyun and Bengio, Yoshua},
   journal={arXiv preprint arXiv:1409.0473},
   year={2014}
}

Keep in mind: What information is being displayed in your references of the compiled PDF in what style/format depends on your bibtex settings. I think in your file bibtex items of class "misc" are simply not displayed with all the information you want to see.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .