From 0984453ff5aa2e304784686fd0f38d8dd6d88e7f Mon Sep 17 00:00:00 2001 From: Oliver Kennedy Date: Mon, 1 Aug 2016 16:42:55 -0400 Subject: [PATCH] Moving to short venue names in BibTex generator --- lib/lab_metadata.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/lab_metadata.rb b/lib/lab_metadata.rb index 64181bb0..a76c9c0f 100644 --- a/lib/lab_metadata.rb +++ b/lib/lab_metadata.rb @@ -1,5 +1,4 @@ - module LabMetadata @@cnames = {} @@ -95,7 +94,7 @@ module LabMetadata { author: authors.join(" and "), title: publication["title"], - booktitle: LabMetadata.venue_name(venue, size: :full), + booktitle: LabMetadata.venue_name(venue, size: :short), year: publication["year"] } ] @@ -104,7 +103,7 @@ module LabMetadata { author: authors.join(" and "), title: publication["title"], - journal: LabMetadata.venue_name(venue, size: :full), + journal: LabMetadata.venue_name(venue, size: :short), volume: publication["volume"], number: publication["number"], year: publication["year"], @@ -117,7 +116,7 @@ module LabMetadata { author: authors.join(" and "), title: publication["title"], - institution: LabMetadata.venue_name(venue, size: :full), + institution: LabMetadata.venue_name(venue, size: :short), year: publication["year"] } ]