mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
* BiblioInfo.cpp:
- convert author/editor to proper unicode. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@30073 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a676d02970
commit
23345956ef
@ -219,9 +219,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_;
|
||||
}
|
||||
|
@ -91,6 +91,10 @@ What's new
|
||||
|
||||
- Fix display of BibTeX entries in the info field of the citation
|
||||
dialog by only converting text mode latex macros to unicode points.
|
||||
|
||||
- Convert LaTeX macros to proper unicode characters for the display
|
||||
of authors/editors on the citation inset button.
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user