导致 odfWeave 生成​​的 odt 文件被视为已损坏的行

发布于 2024-10-03 11:20:59 字数 248 浏览 4 评论 0原文

我尝试过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-10-10 11:20:59

我在 odfWeave 上遇到了类似的问题,可以追溯到语言环境不是 utf8 (请参阅 http://tolstoy.newcastle.edu.au/R/e10/help/10/05/4247.html)。

如果您运行 Sys.getlocale(),这将告诉您 R 正在运行什么语言环境。如果我没记错的话,将其设置为 en_US.UTF-8 是有效的。

或者,在运行示例时,注释掉(或只是不执行)该行;

basicStyles$wideBullet$bulletChar="\342\234\224"

设置要使用的项目符号字符。

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;

basicStyles$wideBullet$bulletChar="\342\234\224"

which sets the bullet character to use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文