fix #1983 (rest of #4606): add missing \var*** characters (gig Greek math letters)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36465 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2010-11-25 01:27:53 +00:00
parent 0503c0fa6b
commit e16ee11f18
15 changed files with 52 additions and 15 deletions

View File

@ -2072,22 +2072,33 @@ lib_images_math_files = Split('''
upsilon2.png
upuparrows.png
urcorner.png
vardelta.png
varepsilon.png
vargamma.png
varkappa.png
varnothing.png
varphi.png
varpi.png
varpropto.png
varrho.png
varsigma.png
varsubsetneq.png
varsubsetneqq.png
varsupsetneq.png
varsupsetneqq.png
vartheta.png
vartriangle.png
vartriangleleft.png
vartriangleright.png
varlambda.png
varnothing.png
varomega.png
varphi.png
varphi2.png
varpi.png
varpi2.png
varpropto.png
varpsi.png
varrho.png
varsigma.png
varsigma2.png
varsubsetneq.png
varsubsetneqq.png
varsupsetneq.png
varsupsetneqq.png
vartheta.png
vartheta2.png
vartriangle.png
vartriangleleft.png
vartriangleright.png
varupsilon.png
varxi.png
vdash.png
vdash2.png
vdash3.png

View File

@ -942,22 +942,33 @@ dist_imagesmath_DATA = \
images/math/upsilon2.png \
images/math/upuparrows.png \
images/math/urcorner.png \
images/math/vardelta.png \
images/math/varepsilon.png \
images/math/vargamma.png \
images/math/varkappa.png \
images/math/varlambda.png \
images/math/varnothing.png \
images/math/varomega.png \
images/math/varphi.png \
images/math/varphi2.png \
images/math/varpi.png \
images/math/varpi2.png \
images/math/varpropto.png \
images/math/varpsi.png \
images/math/varrho.png \
images/math/varsigma.png \
images/math/varsigma2.png \
images/math/varsubsetneq.png \
images/math/varsubsetneqq.png \
images/math/varsupsetneq.png \
images/math/varsupsetneqq.png \
images/math/vartheta.png \
images/math/vartheta2.png \
images/math/vartriangle.png \
images/math/vartriangleleft.png \
images/math/vartriangleright.png \
images/math/varupsilon.png \
images/math/varxi.png \
images/math/vdash.png \
images/math/vdash2.png \
images/math/vdash3.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

BIN
lib/images/math/varphi2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

BIN
lib/images/math/varpi2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

BIN
lib/images/math/varpsi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

BIN
lib/images/math/varxi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

View File

@ -553,6 +553,17 @@ ToolbarSet
Item "chi" "math-insert \chi"
Item "psi" "math-insert \psi"
Item "omega" "math-insert \omega"
Item "varGamma" "math-insert \varGamma"
Item "varDelta" "math-insert \varDelta"
Item "varTheta" "math-insert \varTheta"
Item "varLambda" "math-insert \varLambda"
Item "varXi" "math-insert \varXi"
Item "varPi" "math-insert \varPi"
Item "varSigma" "math-insert \varSigma"
Item "varUpsilon" "math-insert \varUpsilon"
Item "varPhi" "math-insert \varPhi"
Item "varPsi" "math-insert \varPsi"
Item "varOmega" "math-insert \varOmega"
Item "Gamma" "math-insert \Gamma"
Item "Delta" "math-insert \Delta"
Item "Theta" "math-insert \Theta"

View File

@ -267,7 +267,11 @@ PngMap sorted_png_map[] = {
{ "nvDash", "nvdash2" },
{ "textrm \\AA", "textrm_AA"},
{ "textrm \\O", "textrm_O"},
{ "vDash", "vdash2" }
{ "vDash", "vdash2" },
{ "varPhi", "varphi2" },
{ "varPi", "varpi2" },
{ "varSigma", "varsigma2" },
{ "varTheta", "vartheta2" }
};
size_t const nr_sorted_png_map = sizeof(sorted_png_map) / sizeof(PngMap);