mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
add coments/questions
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1810 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
076298793d
commit
8c26f725e8
@ -1,3 +1,7 @@
|
|||||||
|
2001-03-23 Lars Gullik Bjønnes <larsbj@trylle.birdstep.com>
|
||||||
|
|
||||||
|
* tabular.C: add some comments.
|
||||||
|
|
||||||
2001-03-22 Juergen Vigna <jug@sad.it>
|
2001-03-22 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* buffer.C (parseSingleLyXformat2Token): redone the minipage
|
* buffer.C (parseSingleLyXformat2Token): redone the minipage
|
||||||
|
@ -1993,6 +1993,7 @@ int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
|
|||||||
if (LeftLine(cell))
|
if (LeftLine(cell))
|
||||||
os << '|';
|
os << '|';
|
||||||
if (!GetPWidth(cell).empty()) {
|
if (!GetPWidth(cell).empty()) {
|
||||||
|
#warning Jürgen, are these alignments correct? (Lgb)
|
||||||
switch (GetVAlignment(cell)) {
|
switch (GetVAlignment(cell)) {
|
||||||
case LYX_VALIGN_TOP:
|
case LYX_VALIGN_TOP:
|
||||||
os << "p";
|
os << "p";
|
||||||
@ -2043,6 +2044,7 @@ int LyXTabular::TeXCellPreamble(ostream & os, int cell) const
|
|||||||
} else if (GetUsebox(cell) == BOX_MINIPAGE) {
|
} else if (GetUsebox(cell) == BOX_MINIPAGE) {
|
||||||
os << "\\begin{minipage}[";
|
os << "\\begin{minipage}[";
|
||||||
switch (GetVAlignment(cell)) {
|
switch (GetVAlignment(cell)) {
|
||||||
|
#warning Jürgen, are these alignments correct? (Lgb)
|
||||||
case LYX_VALIGN_TOP:
|
case LYX_VALIGN_TOP:
|
||||||
os << "t";
|
os << "t";
|
||||||
break;
|
break;
|
||||||
@ -2107,6 +2109,7 @@ int LyXTabular::Latex(Buffer const * buf,
|
|||||||
os << column_info[i].align_special;
|
os << column_info[i].align_special;
|
||||||
} else if (!column_info[i].p_width.empty()) {
|
} else if (!column_info[i].p_width.empty()) {
|
||||||
switch (column_info[i].valignment) {
|
switch (column_info[i].valignment) {
|
||||||
|
#warning Jürgen, are these alignments correct? (Lgb)
|
||||||
case LYX_VALIGN_TOP:
|
case LYX_VALIGN_TOP:
|
||||||
os << "p";
|
os << "p";
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user