C# 中的连字符

发布于 2024-11-04 21:59:29 字数 134 浏览 2 评论 0原文

我正在寻找一个示例项目,它将在 C# 中执行文本连字符。理想情况下,这应源自 TeX 连字算法或类似算法。我目前对英语感兴趣,尽管将来可能需要其他语言。有人见过类似的东西吗? 背景 我计划将其包含在使用 CoreText 的 MonoTouch 项目中。

I'm looking for a sample project that will perform hyphenation of text in C#. Ideally, this would be derived from the TeX hyphenation algorithm, or similar. I'm interested in English currently, although other languages may be required in the future. Anyone seen something like that?
background I'm planning on including this in a MonoTouch project using CoreText.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

请爱~陌生人 2024-11-11 21:59:29

我在 https://github.com/alkozko/NHyphenator 找到了 Knuth-Liang 连字算法的 C# 实现它似乎工作得很好。

但目前有两个缺点:

  1. 它无法加载开箱即用的 TeX 连字符模式文件(但是,添加对它们的支持似乎微不足道)。
  2. 目前尚不清楚源代码适用哪种许可证。

I found a C# implementation of Knuth-Liang hyphenation algorithm at https://github.com/alkozko/NHyphenator and it seems to work fine.

But there are currently two drawbacks:

  1. It can't load TeX hyphenation pattern files out-of-the-box (however, adding support for them seems trivial).
  2. It's unclear which kind of license applies to the source code.
森林迷了鹿 2024-11-11 21:59:29

显然,Donald Knuth 的算法非常出色。尽管没有可用的 C# 实现,但您是否考虑过将另一个实现转换为 C#? (例如,您可以转换与 C# 相当接近的 Java 实现。)

另一种选择是使用更简单的实现,可以在 StackOverflow 上的这个答案

Obviously, Donald Knuth's algorithms are excellent. Although there is not a C# implementation available, have you considered converting another implementation to C#? (For example, you could convert the Java implementation which is fairly close to C#.)

Another option is to use a simpler implementation which can be found over at this answer here on StackOverflow.

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