mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
tex2lyx: support algorithm2e (#8728)
This commit is contained in:
parent
bab58480bc
commit
f76a8c8ab1
@ -960,6 +960,18 @@ void Preamble::handle_package(Parser &p, string const & name,
|
||||
else if (name == "hyperref")
|
||||
handle_hyperref(options);
|
||||
|
||||
else if (name == "algorithm2e") {
|
||||
// Load "algorithm2e" module
|
||||
addModule("algorithm2e");
|
||||
// Add the package options to the global document options
|
||||
if (!options.empty()) {
|
||||
if (h_options.empty())
|
||||
h_options = join(options, ",");
|
||||
else
|
||||
h_options += ',' + join(options, ",");
|
||||
}
|
||||
}
|
||||
|
||||
else if (!in_lyx_preamble) {
|
||||
if (options.empty())
|
||||
h_preamble << "\\usepackage{" << name << '}';
|
||||
|
Loading…
Reference in New Issue
Block a user