mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
Compare commits
3 Commits
b1c388207e
...
b9c8f2c3e2
Author | SHA1 | Date | |
---|---|---|---|
|
b9c8f2c3e2 | ||
|
f4a3f4f29b | ||
|
1865738417 |
@ -179,10 +179,6 @@ export/examples/ru/Presentations/Beamer_lyx(16|20)
|
||||
# that we want "&" rather than "and" (in APA context).
|
||||
# see: https://www.mail-archive.com/search?l=mid&q=ildx4xd4o7ybeqroh3blxgnxqnsqnte256utip2fbmcwi4zolz%40wsh7ez36kkhl
|
||||
export/templates/Articles/American_Psychological_Association_%28APA%29,_v._7_xhtml
|
||||
#
|
||||
# from Jürgen: ampersands in the bibliography (as in "Hartley & Marks" here)
|
||||
# need to be transferred to & in DocBook.
|
||||
export/examples/es/Handouts/Tufte_Handout_xhtml
|
||||
|
||||
|
||||
# ==============================================================
|
||||
|
@ -663,7 +663,9 @@ docstring InsetCitation::xhtml(XMLStream & xs, OutputParams const &) const
|
||||
return docstring();
|
||||
|
||||
// have to output this raw, because generateLabel() will include tags
|
||||
xs << XMLStream::ESCAPE_NONE << generateLabel(true);
|
||||
// but we need to escape standalone ampersands
|
||||
xs << XMLStream::ESCAPE_NONE
|
||||
<< subst(generateLabel(true), from_ascii(" & "), from_ascii(" & "));
|
||||
|
||||
return docstring();
|
||||
}
|
||||
|
@ -217,6 +217,12 @@ InsetMathHull & InsetMathHull::operator=(InsetMathHull const & other)
|
||||
}
|
||||
|
||||
|
||||
docstring InsetMathHull::layoutName() const
|
||||
{
|
||||
return "Formula:" + hullName(type_);
|
||||
}
|
||||
|
||||
|
||||
void InsetMathHull::setBuffer(Buffer & buffer)
|
||||
{
|
||||
InsetMathGrid::setBuffer(buffer);
|
||||
|
@ -47,6 +47,8 @@ public:
|
||||
///
|
||||
virtual ~InsetMathHull();
|
||||
///
|
||||
docstring layoutName() const override;
|
||||
///
|
||||
void setBuffer(Buffer &) override;
|
||||
///
|
||||
void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
|
||||
|
Loading…
Reference in New Issue
Block a user