mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Load covington later
This solves a loading order conflict with beamer-article.
This commit is contained in:
parent
17e2ad927e
commit
00ee54e694
@ -55,9 +55,11 @@ Style Numbered_Example_(multiline)
|
||||
Preamble
|
||||
% Backwards compatibility with covington < 1.1
|
||||
% This code can be removed eventually
|
||||
\@ifundefined{covexample}{%
|
||||
\newenvironment{covexample}{\begin{example}}{\end{example}}%
|
||||
}{}
|
||||
\AtBeginDocument{%
|
||||
\@ifundefined{covexample}{%
|
||||
\newenvironment{covexample}{\begin{example}}{\end{example}}%
|
||||
}{}
|
||||
}
|
||||
EndPreamble
|
||||
Category Linguistics
|
||||
End
|
||||
@ -88,9 +90,11 @@ Style Numbered_Examples_(consecutive)
|
||||
Preamble
|
||||
% Backwards compatibility with covington < 1.1
|
||||
% This code can be removed eventually
|
||||
\@ifundefined{covexamples}{%
|
||||
\newenvironment{covexamples}{\begin{examples}}{\end{examples}}%
|
||||
}{}
|
||||
\AtBeginDocument{%
|
||||
\@ifundefined{covexamples}{%
|
||||
\newenvironment{covexamples}{\begin{examples}}{\end{examples}}%
|
||||
}{}
|
||||
}
|
||||
EndPreamble
|
||||
End
|
||||
|
||||
@ -105,16 +109,18 @@ Style Subexample
|
||||
Preamble
|
||||
% Backwards compatibility with covington < 1.6
|
||||
% This code can be removed eventually
|
||||
\@ifundefined{covsubexamples}{%
|
||||
\newenvironment{covsubexamples}{%
|
||||
\addtolength{\examplenumbersep}{-0.5em}%
|
||||
\begin{covexample}%
|
||||
\begin{enumerate}
|
||||
\renewcommand\theenumi{\alph{enumi}}
|
||||
\renewcommand\labelenumi{(\theenumi)}
|
||||
\renewcommand\p@enumi{\theequation\,}}%
|
||||
{\end{enumerate}\end{covexample}}
|
||||
}{}
|
||||
\AtBeginDocument{%
|
||||
\@ifundefined{covsubexamples}{%
|
||||
\newenvironment{covsubexamples}{%
|
||||
\addtolength{\examplenumbersep}{-0.5em}%
|
||||
\begin{covexample}%
|
||||
\begin{enumerate}
|
||||
\renewcommand\theenumi{\alph{enumi}}
|
||||
\renewcommand\labelenumi{(\theenumi)}
|
||||
\renewcommand\p@enumi{\theequation\,}}%
|
||||
{\end{enumerate}\end{covexample}}
|
||||
}{}
|
||||
}
|
||||
EndPreamble
|
||||
End
|
||||
|
||||
|
@ -2303,6 +2303,10 @@ bool BufferParams::writeLaTeX(otexstream & os, LaTeXFeatures & features,
|
||||
os << "\\usepackage{xunicode}\n";
|
||||
}
|
||||
|
||||
// covington must be loaded after beamerarticle
|
||||
if (features.isRequired("covington"))
|
||||
os << "\\usepackage{covington}\n";
|
||||
|
||||
// Polyglossia must be loaded last ...
|
||||
if (use_polyglossia) {
|
||||
// call the package
|
||||
|
@ -971,7 +971,6 @@ char const * simplefeatures[] = {
|
||||
// "cancel",
|
||||
"ascii",
|
||||
"url",
|
||||
"covington",
|
||||
"csquotes",
|
||||
"enumitem",
|
||||
"endnotes",
|
||||
|
Loading…
Reference in New Issue
Block a user