I use odfWeave for purposes of reproducible research. I've discovered it generally works well on MS Office 2007 using .odt files generated in Word, but \Sexpr{} commands almost always fail. I suspect Word is treating the underlying XML in a strange way, but I'm curious if anyone has seen that problem and figured out how to make it work.

Thanks,

Bill

link|improve this question

75% accept rate
A reproducible example would help. – Dirk Eddelbuettel Mar 20 '11 at 3:28
Fair request, Dirk. The next time I'm at that Windows machine (likely early next week), I'll generate something. – Bill Mar 20 '11 at 3:36
I did a simple document that says "<<loadLibs,echo=FALSE,results=hide>>= library(arm) @ Lorem ipsum \Sexpr{mean(rnorm(50))} and more lorem ipsum. "What I get out is "Lorem ipsum mean(rnorm(50))} and more lorem ipsum." – Bill Mar 21 '11 at 19:21
The problem is that, at least in some cases, Word puts XML markup around the \Sexpr. For example, content.xml includes text:style-name="T19"><text:s/></text:span><text:span text:style-name="T20">\Sexpr{</text:span><text:span text:style-name="T21">mean(rnorm(50)</text:span><text:span text:style-name="T22">)</text:span><text:span text:style-name="T23">}<text:s/></text:span><text:span which is messed up. I admit: I started with a longer document and kept editing it down to get to something that's not proprietary that I could share. I'll try it in LibreOffice later and update this. – Bill Mar 21 '11 at 19:31
That's not so easy, Dirk. If I create a memo, I end up with small text blocks in Word that break odfWeave. If I create a document from scratch, I don't, probably because my example documents are too simple. I found an O'Reilly article yesterday that pointed out a similar problem with Word and odt, but I can't find it. Their solution involved finding a way to configure Word to not issue certain page breaks on certain styles. – Bill Mar 22 '11 at 20:48
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

My not use odfCat? E.g.:

> odfCat(mean(runif(100)))
<text:p text:style-name="ArialNormal">0.4411</text:p>

Also see this post, might be related. Good luck anyway!

link|improve this answer
Thanks! odfCat worked, although it's not quite the inline code of \Sexpr. Now I have to read up on how to format the results of code chunks. :-) If anyone knows how to keep Word from breaking up \Sexpr expressions, I'm still interested, but this certainly suffices. – Bill Mar 24 '11 at 23:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.