Map CSL 'event' to Zotero 'conference' fields

See this topic. Basically, event needs to be mapped to conference name and event-place to conference place. Currently the CSL syntax summary page says there is no mapping.
  • already mapped--see cite.js:

    Zotero.CSL.Item._zoteroFieldMap = {
    1988 "long":{
    1989 "title":"title",
    1990 "container-title":["publicationTitle", "reporter", "code"], /* reporter and code should move to SQL mapping tables */
    1991 "collection-title":["seriesTitle", "series"],
    1992 "collection-number":"seriesNumber",
    1993 "publisher":["publisher", "distributor"], /* distributor should move to SQL mapping tables */
    1994 "publisher-place":"place",
    1995 "page":"pages",
    1996 "volume":"volume",
    1997 "issue":"issue",
    1998 "number-of-volumes":"numberOfVolumes",
    1999 "edition":"edition",
    2000 "version":"version",
    2001 "section":"section",
    2002 "genre":["type", "artworkSize"], /* artworkSize should move to SQL mapping tables, or added as a CSL variable */
    2003 "medium":"medium",
    2004 "archive":"repository",
    2005 "archive_location":"archiveLocation",
    2006 "event":["meetingName", "conferenceName"], /* these should be mapped to the same base field in SQL mapping tables */
    2007 "event-place":"place",
    2008 "abstract":"abstractNote",
    2009 "URL":"url",
    2010 "DOI":"DOI",
    2011 "ISBN" : "ISBN",
    2012 "call-number":"callNumber",
    2013 "note":"extra",
    2014 "number":"number",
    2015 "references":"history"
    2016 },
    2017 "short":{
    2018 "title":["shortTitle", "title"],
    2019 "container-title":"journalAbbreviation",
    2020 "genre":["shortTitle", "type"] /* needed for subsequent citations of items with no title */
    2021 }
    2022 }
Sign In or Register to comment.