mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Allow footnotes in floating tables via tablefootnote package
See #808.
(cherry picked from commit 5017a0a1c6
)
This commit is contained in:
parent
c2d121f663
commit
55bc365872
@ -369,6 +369,7 @@
|
|||||||
\TestPackage{subfig}
|
\TestPackage{subfig}
|
||||||
\TestPackage{subscript}
|
\TestPackage{subscript}
|
||||||
\TestPackage{Sweave}
|
\TestPackage{Sweave}
|
||||||
|
\TestPackage{tablefootnote}
|
||||||
\TestPackage{tcolorbox}
|
\TestPackage{tcolorbox}
|
||||||
\TestPackage{textcomp}
|
\TestPackage{textcomp}
|
||||||
\TestPackage{thswitch}
|
\TestPackage{thswitch}
|
||||||
|
@ -5178,8 +5178,8 @@ Notes: The package
|
|||||||
footnote
|
footnote
|
||||||
\family default
|
\family default
|
||||||
is needed by \SpecialChar LyX
|
is needed by \SpecialChar LyX
|
||||||
to allow footnotes in non-floating tables and multi-page
|
to allow footnotes in description items, non-floating tables
|
||||||
table headers and footers.
|
and multi-page table headers and footers.
|
||||||
|
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
@ -5307,6 +5307,35 @@ longtable
|
|||||||
to be able to output correctly multipage tables.
|
to be able to output correctly multipage tables.
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
tablefootnote
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Found:
|
||||||
|
\begin_inset Info
|
||||||
|
type "package"
|
||||||
|
arg "tablefootnote"
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
CTAN:
|
||||||
|
\family typewriter
|
||||||
|
macros/latex/contrib/tablefootnote/
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Description
|
||||||
|
Notes: The package
|
||||||
|
\family sans
|
||||||
|
tablefootnote
|
||||||
|
\family default
|
||||||
|
is needed by \SpecialChar LyX
|
||||||
|
to be able to output footnotes in floating tables.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
\begin_layout Subsection
|
\begin_layout Subsection
|
||||||
textcomp
|
textcomp
|
||||||
\end_layout
|
\end_layout
|
||||||
|
@ -122,6 +122,13 @@ InsetLayout Foot:InTitle
|
|||||||
EndHTMLStyle
|
EndHTMLStyle
|
||||||
End
|
End
|
||||||
|
|
||||||
|
InsetLayout Foot:InFloatTable
|
||||||
|
CopyStyle Foot
|
||||||
|
LatexName tablefootnote
|
||||||
|
Requires tablefootnote
|
||||||
|
End
|
||||||
|
|
||||||
|
|
||||||
InsetLayout Note:Comment
|
InsetLayout Note:Comment
|
||||||
LabelString Comment
|
LabelString Comment
|
||||||
LatexType environment
|
LatexType environment
|
||||||
|
@ -975,6 +975,7 @@ char const * simplefeatures[] = {
|
|||||||
"forest",
|
"forest",
|
||||||
"varwidth",
|
"varwidth",
|
||||||
"footnote",
|
"footnote",
|
||||||
|
"tablefootnote",
|
||||||
};
|
};
|
||||||
|
|
||||||
char const * bibliofeatures[] = {
|
char const * bibliofeatures[] = {
|
||||||
|
@ -34,13 +34,17 @@ using namespace std;
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
InsetFoot::InsetFoot(Buffer * buf)
|
InsetFoot::InsetFoot(Buffer * buf)
|
||||||
: InsetFootlike(buf), intitle_(false)
|
: InsetFootlike(buf), intitle_(false), infloattable_(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
docstring InsetFoot::layoutName() const
|
docstring InsetFoot::layoutName() const
|
||||||
{
|
{
|
||||||
return intitle_ ? from_ascii("Foot:InTitle") : from_ascii("Foot");
|
if (intitle_)
|
||||||
|
return from_ascii("Foot:InTitle");
|
||||||
|
else if (infloattable_)
|
||||||
|
return from_ascii("Foot:InFloatTable");
|
||||||
|
return from_ascii("Foot");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -54,6 +58,12 @@ void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype)
|
|||||||
}
|
}
|
||||||
|
|
||||||
intitle_ = false;
|
intitle_ = false;
|
||||||
|
infloattable_ = false;
|
||||||
|
bool intable = false;
|
||||||
|
if (it.innerInsetOfType(TABULAR_CODE) != 0)
|
||||||
|
intable = true;
|
||||||
|
if (it.innerInsetOfType(FLOAT_CODE) != 0)
|
||||||
|
infloattable_ = intable;
|
||||||
for (size_type sl = 0 ; sl < it.depth() ; ++sl) {
|
for (size_type sl = 0 ; sl < it.depth() ; ++sl) {
|
||||||
if (it[sl].text() && it[sl].paragraph().layout().intitle) {
|
if (it[sl].text() && it[sl].paragraph().layout().intitle) {
|
||||||
intitle_ = true;
|
intitle_ = true;
|
||||||
|
@ -48,6 +48,8 @@ private:
|
|||||||
docstring custom_label_;
|
docstring custom_label_;
|
||||||
///
|
///
|
||||||
bool intitle_;
|
bool intitle_;
|
||||||
|
///
|
||||||
|
bool infloattable_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -3427,7 +3427,7 @@ void Tabular::validate(LaTeXFeatures & features) const
|
|||||||
// Tell footnote that we need a savenote
|
// Tell footnote that we need a savenote
|
||||||
// environment in non-long tables or
|
// environment in non-long tables or
|
||||||
// longtable headers/footers
|
// longtable headers/footers
|
||||||
if (!is_long_tabular)
|
else if (!is_long_tabular && !features.inFloat())
|
||||||
features.saveNoteEnv("tabular");
|
features.saveNoteEnv("tabular");
|
||||||
else if (!isValidRow(cellRow(cell)))
|
else if (!isValidRow(cellRow(cell)))
|
||||||
features.saveNoteEnv("longtable");
|
features.saveNoteEnv("longtable");
|
||||||
|
Loading…
Reference in New Issue
Block a user