[Tex/LaTex] Some fields don’t show up or are missing formatting in the bibliography even though I have entries for them

biblatexbibliographies

I am trying to add several types of bibliography entries using the "standard" BibLaTeX options in LaTex editor. For example:

I have a multi-author book, so I enter each name in the Author field with commas, but they erratically show up in the entry.

The date or year entry often does not show up.

I have a court case that I used an "article" format for, with creative use of some of the optional fields to get the full citation, but not all the fields show up, so I have to jam everything into the title.

Is there a way to make LaTeX interpret the bibliography file more "literally", and not try to interpret each entry?

Here are some actual entries in my .bib file that are not fully displaying (missing date field):

@book{ELA, 
  author = {Tod I. Zuckerman Thomas J. Bois II Thomas M.Johnson}, 
  title = {Envrionmental Liability Allocation: Law and Practice}, 
  date = {2011}, chapter = {3}
}

@book{Rodricks, 
  author = {Joseph V. Rodricks}, 
  title = {Calculated Risks}, 
  date = {2007}, 
  edition = {2nd}, 
  publisher = {Cambridge University Press}
}

Best Answer

See here for details on entering multiple authors.

To display the information you require, search for BibTeX styles (good survey here) that use the fields desired. You may find that styles specific to your area of study include the fields you are expecting.

Not all styles use information from every field. For cases where the majority of the bibliography is as desired, but a few references are missing information, you can use the note field, which is always appended to the bib entry. But this should be used sparingly.

Related Question