[Tex/LaTex] Problem referencing a survey report type of document

bibtex

I have an issue referencing a document in LaTeX. The correct reference would be:

Harvest Choice, 2006. "Tanzania National Sample Census of Agriculture 2002/2003: Small Holder Agriculture, Volume II: Crop Sector – National Report." International Food Policy Research Institute, Washington, DC., and University of Minnesota, St. Paul, MN. Available online at http://harvestchoice.org/publications/tanzania-national-sample-census-agriculture-20022003-small-holder-agriculture-volume-ii.

I have tried many combinations and the best I could come up with was using the following on bibtex:

@TechReport{TN,
    author = {Harvest Choice},
    title = {Tanzania National Sample Census of Agriculture 2002/2003: Small Holder Agriculture, Volume 2: Crop Sector National Report},
    institution = {International Food Policy Research Institute, Washington, DC., and University of Minnesota, St. Paul, MN},
    year = {2006} 
}

However, this yields 3 problems:

  1. It cannot get to "Harvest Choice" being referenced, I only have: "Harvest, C" as it if were an author

  2. I do not know how to insert the web link.

  3. The reference specifies it is a technical report, which it is not

Best Answer

I had the same issue lately, so maybe this help. But as usually, this is depending on your bibliography style

1 - Use double braces author = {{Harvest Choice}} to avoid the reformatting of things via bibtex

2 - I used the url = {} field and a latex url command within it: url = {\url{yadayada}}

3 - You could try other bibliography styles or edit the .bst file of the one you currently use. But first, you could try the @Misc bibtex entry type with the same fields, maybe it creates the desired outcome.