1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
|
/*
* latex.c
*
* Copyright (C) 1999, 2000 Rasca, Berlin
* EMail: thron@gmx.de
*
* Copyright (C) 2001 Adrian Custer, Berkeley
* email: acuster@nature.berkeley.edu
*
* Copyright (C) 2001-2006 Andreas J. Guelzow, Edmonton
* email: aguelzow@taliesin.ca
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* This file contains the LaTeX2e plugin functions.
*
*
* The LaTeX2e function is named:
* latex_file_save()
*
*/
#include <gnumeric-config.h>
#include <gnumeric.h>
#include <gnumeric-gconf.h>
#include "latex.h"
#include <goffice/goffice.h>
#include <workbook-view.h>
#include <workbook.h>
#include <sheet.h>
#include <sheet-merge.h>
#include <style.h>
#include <style-color.h>
#include <font.h>
#include <cell.h>
#include <gnm-format.h>
#include <style-border.h>
#include <sheet-style.h>
#include <parse-util.h>
#include <rendered-value.h>
#include <cellspan.h>
#include <locale.h>
#include <gsf/gsf-output.h>
#include <string.h>
typedef enum {
LATEX_NO_BORDER = 0,
LATEX_SINGLE_BORDER = 1,
LATEX_DOUBLE_BORDER = 2,
LATEX_MAX_BORDER
} latex_border_t;
typedef struct {
latex_border_t latex;
char const *vertical;
char const *horizontal;
} latex_border_translator_t;
/* the index into the following array is GnmStyleBorderType */
static latex_border_translator_t const border_styles[] = {
{LATEX_NO_BORDER, "", "~"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_DOUBLE_BORDER, "||","="},
{LATEX_DOUBLE_BORDER, "||","="},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_SINGLE_BORDER, "|", "-"},
{LATEX_NO_BORDER, "", ""}
};
typedef struct {
char const *p_1;
char const *p_2;
} latex_border_connectors_t;
static latex_border_connectors_t const conn_styles[LATEX_MAX_BORDER]
[LATEX_MAX_BORDER][LATEX_MAX_BORDER][LATEX_MAX_BORDER] = {
/* FIXME: once we are sure that none of the numbered */
/*entries are in fact needed we should removed the digits */
{{{{"",""}, { "",""}, { "",""}},
{{"",""}, { "|",""}, { "32",""}},
{{"",""}, { "11",""}, { "","|t:"}}},
{{{"",""}, { "",""}, { "",""}},
{{"","|"}, { "|",""}, { "33",""}},
{{"1",""}, { "13",""}, { "34",""}}},
{{{"",""}, { "",""}, { "|","|"}},
{{"","|b|"}, { "14",""}, { "|","|"}},
{{"","|b:"}, { "|b:",""}, { "|",":"}}}},
{{{{"",""}, { "",""}, { "",""}},
{{"",""}, { "|",""}, { "35",""}},
{{"","|"}, { "17",""}, { "36",""}}},
{{{"","|"}, { "|",""}, { "37",""}},
{{"|",""}, { "",""}, { "38",""}},
{{"4",""}, { "19",""}, { "39",""}}},
{{{"","|b|"}, { "20",""}, { "|","|"}},
{{"5",""}, { "21",""}, { "|","|"}},
{{"|b:",""}, { "22",""}, { "40",""}}}},
{{{{"",""}, { "23",""}, { ":t|",""}},
{{"|",""}, { "24",""}, { ":t|",""}},
{{"",""}, { "",""}, { ":t:",""}}},
{{{"7",""}, { "26",""}, { ":t|",""}},
{{"8",""}, { "27",""}, { "43",""}},
{{"",""}, { "",""}, { ":t:",""}}},
{{{":b|",""}, { "29",""}, { ":","|"}},
{{":b|",""}, { "30",""}, { ":|",""}},
{{":b:",""}, { ":b:",""}, { ":",":"}}}}
};
/**
* latex_raw_str :
* @p : a pointer to a char, start of the string to be processed
* @output : output stream where the processed characters are written.
* @utf8: is this a utf8 string?
*
* @return:
* If @p is in form of \L{foo}, return the char pointer pointing to '}' of \L{foo}
* else return @p untouched;
*
* Check if @p is in form of \L{foo}.
* If it is, the exact "foo" will be put into @output, without any esacaping.
*
*/
static char const *
latex_raw_str(char const *p, GsfOutput *output, gboolean utf8)
{
char const *p_begin, *p_orig = p;
int depth = 1;
if(strncasecmp(p, "\\L{", 3) == 0){
p += 3;
p_begin = p;
/* find the matching close bracket */
for(; *p; p = utf8 ? g_utf8_next_char(p) : p + 1){
switch(*p){ /* FIXME: how to put in unmatched brackets? */
case '{':
depth ++;
break;
case '}':
depth--;
if(depth == 0){
/* put the string beginning from p_begin to p to output */
gsf_output_write(output, p - p_begin, p_begin);
return p;
}
}
}
}
return p_orig;
}
/**
* latex_fputs_utf :
*
* @p : a pointer to a char, start of the string to be processed.
* @output : output stream where the processed characters are written.
*
* This escapes any special LaTeX characters from the LaTeX engine,
* except the ones enclosed in "\L{" and "}".
* Re-ordered from Rasca's code to have most common first.
*/
static void
latex_fputs_utf (char const *p, GsfOutput *output)
{
char const *rlt;
for (; *p; p = g_utf8_next_char (p)) {
switch (g_utf8_get_char (p)) {
/* These are the classic TeX symbols $ & % # _ { } (see Lamport, p.15) */
case '$': case '&': case '%': case '#':
case '_': case '{': case '}':
gsf_output_printf (output, "\\%c", *p);
break;
/* These are the other special characters ~ ^ \ (see Lamport, p.15) */
case '^': case '~':
gsf_output_printf (output, "\\%c{ }", *p);
break;
case '\\':
rlt = latex_raw_str(p, output, TRUE);
if(rlt == p)
gsf_output_puts (output, "$\\backslash$");
else
p = rlt;
break;
/* Are these available only in LaTeX through mathmode? */
case '>': case '<':
gsf_output_printf (output, "$%c$", *p);
break;
default:
gsf_output_write (output,
(g_utf8_next_char (p)) - p, p);
break;
}
}
}
/**
* latex_math_fputs_utf :
*
* @p : a pointer to a char, start of the string to be processed.
* @output: output stream where the processed characters are written.
*
* This escapes any special LaTeX characters from the LaTeX engine,
* except the ones enclosed in "\L{" and "}".
*
* We assume that htis will be set in Mathematics mode.
*/
static void
latex_math_fputs_utf (char const *p, GsfOutput *output)
{
char const *rlt;
for (; *p; p = g_utf8_next_char (p)) {
switch (g_utf8_get_char (p)) {
/* These are the classic TeX symbols $ & % # (see Lamport, p.15) */
case '$': case '&': case '%': case '#':
gsf_output_printf (output, "\\%c", *p);
break;
/* These are the other special characters ~ (see Lamport, p.15) */
case '~':
gsf_output_printf (output, "\\%c{ }", *p);
break;
case '\\':
rlt = latex_raw_str(p, output, TRUE);
if(rlt == p)
gsf_output_puts (output, "$\\backslash$");
else
p = rlt;
break;
default:
gsf_output_write (output,
(g_utf8_next_char (p)) - p, p);
break;
}
}
}
/**
* latex_convert_latin_to_utf
*
* @text: string to convert
*
* return value needs to be freed with g_free
*
* call g_convert_with_fallback and also handle utf minus.
*
*/
static char *
latex_convert_latin_to_utf (char const *text)
{
char * encoded_text = NULL;
gsize bytes_read;
gsize bytes_written;
if (g_utf8_strchr (text,-1, 0x2212) == NULL) {
encoded_text = g_convert_with_fallback
(text, strlen (text),
"ISO-8859-1", "UTF-8", (gchar *)"?",
&bytes_read, &bytes_written, NULL);
} else {
gunichar* ucs_string = NULL;
gunichar* this_unichar;
char *new_text;
glong items_read;
glong items_written;
ucs_string = g_utf8_to_ucs4_fast (text, -1, &items_written);
for (this_unichar = ucs_string; *this_unichar != '\0'; this_unichar++) {
if (*this_unichar == 0x2212)
*this_unichar = 0x002d;
}
new_text = g_ucs4_to_utf8 (ucs_string, -1, &items_read, &items_written, NULL);
g_free (ucs_string);
encoded_text = g_convert_with_fallback
(new_text, strlen (new_text),
"ISO-8859-1", "UTF-8", (gchar *)"?",
&bytes_read, &bytes_written, NULL);
g_free (new_text);
}
return encoded_text;
}
/**
* latex_fputs_latin :
*
* @p : a pointer to a char, start of the string to be processed.
* @output : output stream where the processed characters are written.
*
* This escapes any special LaTeX characters from the LaTeX engine,
* except the ones enclosed in "\L{" and "}".
* Re-ordered from Rasca's code to have most common first.
*/
static void
latex_fputs_latin (char const *text, GsfOutput *output)
{
char * encoded_text = NULL;
char const *p;
char const *rlt;
encoded_text = latex_convert_latin_to_utf (text);
for (p = encoded_text; *p; p++) {
switch (*p) {
/* These are the classic TeX symbols $ & % # _ { } (see Lamport, p.15) */
case '$': case '&': case '%': case '#':
case '_': case '{': case '}':
gsf_output_printf (output, "\\%c", *p);
break;
/* These are the other special characters ~ ^ \ (see Lamport, p.15) */
case '^': case '~':
gsf_output_printf (output, "\\%c{ }", *p);
break;
case '\\':
rlt = latex_raw_str(p, output, FALSE);
if(rlt == p)
gsf_output_puts (output, "$\\backslash$");
else
p = rlt;
break;
/* Are these available only in LaTeX through mathmode? */
case '>': case '<': case '':
gsf_output_printf (output, "$%c$", *p);
break;
default:
gsf_output_write (output, 1, p);
break;
}
}
g_free (encoded_text);
}
/**
* latex_math_fputs_latin :
*
* @p : a pointer to a char, start of the string to be processed.
* @output: output stream where the processed characters are written.
*
* This escapes any special LaTeX characters from the LaTeX engine,
* except the ones enclosed in "\L{" and "}".
*
* We assume that htis will be set in Mathematics mode.
*/
static void
latex_math_fputs_latin (char const *text, GsfOutput *output)
{
char * encoded_text = NULL;
char const *p;
char const *rlt;
encoded_text = latex_convert_latin_to_utf (text);
for (p = encoded_text; *p; p++) {
switch (*p) {
/* These are the classic TeX symbols $ & % # (see Lamport, p.15) */
case '$': case '&': case '%': case '#':
gsf_output_printf (output, "\\%c", *p);
break;
/* These are the other special characters ~ (see Lamport, p.15) */
case '~':
gsf_output_printf (output, "\\%c{ }", *p);
break;
case '\\':
rlt = latex_raw_str(p, output, FALSE);
if(rlt == p)
gsf_output_puts (output, "$\\backslash$");
else
p = rlt;
break;
default:
gsf_output_write (output, 1, p);
break;
}
}
g_free (encoded_text);
}
static void
latex_fputs (char const *text, GsfOutput *output)
{
if (gnm_conf_get_plugin_latex_use_utf8 ())
latex_fputs_utf (text, output);
else
latex_fputs_latin (text, output);
}
static void
latex_math_fputs (char const *text, GsfOutput *output)
{
if (gnm_conf_get_plugin_latex_use_utf8 ())
latex_math_fputs_utf (text, output);
else
latex_math_fputs_latin (text, output);
}
/**
* latex2e_write_file_header:
*
* @output: Output stream where the cell contents will be written.
*
* This ouputs the LaTeX header. Kept separate for esthetics.
*/
static void
latex2e_write_file_header(GsfOutput *output)
{
gsf_output_puts (output,
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% %%\n"
"%% This is the header of a LaTeX2e file exported from Gnumeric. %%\n"
"%% %%\n"
"%% This file can be compiled as it stands or included in another %%\n"
"%% LaTeX document. The table is based on the longtable package so %%\n"
"%% the longtable options (headers, footers...) can be set in the %%\n"
"%% preamble section below (see PRAMBLE). %%\n"
"%% %%\n"
"%% To include the file in another, the following two lines must be %%\n"
"%% in the including file: %%\n"
"%% \\def\\inputGnumericTable{} %%\n"
"%% at the beginning of the file and: %%\n"
"%% \\input{name-of-this-file.tex} %%\n"
"%% where the table is to be placed. Note also that the including %%\n"
"%% file must use the following packages for the table to be %%\n"
"%% rendered correctly: %%\n"
);
if (gnm_conf_get_plugin_latex_use_utf8 ())
gsf_output_puts (output,
"%% \\usepackage{ucs} %%\n"
"%% \\usepackage[utf8x]{inputenc} %%\n"
);
else
gsf_output_puts (output,
"%% \\usepackage[latin1]{inputenc} %%\n"
);
gsf_output_puts (output,
"%% \\usepackage{color} %%\n"
"%% \\usepackage{array} %%\n"
"%% \\usepackage{longtable} %%\n"
"%% \\usepackage{calc} %%\n"
"%% \\usepackage{multirow} %%\n"
"%% \\usepackage{hhline} %%\n"
"%% \\usepackage{ifthen} %%\n"
"%% optionally (for landscape tables embedded in another document): %%\n"
"%% \\usepackage{lscape} %%\n"
"%% %%\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"\n"
"\n"
"\n"
"%% This section checks if we are begin input into another file or %%\n"
"%% the file will be compiled alone. First use a macro taken from %%\n"
"%% the TeXbook ex 7.7 (suggestion of Han-Wen Nienhuys). %%\n"
"\\def\\ifundefined#1{\\expandafter\\ifx\\csname#1\\endcsname\\relax}\n"
"\n"
"\n"
"%% Check for the \\def token for inputed files. If it is not %%\n"
"%% defined, the file will be processed as a standalone and the %%\n"
"%% preamble will be used. %%\n"
"\\ifundefined{inputGnumericTable}\n"
"\n"
"%% We must be able to close or not the document at the end. %%\n"
" \\def\\gnumericTableEnd{\\end{document}}\n"
"\n"
"\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% %%\n"
"%% This is the PREAMBLE. Change these values to get the right %%\n"
"%% paper size and other niceties. Uncomment the landscape option %%\n"
"%% to the documentclass defintion for standalone documents. %%\n"
"%% %%\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"\n"
" \\documentclass[12pt%\n"
" %,landscape%\n"
" ]{report}\n"
);
if (gnm_conf_get_plugin_latex_use_utf8 ())
gsf_output_puts (output,
" \\usepackage{ucs}\n"
" \\usepackage[utf8x]{inputenc}\n"
);
else
gsf_output_puts (output,
" \\usepackage[latin1]{inputenc}\n"
);
gsf_output_puts (output,
" \\usepackage{fullpage}\n"
" \\usepackage{color}\n"
" \\usepackage{array}\n"
" \\usepackage{longtable}\n"
" \\usepackage{calc}\n"
" \\usepackage{multirow}\n"
" \\usepackage{hhline}\n"
" \\usepackage{ifthen}\n"
"\n"
" \\begin{document}\n"
"\n"
"\n"
"%% End of the preamble for the standalone. The next section is for %%\n"
"%% documents which are included into other LaTeX2e files. %%\n"
"\\else\n"
"\n"
"%% We are not a stand alone document. For a regular table, we will %%\n"
"%% have no preamble and only define the closing to mean nothing. %%\n"
" \\def\\gnumericTableEnd{}\n"
"\n"
"%% If we want landscape mode in an embedded document, comment out %%\n"
"%% the line above and uncomment the two below. The table will %%\n"
"%% begin on a new page and run in landscape mode. %%\n"
"% \\def\\gnumericTableEnd{\\end{landscape}}\n"
"% \\begin{landscape}\n"
"\n"
"\n"
"%% End of the else clause for this file being \\input. %%\n"
"\\fi\n"
"\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% %%\n"
"%% The rest is the gnumeric table, except for the closing %%\n"
"%% statement. Changes below will alter the table\'s appearance. %%\n"
"%% %%\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"\n"
"\\providecommand{\\gnumericmathit}[1]{#1} \n"
"%% Uncomment the next line if you would like your numbers to be in %%\n"
"%% italics if they are italizised in the gnumeric table. %%\n"
"%\\renewcommand{\\gnumericmathit}[1]{\\mathit{#1}}\n"
"\\providecommand{\\gnumericPB}[1]%\n"
"{\\let\\gnumericTemp=\\\\#1\\let\\\\=\\gnumericTemp\\hspace{0pt}}\n"
" \\ifundefined{gnumericTableWidthDefined}\n"
" \\newlength{\\gnumericTableWidth}\n"
" \\newlength{\\gnumericTableWidthComplete}\n"
" \\newlength{\\gnumericMultiRowLength}\n"
" \\global\\def\\gnumericTableWidthDefined{}\n"
" \\fi\n"
"%% The following setting protects this code from babel shorthands. %%\n"
" \\ifthenelse{\\isundefined{\\languageshorthands}}{}{\\languageshorthands{english}}"
"\n"
"%% The default table format retains the relative column widths of %%\n"
"%% gnumeric. They can easily be changed to c, r or l. In that case %%\n"
"%% you may want to comment out the next line and uncomment the one %%\n"
"%% thereafter %%\n"
"\\providecommand\\gnumbox{\\makebox[0pt]}\n"
"%%\\providecommand\\gnumbox[1][]{\\makebox}\n"
"\n"
"%% to adjust positions in multirow situations %%\n"
"\\setlength{\\bigstrutjot}{\\jot}\n"
"\\setlength{\\extrarowheight}{\\doublerulesep}\n"
"\n"
"%% The \\setlongtables command keeps column widths the same across %%\n"
"%% pages. Simply comment out next line for varying column widths. %%\n"
"\\setlongtables\n"
"\n"
);
}
/**
* latex2e_write_table_header:
*
* @output: Output stream where the cell contents will be written.
* @num_cols: The number of columns in the table
*
* A convenience function that also helps make nicer code.
*/
static void
latex2e_write_table_header(GsfOutput *output, int num_cols)
{
int col;
gsf_output_puts (output,
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% The longtable options. (Caption, headers... see Goosens, p.124) %%\n"
"%\t\\caption{The Table Caption.} \\\\ %\n"
"% \\hline % Across the top of the table.\n"
"%% The rest of these options are table rows which are placed on %%\n"
"%% the first, last or every page. Use \\multicolumn if you want. %%\n"
"\n"
"%% Header for the first page. %%\n"
);
gsf_output_printf (output, "%%\t\\multicolumn{%d}{c}{The First Header} \\\\ \\hline \n", num_cols);
gsf_output_printf (output, "%%\t\\multicolumn{1}{c}{colTag}\t%%Column 1\n");
for (col = 2 ; col < num_cols; col++)
gsf_output_printf (output, "%%\t&\\multicolumn{1}{c}{colTag}\t%%Column %d\n",col);
gsf_output_printf (output, "%%\t&\\multicolumn{1}{c}{colTag}\t\\\\ \\hline %%Last column\n");
gsf_output_printf (output, "%%\t\\endfirsthead\n\n");
gsf_output_printf (output, "%%%% The running header definition. %%%%\n");
gsf_output_printf (output, "%%\t\\hline\n");
gsf_output_printf (output, "%%\t\\multicolumn{%d}{l}{\\ldots\\small\\slshape continued} \\\\ \\hline\n", num_cols);
gsf_output_printf (output, "%%\t\\multicolumn{1}{c}{colTag}\t%%Column 1\n");
for (col = 2 ; col < num_cols; col++)
gsf_output_printf (output, "%%\t&\\multicolumn{1}{c}{colTag}\t%%Column %d\n",col);
gsf_output_printf (output, "%%\t&\\multicolumn{1}{c}{colTag}\t\\\\ \\hline %%Last column\n");
gsf_output_printf (output, "%%\t\\endhead\n\n");
gsf_output_printf (output, "%%%% The running footer definition. %%%%\n");
gsf_output_printf (output, "%%\t\\hline\n");
gsf_output_printf (output, "%%\t\\multicolumn{%d}{r}{\\small\\slshape continued\\ldots}", num_cols);
gsf_output_printf (output, " \\\\\n");
gsf_output_printf (output, "%%\t\\endfoot\n\n");
gsf_output_printf (output, "%%%% The ending footer definition. %%%%\n");
gsf_output_printf (output, "%%\t\\multicolumn{%d}{c}{That's all folks} \\\\ \\hline \n", num_cols);
gsf_output_printf (output, "%%\t\\endlastfoot\n");
gsf_output_puts (output, "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n");
}
/**
* latex2e_find_vline:
*
* @col:
* @row:
* @sheet:
* @which_border: GnmStyleElement (MSTYLE_BORDER_LEFT or MSTYLE_BORDER_RIGHT)
*
* Determine the border style
*
*/
static GnmStyleBorderType
latex2e_find_vline (int col, int row, Sheet *sheet, GnmStyleElement which_border)
{
GnmBorder const *border;
GnmStyle const *style;
if (col < 0 || row < 0)
return GNM_STYLE_BORDER_NONE;
style = sheet_style_get (sheet, col, row);
border = gnm_style_get_border (style, which_border);
if (!(gnm_style_border_is_blank (border) ||
border->line_type == GNM_STYLE_BORDER_NONE))
return border->line_type;
if (which_border == MSTYLE_BORDER_LEFT) {
if (col <= 0)
return GNM_STYLE_BORDER_NONE;
style = sheet_style_get (sheet, col - 1, row);
border = gnm_style_get_border (style, MSTYLE_BORDER_RIGHT);
return ((gnm_style_border_is_blank (border)) ? GNM_STYLE_BORDER_NONE :
border->line_type);
} else {
if ((col+1) >= colrow_max (TRUE, sheet))
return GNM_STYLE_BORDER_NONE;
style = sheet_style_get (sheet, col + 1, row);
border = gnm_style_get_border (style, MSTYLE_BORDER_LEFT);
return ((gnm_style_border_is_blank (border)) ? GNM_STYLE_BORDER_NONE :
border->line_type);
}
return GNM_STYLE_BORDER_NONE;
}
/**
* latex2e_print_vert_border:
*
* @output : Output stream where the cell contents will be written.
* @clines: GnmStyleBorderType indicating the type of border
*
*/
static void
latex2e_print_vert_border (GsfOutput *output, GnmStyleBorderType style)
{
g_return_if_fail (style >= 0 && style < G_N_ELEMENTS (border_styles));
gsf_output_printf (output, "%s", border_styles[style].vertical);
}
/**
* latex2e_write_blank_multicolumn_cell:
*
* @output : output stream where the cell contents will be written.
* @star_col :
* @start_row :
* @num_merged_cols : an integer value of the number of columns to merge.
* @num_merged_rows : an integer value of the number of rows to merge.
* @sheet : the current sheet.
*
* This function creates all the LaTeX code for the cell of a table (i.e. all
* the code that might fall between two ampersands (&)), assuming that
* the cell is in fact NULL. We therefore have only to worry about a few
* formatting issues.
*
*/
static void
latex2e_write_blank_multicolumn_cell (GsfOutput *output, int start_col, int start_row,
int num_merged_cols, int num_merged_rows,
gint index,
GnmStyleBorderType *borders, Sheet *sheet)
{
int merge_width = 0;
GnmStyleBorderType left_border = GNM_STYLE_BORDER_NONE;
GnmStyleBorderType right_border = GNM_STYLE_BORDER_NONE;
if (num_merged_cols > 1 || num_merged_rows > 1) {
ColRowInfo const * ci;
int i;
for (i = 0; i < num_merged_cols; i++) {
ci = sheet_col_get_info (sheet, start_col + i);
merge_width += ci->size_pixels;
}
}
if (index == 0) {
left_border = *borders;
}
right_border = borders[index + num_merged_cols];
/* We only set up a multicolumn command if necessary */
if (num_merged_cols > 1) {
int i;
/* Open the multicolumn statement. */
gsf_output_printf (output, "\\multicolumn{%d}{", num_merged_cols);
if (left_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, left_border);
if (num_merged_rows > 1) {
gsf_output_printf (output, "c");
} else {
gsf_output_printf (output, "p{");
for (i = 0; i < num_merged_cols; i++) {
gsf_output_printf (output, "\t\\gnumericCol%s+%%\n",
col_name (start_col + i));
}
gsf_output_printf (output, "\t\\tabcolsep*2*%i}", num_merged_cols - 1);
}
if (right_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, right_border);
/*Close the right delimiter, as above. Also open the text delimiter.*/
gsf_output_printf (output,"}%%\n\t{");
} else if (left_border != GNM_STYLE_BORDER_NONE || right_border != GNM_STYLE_BORDER_NONE) {
/* Open the multicolumn statement. */
gsf_output_printf (output, "\\multicolumn{1}{");
if (left_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, left_border);
/* Drop in the left hand format delimiter. */
gsf_output_printf (output, "p{\\gnumericCol%s}", col_name(start_col));
if (right_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, right_border);
/*Close the right delimiter, as above. Also open the text delimiter.*/
gsf_output_printf (output,"}%%\n\t{");
}
if (num_merged_rows > 1) {
int i;
/* Open the multirow statement. */
gsf_output_printf (output, "\\setlength{\\gnumericMultiRowLength}{0pt}%%\n");
for (i = 0; i < num_merged_cols; i++) {
gsf_output_printf (output, "\t \\addtolength{\\gnumericMultiRowLength}{\\gnumericCol%s}%%\n", col_name (start_col + i));
if (i>0)
gsf_output_printf (output, "\t \\addtolength{\\gnumericMultiRowLength}{\\tabcolsep}%%\n");
}
gsf_output_printf (output, "\t \\multirow{%i}[%i]{\\gnumericMultiRowLength}{%%\n\t ", num_merged_rows, num_merged_rows/2);
/* Close the multirowtext. */
gsf_output_printf (output, "}");
}
/* Close the multicolumn text bracket. */
if (num_merged_cols > 1 || left_border != GNM_STYLE_BORDER_NONE
|| right_border != GNM_STYLE_BORDER_NONE)
gsf_output_printf (output, "}");
/* And we are done. */
gsf_output_printf (output, "\n");
}
/**
* latex2e_write_multicolumn_cell:
*
* @output : output stream where the cell contents will be written.
* @cell : the cell whose contents are to be written.
* @star_col :
* @num_merged_cols : an integer value of the number of columns to merge.
* @num_merged_rows : an integer value of the number of rows to merge.
* @sheet : the current sheet.
*
* This function creates all the LaTeX code for the cell of a table (i.e. all
* the code that might fall between two ampersands (&)).
*
* Note: we are _not_ putting single cell into \multicolumns since this
* makes it much more difficult to change column widths later on.
*/
static void
latex2e_write_multicolumn_cell (GsfOutput *output, GnmCell *cell, int start_col,
int num_merged_cols, int num_merged_rows,
gint index,
GnmStyleBorderType *borders, Sheet *sheet)
{
char * rendered_string;
gushort r,g,b;
gboolean wrap = FALSE;
GOFormatFamily cell_format_family;
int merge_width = 0;
GnmStyleBorderType left_border = GNM_STYLE_BORDER_NONE;
GnmStyleBorderType right_border = GNM_STYLE_BORDER_NONE;
/* Print the cell according to its style. */
GnmStyle const *style = gnm_cell_get_style (cell);
gboolean hidden = gnm_style_get_contents_hidden (style);
g_return_if_fail (style != NULL);
if (num_merged_cols > 1 || num_merged_rows > 1) {
ColRowInfo const * ci;
int i;
for (i = 0; i < num_merged_cols; i++) {
ci = sheet_col_get_info (sheet, start_col + i);
merge_width += ci->size_pixels;
}
}
if (index == 0) {
left_border = *borders;
}
right_border = borders[index + num_merged_cols];
/* We only set up a multicolumn command if necessary */
if (num_merged_cols > 1) {
int i;
/* Open the multicolumn statement. */
gsf_output_printf (output, "\\multicolumn{%d}{", num_merged_cols);
if (left_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, left_border);
if (num_merged_rows > 1) {
gsf_output_printf (output, "c");
} else {
gsf_output_printf (output, "p{");
for (i = 0; i < num_merged_cols; i++) {
gsf_output_printf (output, "\t\\gnumericCol%s+%%\n",
col_name (start_col + i));
}
gsf_output_printf (output, "\t\\tabcolsep*2*%i}", num_merged_cols - 1);
}
if (right_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, right_border);
/*Close the right delimiter, as above. Also open the text delimiter.*/
gsf_output_printf (output,"}%%\n\t{");
} else if (left_border != GNM_STYLE_BORDER_NONE || right_border != GNM_STYLE_BORDER_NONE) {
/* Open the multicolumn statement. */
gsf_output_printf (output, "\\multicolumn{1}{");
if (left_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, left_border);
/* Drop in the left hand format delimiter. */
gsf_output_printf (output, "p{\\gnumericCol%s}", col_name(start_col));
if (right_border != GNM_STYLE_BORDER_NONE)
latex2e_print_vert_border (output, right_border);
/*Close the right delimiter, as above. Also open the text delimiter.*/
gsf_output_printf (output,"}%%\n\t{");
}
if (num_merged_rows > 1) {
int i;
/* Open the multirow statement. */
gsf_output_printf (output, "\\setlength{\\gnumericMultiRowLength}{0pt}%%\n");
for (i = 0; i < num_merged_cols; i++) {
gsf_output_printf (output, "\t \\addtolength{\\gnumericMultiRowLength}{\\gnumericCol%s}%%\n", col_name (start_col + i));
if (i>0)
gsf_output_printf (output, "\t \\addtolength{\\gnumericMultiRowLength}{\\tabcolsep}%%\n");
}
gsf_output_printf (output,
"\t \\multirow{%i}[%i]{\\gnumericMultiRowLength}"
"{\\parbox{\\gnumericMultiRowLength}{%%\n\t ",
num_merged_rows, num_merged_rows/2);
}
/* Send the alignment of the cell through a routine to deal with
* HALIGN_GENERAL and then deal with the three cases. */
switch (gnm_style_default_halign (style, cell)) {
case HALIGN_RIGHT:
gsf_output_printf (output, "\\gnumericPB{\\raggedleft}");
break;
case HALIGN_DISTRIBUTED:
case HALIGN_CENTER:
case HALIGN_CENTER_ACROSS_SELECTION:
gsf_output_printf (output, "\\gnumericPB{\\centering}");
break;
case HALIGN_LEFT:
gsf_output_printf (output, "\\gnumericPB{\\raggedright}");
break;
case HALIGN_JUSTIFY:
break;
default:
break;
}
/* Check whether we should do word wrapping */
wrap = gnm_style_get_wrap_text (style);
/* if we don't wrap put it into an mbox, adjusted to width 0 to avoid moving */
/* it to the second line of the parbox */
if (!wrap)
switch (gnm_style_default_halign (style, cell)) {
case HALIGN_RIGHT:
gsf_output_printf (output, "\\gnumbox[r]{");
break;
case HALIGN_DISTRIBUTED:
case HALIGN_CENTER:
case HALIGN_CENTER_ACROSS_SELECTION:
gsf_output_printf (output, "\\gnumbox{");
break;
case HALIGN_LEFT:
gsf_output_printf (output, "\\gnumbox[l]{");
break;
case HALIGN_JUSTIFY:
gsf_output_printf (output, "\\gnumbox[s]{");
break;
default:
gsf_output_printf (output, "\\makebox{");
break;
}
if (!gnm_cell_is_empty (cell)) {
/* Check the foreground (text) colour. */
GOColor fore = gnm_cell_get_render_color (cell);
if (fore == 0)
r = g = b = 0;
else {
r = GO_COLOR_UINT_R (fore);
g = GO_COLOR_UINT_G (fore);
b = GO_COLOR_UINT_B (fore);
}
if (r != 0 || g != 0 || b != 0) {
char *locale;
locale = setlocale (LC_NUMERIC, "C");
gsf_output_printf (output, "{\\color[rgb]{%.2f,%.2f,%.2f} ",
r/255.0, g/255.0, b/255.0);
locale = setlocale (LC_NUMERIC, locale);
}
/* Establish the font's style for the styles that can be addressed by LaTeX.
* More complicated efforts (like changing fonts) are left to the user.
*/
if (hidden)
gsf_output_printf (output, "\\phantom{");
if (font_is_monospaced (style))
gsf_output_printf (output, "\\texttt{");
else if (font_is_sansserif (style))
gsf_output_printf (output, "\\textsf{");
if (gnm_style_get_font_bold (style))
gsf_output_printf (output, "\\textbf{");
if (gnm_style_get_font_italic (style))
gsf_output_printf (output, "\\textit{");
cell_format_family = go_format_get_family (gnm_cell_get_format (cell));
if (cell_format_family == GO_FORMAT_NUMBER ||
cell_format_family == GO_FORMAT_CURRENCY ||
cell_format_family == GO_FORMAT_PERCENTAGE ||
cell_format_family == GO_FORMAT_FRACTION ||
cell_format_family == GO_FORMAT_SCIENTIFIC){
gsf_output_printf (output, "$");
if (gnm_style_get_font_italic(style))
gsf_output_printf (output, "\\gnumericmathit{");
/* Print the cell contents. */
rendered_string = gnm_cell_get_rendered_text (cell);
latex_math_fputs (rendered_string, output);
g_free (rendered_string);
if (gnm_style_get_font_italic(style))
gsf_output_printf (output, "}");
gsf_output_printf (output, "$");
} else {
/* Print the cell contents. */
rendered_string = gnm_cell_get_rendered_text (cell);
latex_fputs (rendered_string, output);
g_free (rendered_string);
}
/* Close the styles for the cell. */
if (gnm_style_get_font_italic (style))
gsf_output_printf (output, "}");
if (gnm_style_get_font_bold (style))
gsf_output_printf (output, "}");
if (font_is_monospaced (style))
gsf_output_printf (output, "}");
else if (font_is_sansserif (style))
gsf_output_printf (output, "}");
if (hidden)
gsf_output_printf (output, "}");
if (r != 0 || g != 0 || b != 0)
gsf_output_printf (output, "}");
}
/* if we don't wrap close the mbox */
if (!wrap)
gsf_output_printf (output, "}");
/* Close the multirowtext. */
if (num_merged_rows > 1)
gsf_output_printf (output, "}}");
/* Close the multicolumn text bracket. */
if (num_merged_cols > 1 || left_border != GNM_STYLE_BORDER_NONE
|| right_border != GNM_STYLE_BORDER_NONE)
gsf_output_printf (output, "}");
/* And we are done. */
gsf_output_printf (output, "\n");
}
/**
* latex2e_find_hhlines :
*
* @clines: array of GnmStyleBorderType* indicating the type of border
* @length: (remaining) positions in clines
* @col :
* @row :
* @sheet :
*
* Determine the border style
*
*/
static gboolean
latex2e_find_hhlines (GnmStyleBorderType *clines, int length, int col, int row,
Sheet *sheet, GnmStyleElement type)
{
GnmStyle const *style;
GnmBorder const *border;
GnmRange const *merge_range;
GnmCellPos pos;
style = sheet_style_get (sheet, col, row);
border = gnm_style_get_border (style, type);
if (gnm_style_border_is_blank (border))
return FALSE;
clines[0] = border->line_type;
pos.col = col;
pos.row = row;
merge_range = gnm_sheet_merge_is_corner (sheet, &pos);
if (merge_range != NULL) {
int i;
for (i = 1; i < MIN (merge_range->end.col - merge_range->start.col + 1,
length); i++)
clines[i] = border->line_type;
}
return TRUE;
}
/**
* latex2e_print_hhline :
*
* @output : output stream where the cell contents will be written.
* @clines: an array of GnmStyleBorderType* indicating the type of border
* @n : the number of elements in clines
*
* This procedure prints an hhline command according to the content
* of clines.
*
*/
static void
latex2e_print_hhline (GsfOutput *output, GnmStyleBorderType *clines, int n, GnmStyleBorderType *prev_vert,
GnmStyleBorderType *next_vert)
{
int col;
gsf_output_printf (output, "\\hhline{");
gsf_output_printf (output, "%s", conn_styles[LATEX_NO_BORDER]
[prev_vert ? border_styles[prev_vert[0]].latex : LATEX_NO_BORDER]
[border_styles[clines[0]].latex]
[next_vert ? border_styles[next_vert[0]].latex : LATEX_NO_BORDER].p_1);
gsf_output_printf (output, "%s", conn_styles[LATEX_NO_BORDER]
[prev_vert ? border_styles[prev_vert[0]].latex : LATEX_NO_BORDER]
[border_styles[clines[0]].latex]
[next_vert ? border_styles[next_vert[0]].latex : LATEX_NO_BORDER].p_2);
for (col = 0; col < n - 1; col++) {
gsf_output_printf (output, "%s", border_styles[clines[col]].horizontal);
gsf_output_printf (output, "%s", conn_styles[border_styles[clines[col]].latex]
[prev_vert ? border_styles[prev_vert[col + 1]].latex :
LATEX_NO_BORDER]
[border_styles[clines[col+1]].latex]
[next_vert ? border_styles[next_vert[col + 1]].latex :
LATEX_NO_BORDER].p_1);
gsf_output_printf (output, "%s", conn_styles[border_styles[clines[col]].latex]
[prev_vert ? border_styles[prev_vert[col + 1]].latex :
LATEX_NO_BORDER]
[border_styles[clines[col+1]].latex]
[next_vert ? border_styles[next_vert[col + 1]].latex :
LATEX_NO_BORDER].p_2);
}
gsf_output_printf (output, "%s", border_styles[clines[n - 1]].horizontal);
gsf_output_printf (output, "%s", conn_styles[border_styles[clines[n - 1]].latex]
[prev_vert ? border_styles[prev_vert[n]].latex : LATEX_NO_BORDER]
[LATEX_NO_BORDER]
[next_vert ? border_styles[next_vert[n]].latex :
LATEX_NO_BORDER].p_1);
gsf_output_printf (output, "%s", conn_styles[border_styles[clines[n - 1]].latex]
[prev_vert ? border_styles[prev_vert[n]].latex : LATEX_NO_BORDER]
[LATEX_NO_BORDER]
[next_vert ? border_styles[next_vert[n]].latex :
LATEX_NO_BORDER].p_2);
gsf_output_printf (output, "}\n");
}
/**
* latex_file_save : The LaTeX2e exporter plugin function.
*
* @FileSaver : New structure for file plugins. I don't understand.
* @IOcontext : currently not used but reserved for the future.
* @WorkbookView : this provides the way to access the sheet being exported.
* @filename : where we'll write.
*
* This writes the top sheet of a Gnumeric workbook to a LaTeX2e longtable. We
* check for merges here, then call the function latex2e_write_multicolum_cell()
* to render the format and contents of the cell.
*/
void
latex_file_save (GOFileSaver const *fs, GOIOContext *io_context,
WorkbookView const *wb_view, GsfOutput *output)
{
GnmCell *cell;
Sheet *current_sheet;
GnmRange total_range;
GnmRange const *merge_range;
int row, col, num_cols, length;
int num_merged_cols, num_merged_rows;
GnmStyleBorderType *clines, *this_clines;
GnmStyleBorderType *prev_vert = NULL, *next_vert = NULL, *this_vert;
gboolean needs_hline;
/* This is the preamble of the LaTeX2e file. */
latex2e_write_file_header(output);
/* Get the topmost sheet and its range from the plugin function argument. */
current_sheet = wb_view_cur_sheet(wb_view);
total_range = sheet_get_extent (current_sheet, TRUE);
num_cols = total_range.end.col - total_range.start.col + 1;
gsf_output_printf (output, "\\setlength\\gnumericTableWidth{%%\n");
for (col = total_range.start.col; col <= total_range.end.col; col++) {
ColRowInfo const * ci;
ci = sheet_col_get_info (current_sheet, col);
gsf_output_printf (output, "\t%ipt+%%\n", ci->size_pixels * 10 / 12);
}
gsf_output_printf (output, "0pt}\n\\def\\gumericNumCols{%i}\n", num_cols);
gsf_output_puts (output, ""
"\\setlength\\gnumericTableWidthComplete{\\gnumericTableWidth+%\n"
" \\tabcolsep*\\gumericNumCols*2+\\arrayrulewidth*\\gumericNumCols}\n"
"\\ifthenelse{\\lengthtest{\\gnumericTableWidthComplete > \\linewidth}}%\n"
" {\\def\\gnumericScale{\\ratio{\\linewidth-%\n"
" \\tabcolsep*\\gumericNumCols*2-%\n"
" \\arrayrulewidth*\\gumericNumCols}%\n"
"{\\gnumericTableWidth}}}%\n"
"{\\def\\gnumericScale{1}}\n"
"\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% %%\n"
"%% The following are the widths of the various columns. We are %%\n"
"%% defining them here because then they are easier to change. %%\n"
"%% Depending on the cell formats we may use them more than once. %%\n"
"%% %%\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"\n"
);
for (col = total_range.start.col; col <= total_range.end.col; col++) {
ColRowInfo const * ci;
char const *colname = col_name (col);
ci = sheet_col_get_info (current_sheet, col);
gsf_output_printf (output, "\\ifthenelse{\\isundefined{\\gnumericCol%s}}"
"{\\newlength{\\gnumericCol%s}}{}\\settowidth{\\gnumericCol%s}"
"{\\begin{tabular}{@{}p{%ipt*\\gnumericScale}@{}}x\\end{tabular}}\n",
colname, colname, colname, ci->size_pixels * 10 / 12);
}
/* Start outputting the table. */
gsf_output_printf (output, "\n\\begin{longtable}[c]{%%\n");
for (col = total_range.start.col; col <= total_range.end.col; col++) {
gsf_output_printf (output, "\tb{\\gnumericCol%s}%%\n", col_name (col));
}
gsf_output_printf (output, "\t}\n\n");
/* Output the table header. */
latex2e_write_table_header (output, num_cols);
/* Step through the sheet, writing cells as appropriate. */
for (row = total_range.start.row; row <= total_range.end.row; row++) {
ColRowInfo const * ri;
ri = sheet_row_get_info (current_sheet, row);
if (ri->needs_respan)
row_calc_spans ((ColRowInfo *) ri, row, current_sheet);
/* We need to check for horizontal borders at the top of this row */
length = num_cols;
clines = g_new0 (GnmStyleBorderType, length);
needs_hline = FALSE;
this_clines = clines;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
needs_hline = latex2e_find_hhlines (this_clines, length, col, row,
current_sheet, MSTYLE_BORDER_TOP)
|| needs_hline;
this_clines ++;
length--;
}
/* or at the bottom of the previous */
if (row > total_range.start.row) {
length = num_cols;
this_clines = clines;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
needs_hline = latex2e_find_hhlines (this_clines, length, col,
row - 1, current_sheet,
MSTYLE_BORDER_BOTTOM)
|| needs_hline;
this_clines ++;
length--;
}
}
/* We also need to know vertical borders */
/* We do this here rather than as we output the cells since */
/* we need to know the right connectors! */
prev_vert = next_vert;
next_vert = g_new0 (GnmStyleBorderType, num_cols + 1);
this_vert = next_vert;
*this_vert = latex2e_find_vline (total_range.start.col, row,
current_sheet, MSTYLE_BORDER_LEFT);
this_vert++;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
*this_vert = latex2e_find_vline (col, row, current_sheet,
MSTYLE_BORDER_RIGHT);
this_vert ++;
}
if (needs_hline)
latex2e_print_hhline (output, clines, num_cols, prev_vert, next_vert);
g_free (clines);
for (col = total_range.start.col; col <= total_range.end.col; col++) {
GnmCellPos pos;
pos.col = col;
pos.row = row;
/* Get the cell. */
cell = sheet_cell_get (current_sheet, col, row);
/* Check if we are not the first cell in the row.*/
if (col != total_range.start.col)
gsf_output_printf (output, "\t&");
else
gsf_output_printf (output, "\t ");
/* Check a merge. */
merge_range = gnm_sheet_merge_is_corner (current_sheet, &pos);
if (merge_range == NULL) {
if (gnm_cell_is_empty(cell))
latex2e_write_blank_multicolumn_cell(output, col, row,
1, 1,
col - total_range.start.col,
next_vert, current_sheet);
else
latex2e_write_multicolumn_cell(output, cell, col,
1, 1,
col - total_range.start.col,
next_vert, current_sheet);
continue;
}
/* Get the extent of the merge. */
num_merged_cols = merge_range->end.col - merge_range->start.col + 1;
num_merged_rows = merge_range->end.row - merge_range->start.row + 1;
if (gnm_cell_is_empty(cell))
latex2e_write_blank_multicolumn_cell(output, col, row,
num_merged_cols,
num_merged_rows,
col - total_range.start.col,
next_vert, current_sheet);
else
latex2e_write_multicolumn_cell(output, cell, col, num_merged_cols,
num_merged_rows,
col - total_range.start.col,
next_vert, current_sheet);
col += (num_merged_cols - 1);
continue;
}
gsf_output_printf (output, "\\\\\n");
g_free (prev_vert);
}
/* We need to check for horizontal borders at the bottom of the last row */
clines = g_new0 (GnmStyleBorderType, total_range.end.col - total_range.start.col + 1);
needs_hline = FALSE;
/* In case that we are at the very bottom of the sheet we can not */
/* check on the next line! */
if (row < colrow_max (FALSE, current_sheet)) {
length = num_cols;
this_clines = clines;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
needs_hline = latex2e_find_hhlines (this_clines, length, col, row,
current_sheet, MSTYLE_BORDER_TOP)
|| needs_hline;
this_clines ++;
length--;
}
}
length = num_cols;
this_clines = clines;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
needs_hline = latex2e_find_hhlines (this_clines, length, col,
row - 1, current_sheet,
MSTYLE_BORDER_BOTTOM)
|| needs_hline;
this_clines ++;
length--;
}
if (needs_hline)
latex2e_print_hhline (output, clines, num_cols, next_vert, NULL);
g_free (clines);
g_free (next_vert);
gsf_output_puts (output, "\\end{longtable}\n\n"
"\\ifthenelse{\\isundefined{\\languageshorthands}}"
"{}{\\languageshorthands{\\languagename}}\n"
"\\gnumericTableEnd\n");
}
/**
* latex2e_table_cell:
*
* @output : output stream where the cell contents will be written.
* @cell : the cell whose contents are to be written.
* @sheet : the current sheet.
*
* This function creates all the LaTeX code for the cell of a table (i.e. all
* the code that might fall between two ampersands (&)).
*
*/
static void
latex2e_table_write_cell (GsfOutput *output, GnmCell *cell, Sheet *sheet)
{
GnmStyle const *style = gnm_cell_get_style (cell);
if (gnm_style_get_contents_hidden (style))
return;
if (!gnm_cell_is_empty (cell)) {
char * rendered_string;
rendered_string = gnm_cell_get_rendered_text (cell);
latex_fputs (rendered_string, output);
g_free (rendered_string);
}
}
/**
* latex2e_table_write_file_header:
*
* @output: Output stream where the cell contents will be written.
*
* This ouputs the LaTeX header. Kept separate for esthetics.
*/
static void
latex2e_table_write_file_header(GsfOutput *output)
{
gsf_output_puts (output,
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
"%% %%\n"
"%% This is a LaTeX2e table fragment exported from Gnumeric. %%\n"
"%% %%\n"
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
);
}
/**
* latex_table_file_save : The LaTeX2e exporter plugin function.
*
* @FileSaver : New structure for file plugins. I don't understand.
* @IOcontext : currently not used but reserved for the future.
* @WorkbookView : this provides the way to access the sheet being exported.
* @filename : where we'll write.
*
* This writes the top sheet of a Gnumeric workbook as the content of a latex table environment.
* We try to avoid all formatting.
*/
void
latex_table_file_save (GOFileSaver const *fs, GOIOContext *io_context,
WorkbookView const *wb_view, GsfOutput *output)
{
GnmCell *cell;
Sheet *current_sheet;
GnmRange total_range;
int row, col;
/* This is the preamble of the LaTeX2e file. */
latex2e_table_write_file_header(output);
/* Get the topmost sheet and its range from the plugin function argument. */
current_sheet = wb_view_cur_sheet(wb_view);
total_range = sheet_get_extent (current_sheet, TRUE);
/* Step through the sheet, writing cells as appropriate. */
for (row = total_range.start.row; row <= total_range.end.row; row++) {
ColRowInfo const * ri;
ri = sheet_row_get_info (current_sheet, row);
if (ri->needs_respan)
row_calc_spans ((ColRowInfo *) ri, row, current_sheet);
for (col = total_range.start.col; col <= total_range.end.col; col++) {
/* Get the cell. */
cell = sheet_cell_get (current_sheet, col, row);
/* Check if we are not the first cell in the row.*/
if (col != total_range.start.col)
gsf_output_printf (output, "\t&");
if (gnm_cell_is_empty (cell))
continue;
latex2e_table_write_cell(output, cell, current_sheet);
}
gsf_output_printf (output, "\\\\\n");
}
}
|