Moving to short venue names in BibTex generator

This commit is contained in:
Oliver Kennedy 2016-08-01 16:42:55 -04:00
parent a5904bfe0e
commit 0984453ff5

View file

@ -1,5 +1,4 @@
module LabMetadata module LabMetadata
@@cnames = {} @@cnames = {}
@ -95,7 +94,7 @@ module LabMetadata
{ {
author: authors.join(" and "), author: authors.join(" and "),
title: publication["title"], title: publication["title"],
booktitle: LabMetadata.venue_name(venue, size: :full), booktitle: LabMetadata.venue_name(venue, size: :short),
year: publication["year"] year: publication["year"]
} }
] ]
@ -104,7 +103,7 @@ module LabMetadata
{ {
author: authors.join(" and "), author: authors.join(" and "),
title: publication["title"], title: publication["title"],
journal: LabMetadata.venue_name(venue, size: :full), journal: LabMetadata.venue_name(venue, size: :short),
volume: publication["volume"], volume: publication["volume"],
number: publication["number"], number: publication["number"],
year: publication["year"], year: publication["year"],
@ -117,7 +116,7 @@ module LabMetadata
{ {
author: authors.join(" and "), author: authors.join(" and "),
title: publication["title"], title: publication["title"],
institution: LabMetadata.venue_name(venue, size: :full), institution: LabMetadata.venue_name(venue, size: :short),
year: publication["year"] year: publication["year"]
} }
] ]