citation-style-language / styles

Official repository for Citation Style Language (CSL) citation styles.
https://citationstyles.org/
3.27k stars 3.76k forks source link

[Help] Suppress `pages` in Bibliography #4795

Closed smhmd closed 4 years ago

smhmd commented 4 years ago

Using https://github.com/citation-style-language/styles/blob/master/chicago-fullnote-bibliography-with-ibid.csl

Is there a way to suppress pages (bib entry) from the Bibliography and only include them in the footnotes? (professor wants a unified bibliography entry.)

from: image

to: image

While maintaining different pages in the footnotes. (Appending them in the citation is not correct because sometimes I have URLs that should go last.)

In order to have different pages for different citations, I had to duplicate bib entries:

@article{devers_2011_34,
  title = {I know how to do the play now: A Part of Willy Loman in Synecdoche, New York},
  author = {Devers, Rebecca},
  journal = {The Arthur Miller Journal},
  volume = {6},
  number = {2},
  year = {2011},
  pages = {34},
  publisher = {The Arthur Miller Society}
}

@article{devers_2011_33,
  title = {I know how to do the play now: A Part of Willy Loman in Synecdoche, New York},
  author = {Devers, Rebecca},
  journal = {The Arthur Miller Journal},
  volume = {6},
  number = {2},
  year = {2011},
  pages = {33},
  publisher = {The Arthur Miller Society}
}

Is this the right way to do it? (I'm using R markdown, btw, which allows LaTeX, of course.)

smhmd commented 4 years ago

I learned how to use pages properly https://tex.stackexchange.com/a/544608/215815