mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
* BiblioInfo.cpp:
- convert author/editor to proper unicode. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30072 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
411b7a1dec
commit
fc63c87e2e
@ -218,9 +218,9 @@ docstring const BibTeXInfo::getAbbreviatedAuthor() const
|
||||
return authors;
|
||||
}
|
||||
|
||||
docstring author = operator[]("author");
|
||||
docstring author = convertLaTeXCommands(operator[]("author"));
|
||||
if (author.empty()) {
|
||||
author = operator[]("editor");
|
||||
author = convertLaTeXCommands(operator[]("editor"));
|
||||
if (author.empty())
|
||||
return bib_key_;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user