[Tex/LaTex] BibTeX: How to cite an article published in a journal

bibtex

I'm trying to cite this article correctly. Google Scholar has the following bibtex citation, which is not correct because the number of pages is 64, not 6.

@article{ullmann2010bit,
  title={Bit-vector algorithms for binary constraint satisfaction and subgraph isomorphism},
  author={Ullmann, Julian R},
  journal={Journal of Experimental Algorithmics (JEA)},
  volume={15},
  pages={1--6},
  year={2010},
  publisher={ACM}
}

I think the entry was probably generated automatically and it got confused by data in bibtex citation from ACM page, which is pages = {1.6:1.1--1.6:1.64}. The 1.6 actually denotes a chapter or section in the journal, as can be seen on image below, which is cropped part of article's title page.

enter image description here

I would like to remove the 1.6 from the pages entry as it looks weird and non-consistent but still have it in citation. However, when I tried to use chapter = {1.6} for this, the data doesn't appear anywhere in citation, probably because it is an article. What would be preferred way to include this type of information?

Best Answer

If one follows the link you provided, one gets (as of today, at least) the following screenshot:

enter image description here

Observe the "Export Formats" item in the right-hand column. Click on the "BibTeX" sub-item, and you'll get:

@article{Ullmann:2011:BAB:1671970.1921702,
 author = {Ullmann, Julian R.},
 title = {Bit-vector Algorithms for Binary Constraint Satisfaction and Subgraph Isomorphism},
 journal = {J. Exp. Algorithmics},
 issue_date = {2010},
 volume = {15},
 month = feb,
 year = {2011},
 issn = {1084-6654},
 pages = {1.6:1.1--1.6:1.64},
 articleno = {1.6},
 numpages = {1.54},
 url = {http://doi.acm.org/10.1145/1671970.1921702},
 doi = {10.1145/1671970.1921702},
 acmid = {1921702},
 publisher = {ACM},
 address = {New York, NY, USA},
 keywords = {AllDifferent constraint, backtrack, binary constraints, bit-vector, constraint propagation, constraint satisfaction, domain reduction, focus search, forward checking, graph indexing, molecule matching, prematching, signature file, subgraph isomorphism},
}

Obviously, quite a few of the fields will never be processed by BibTeX -- at least not by any BibTeX bib style I've ever come across... -- so the entry may be simplified as follows:

@article{Ullmann:2011,
 author  = {Ullmann, Julian R.},
 title   = {Bit-vector Algorithms for Binary Constraint Satisfaction and 
            Subgraph Isomorphism},
 journal = {Journal of Experimental Algorithmics},
 year    = {2011},
 volume  = {15},
 number  = {1.6},
 pages   = {1.6:1--1.6:64},
 month   = feb,
 issn    = {1084-6654},
 url     = {http://doi.acm.org/10.1145/1671970.1921702},
 doi     = {10.1145/1671970.1921702},
}

Observe that I changed the field name articleno to number. I also rearranged the ordering of some of the fields. This doesn't make a difference to BibTeX, but it (hopefully) makes it easier on humans to scan the information contained in this entry.

Some bib styles may be set up to do something with the month, issn, url, and doi fields; that's why I didn't delete them.