Added "cancel" to the GUI handled list of LaTeX packages.

Generalized convert_use_???() and revert_use_???() routines in lyx2lyx.
This commit is contained in:
Kornel Benko 2013-02-27 13:12:03 +01:00
parent 6e2d8cf10a
commit 8f36aef17a
6 changed files with 61 additions and 107 deletions

View File

@ -11,6 +11,10 @@ adjustments are made to tex2lyx and bugs are fixed in lyx2lyx.
-----------------------
2013-02-27 Kornel Benko <kornel@lyx.org>
* Format incremented to 464:
- Added "cancel" to the GUI handled list of LaTeX packages
2013-02-18 Julien Rioux <jrioux@lyx.org>
* Format incremented to 463:
- Use the LyX name of encodings instead of the LaTeX names.

View File

@ -370,36 +370,29 @@ def revert_use_packages(document):
j = j + 1
def convert_use_mathtools(document):
"insert use_package mathtools"
def convert_use_package(document, pkg):
i = find_token(document.header, "\\use_package", 0)
if i == -1:
document.warning("Malformed LyX document: Can't find \\use_package.")
return;
j = find_token(document.preamble, "\\usepackage{mathtools}", 0)
j = find_token(document.preamble, "\\usepackage{" + pkg + "}", 0)
if j == -1:
document.header.insert(i + 1, "\\use_package mathtools 0")
document.header.insert(i + 1, "\\use_package " + pkg + " 0")
else:
document.header.insert(i + 1, "\\use_package mathtools 2")
document.header.insert(i + 1, "\\use_package " + pkg + " 2")
del document.preamble[j]
def revert_use_mathtools(document):
"remove use_package mathtools"
regexp = re.compile(r'(\\use_package\s+mathtools)')
def revert_use_package(document, pkg, commands):
regexp = re.compile(r'(\\use_package\s+%s)' % pkg)
i = find_re(document.header, regexp, 0)
value = "1" # default is auto
if i != -1:
value = get_value(document.header, "\\use_package" , i).split()[1]
del document.header[i]
if value == "2": # on
add_to_preamble(document, ["\\usepackage{mathtools}"])
add_to_preamble(document, ["\\usepackage{" + pkg + "}"])
elif value == "1": # auto
commands = ["mathclap", "mathllap", "mathrlap", \
"lgathered", "rgathered", "vcentcolon", "dblcolon", \
"coloneqq", "Coloneqq", "coloneq", "Coloneq", "eqqcolon", \
"Eqqcolon", "eqcolon", "Eqcolon", "colonapprox", \
"Colonapprox", "colonsim", "Colonsim"]
i = 0
while True:
i = find_token(document.body, '\\begin_inset Formula', i)
@ -413,36 +406,35 @@ def revert_use_mathtools(document):
code = "\n".join(document.body[i:j])
for c in commands:
if code.find("\\%s" % c) != -1:
add_to_preamble(document, ["\\usepackage{mathtools}"])
add_to_preamble(document, ["\\usepackage{" + pkg + "}"])
return
i = j
def convert_use_mathtools(document):
"insert use_package mathtools"
convert_use_package(document, "mathtools")
def revert_use_mathtools(document):
"remove use_package mathtools"
commands = ["mathclap", "mathllap", "mathrlap", \
"lgathered", "rgathered", "vcentcolon", "dblcolon", \
"coloneqq", "Coloneqq", "coloneq", "Coloneq", "eqqcolon", \
"Eqqcolon", "eqcolon", "Eqcolon", "colonapprox", \
"Colonapprox", "colonsim", "Colonsim"]
revert_use_package(document, "mathtools", commands)
def convert_use_stmaryrd(document):
"insert use_package stmaryrd"
i = find_token(document.header, "\\use_package", 0)
if i == -1:
document.warning("Malformed LyX document: Can't find \\use_package.")
return;
j = find_token(document.preamble, "\\usepackage{stmaryrd}", 0)
if j == -1:
document.header.insert(i + 1, "\\use_package stmaryrd 0")
else:
document.header.insert(i + 1, "\\use_package stmaryrd 2")
del document.preamble[j]
convert_use_package(document, "stmaryrd")
def revert_use_stmaryrd(document):
"remove use_package stmaryrd"
regexp = re.compile(r'(\\use_package\s+stmaryrd)')
i = find_re(document.header, regexp, 0)
value = "1" # default is auto
if i != -1:
value = get_value(document.header, "\\use_package" , i).split()[1]
del document.header[i]
if value == "2": # on
add_to_preamble(document, ["\\usepackage{stmaryrd}"])
elif value == "1": # auto
# commands provided by stmaryrd.sty but LyX uses other packages:
# boxdot lightning, bigtriangledown, bigtriangleup
commands = ["shortleftarrow", "shortrightarrow", "shortuparrow", \
"shortdownarrow", "Yup", "Ydown", "Yleft", "Yright", \
"varcurlyvee", "varcurlywedge", "minuso", "baro", \
@ -474,68 +466,19 @@ def revert_use_stmaryrd(document):
"varcopyright", "longarrownot", "Longarrownot", \
"Mapsto", "mapsfrom", "Mapsfrom" "Longmapsto", \
"longmapsfrom", "Longmapsfrom"]
# commands provided by stmaryrd.sty but LyX uses other packages:
# boxdot lightning, bigtriangledown, bigtriangleup
revert_use_package(document, "stmaryrd", commands)
i = 0
while True:
i = find_token(document.body, '\\begin_inset Formula', i)
if i == -1:
return
j = find_end_of_inset(document.body, i)
if j == -1:
document.warning("Malformed LyX document: Can't find end of Formula inset at line " + str(i))
i += 1
continue
code = "\n".join(document.body[i:j])
for c in commands:
if code.find("\\%s" % c) != -1:
add_to_preamble(document, ["\\usepackage{stmaryrd}"])
return
i = j
def convert_use_stackrel(document):
"insert use_package stackrel"
i = find_token(document.header, "\\use_package", 0)
if i == -1:
document.warning("Malformed LyX document: Can't find \\use_package.")
return;
j = find_token(document.preamble, "\\usepackage{stackrel}", 0)
if j == -1:
document.header.insert(i + 1, "\\use_package stackrel 0")
else:
document.header.insert(i + 1, "\\use_package stackrel 2")
del document.preamble[j]
convert_use_package(document, "stackrel")
def revert_use_stackrel(document):
"remove use_package stackrel"
regexp = re.compile(r'(\\use_package\s+stackrel)')
i = find_re(document.header, regexp, 0)
value = "1" # default is auto
if i != -1:
value = get_value(document.header, "\\use_package" , i).split()[1]
del document.header[i]
if value == "2": # on
add_to_preamble(document, ["\\usepackage{stackrel}"])
elif value == "1": # auto
regcmd = re.compile(r'.*\\stackrel\s*\[')
i = 0
while True:
i = find_token(document.body, '\\begin_inset Formula', i)
if i == -1:
return
j = find_end_of_inset(document.body, i)
if j == -1:
document.warning("Malformed LyX document: Can't find end of Formula inset at line " + str(i))
i += 1
continue
code = "\n".join(document.body[i:j])
if regcmd.match(code):
add_to_preamble(document, ["\\usepackage{stackrel}"])
return
i = j
commands = ["stackrel"]
revert_use_package(document, "stackrel", commands)
def convert_cite_engine_type(document):
@ -569,25 +512,11 @@ def revert_cite_engine_type(document):
document.header[i] = "\\cite_engine natbib_" + engine_type
# this is the same, as revert_use_cancel()
def revert_cancel(document):
"add cancel to the preamble if necessary"
commands = ["cancelto", "cancel", "bcancel", "xcancel"]
i = 0
while True:
i = find_token(document.body, '\\begin_inset Formula', i)
if i == -1:
return
j = find_end_of_inset(document.body, i)
if j == -1:
document.warning("Malformed LyX document: Can't find end of Formula inset at line " + str(i))
i += 1
continue
code = "\n".join(document.body[i:j])
for c in commands:
if code.find("\\%s" % c) != -1:
add_to_preamble(document, ["\\usepackage{cancel}"])
return
i = j
revert_use_package(document, "cancel", commands)
def revert_verbatim(document):
@ -887,6 +816,17 @@ def revert_use_amssymb(document):
add_to_preamble(document, ["\\usepackage{amssymb}"])
def convert_use_cancel(document):
"insert use_package cancel"
convert_use_package(document, "cancel")
def revert_use_cancel(document):
"remove use_package cancel"
commands = ["cancel", "bcancel", "xcancel", "cancelto"]
revert_use_package(document, "cancel", commands)
def revert_ancientgreek(document):
"Set the document language for ancientgreek to greek"
@ -3785,9 +3725,11 @@ convert = [
[461, []],
[462, []],
[463, [convert_encodings]],
[464, [convert_use_cancel]],
]
revert = [
[463, [revert_use_cancel]],
[462, [revert_encodings]],
[461, [revert_new_libertines]],
[460, [revert_kurier_fonts]],

View File

@ -450,6 +450,7 @@ vector<string> const & BufferParams::auto_packages()
// adding a package here implies a file format change!
packages.push_back("amsmath");
packages.push_back("amssymb");
packages.push_back("cancel");
packages.push_back("esint");
packages.push_back("mathdots");
packages.push_back("mathtools");

View File

@ -698,7 +698,7 @@ char const * simplefeatures[] = {
"mathrsfs",
"mathabx",
"mathtools",
"cancel",
// "cancel",
"ascii",
"url",
"covington",
@ -833,6 +833,9 @@ string const LaTeXFeatures::getPackages() const
if (mustProvide("fixltx2e"))
packages << "\\usepackage{fixltx2e}\n";
if (mustProvide("cancel") &&
params_.use_package("cancel") != BufferParams::package_off)
packages << "\\usepackage{cancel}\n";
// wasysym is a simple feature, but it must be after amsmath if both
// are used
// wasysym redefines some integrals (e.g. iint) from amsmath. That

View File

@ -140,6 +140,10 @@ char const * packages_gui[][4] =
N_("&Use amssymb package automatically"),
N_("Use amssymb package"),
N_("The LaTeX package amssymb is only used if symbols from the AMS math toolbars are inserted into formulas")},
{"cancel",
N_("Use cancel package automatically"),
N_("Use cancel package"),
N_("The LaTeX package cancel is only used if \\cancel commands are used in formulas")},
{"esint",
N_("Use esint package &automatically"),
N_("Use &esint package"),

View File

@ -30,8 +30,8 @@ extern char const * const lyx_version_info;
// Do not remove the comment below, so we get merge conflict in
// independent branches. Instead add your own.
#define LYX_FORMAT_LYX 463 // jrioux: encodings renaming
#define LYX_FORMAT_TEX2LYX 463 // jrioux: encodings renaming
#define LYX_FORMAT_LYX 464 // kornel: use_package cancel
#define LYX_FORMAT_TEX2LYX 464 // kornel: use_package cancel
#if LYX_FORMAT_TEX2LYX != LYX_FORMAT_LYX
#ifndef _MSC_VER