导致 odfWeave 生成的 odt 文件被视为已损坏的行
我尝试过 odfWeave 一点,不错的应用程序。但一开始,即使我完全按照手册中提供的示例进行尝试,也无法生成任何文件。
我在 odt 文件中进行了一些搜索,发现 content.xml
中的一条语句导致了问题,它是:
text:bullet-char=""< /code>
这句话实际上是什么?我该如何在 R 中解决这个问题?谢谢!
I have tried odfWeave
a bit, nice app. But at the very beginning, even I tried exactly as the example provided in the manual, I can't generate any file.
I have searched a bit inside the odt file and found a statement inside the content.xml
cause the problem, it is:
text:bullet-char="<U+25CF>"
what is the statement actually? how can I fix that in R? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 odfWeave 上遇到了类似的问题,可以追溯到语言环境不是 utf8 (请参阅 http://tolstoy.newcastle.edu.au/R/e10/help/10/05/4247.html)。
如果您运行 Sys.getlocale(),这将告诉您 R 正在运行什么语言环境。如果我没记错的话,将其设置为 en_US.UTF-8 是有效的。
或者,在运行示例时,注释掉(或只是不执行)该行;
设置要使用的项目符号字符。
I've had a similar problem with odfWeave, which was traced back to the locale not being utf8 (see http://tolstoy.newcastle.edu.au/R/e10/help/10/05/4247.html).
If you run
Sys.getlocale()
this will tell you what locale R is running. If I remember correctly, setting it to en_US.UTF-8 worked.Alternativley, when running the example, comment out (or just don't execute) the line;
which sets the bullet character to use.