https://bugs.documentfoundation.org/show_bug.cgi?id=63347
--- Comment #19 from Miklos Vajna <[email protected]> --- While I confirm the document opens in Word with the picture, it doesn't seem to conform to the RTF spec. Page 93 of the RTF spec says that tables start with the \trowd control word and end with the \row control word. Here is a minimal reproducer of your document: {\rtf1 \trowd\cellx1000\cellx2000 \pard\intbl A1\cell \pard\intbl B1\cell \row \pard\trowd\cellx1000\cellx3000 \par after\par } You clearly work with \trowd after the last \row, which is not closed by the time the parser reaches the end of the document, which is arguable invalid. What you probably want is to move your repeated table row definition earlier, i.e. swap the \row and the second \cellx\cellx lines, then both Writer and Word will read your file, and as a bonus point your document will conform to the spec. This sounds much more clean compared adding yet another workaround to the Writer RTF import to please invalid documents. -- You are receiving this mail because: You are the assignee for the bug.
