Show insets as text in the formatted bibliography entry.

This commit is contained in:
Julien Rioux 2011-12-03 22:24:38 +00:00
parent 43893c16ca
commit 3e5c9e51de
2 changed files with 4 additions and 1 deletions

View File

@ -318,7 +318,8 @@ void InsetBibitem::collectBibKeys(InsetIterator const & it) const
keyvalmap.label(bibLabel());
DocIterator doc_it(it);
doc_it.forwardPos();
keyvalmap[from_ascii("ref")] = doc_it.paragraph().asString();
keyvalmap[from_ascii("ref")] = doc_it.paragraph().asString(
AS_STR_INSETS | AS_STR_SKIPDELETE);
buffer().addBibTeXInfo(key, keyvalmap);
}

View File

@ -69,6 +69,8 @@ What's new
- Update a bibliography entry's label also when it is emptied.
- Insets in a bibliography entry are shown as text in the citation dialog.
* DOCUMENTATION AND LOCALIZATION