Skip to content

Commit

Permalink
Use LaTeX free title for CrossRef search #1424
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb committed Feb 9, 2017
1 parent 192e4dd commit 5053a32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static Optional<DOI> findDOI(BibEntry entry) {
Optional<DOI> doi = Optional.empty();

// title is minimum requirement
Optional<String> title = entry.getField(FieldName.TITLE);
Optional<String> title = entry.getLatexFreeField(FieldName.TITLE);

if (!title.isPresent() || title.get().isEmpty()) {
return doi;
Expand Down

0 comments on commit 5053a32

Please sign in to comment.