Jin Li
Jin Li
如果是 Markdown 格式的文档,处理如下: **原文** ``` 那么我们可以将矩阵$A_i$约化 ``` **格式化后** ``` 那么我们可以将矩阵 $A_i$ 约化 ``` 但是如果是 HTML,我就不清楚具体格式了,可以拿下面的简单示例做参考: https://zhuanlan.zhihu.com/p/45826349 文章开头的这样一句话: ``` 任意的 mxn 矩阵A都定义了四个子空间 ``` 有明显不符合规范的地方。
I've met this problem too.
> Hi guys, thank you for raising this issue! > I implemented a feature about encoding, some time ago: #2 > In the case of the website you mention, the...
I have just checked the HTML generated by the above instruction, and it is correct. Thank you for doing this for us and hopefully it will be solved one day.
或许可以直接关闭类似的 issue,考虑到过多的 issue 数有碍偶遇者的使用冲动。
我用默认的GPT3.5模型,尝试了不同的prompt,比如要求不翻译人名(name of a specific person)或者事物名称(proper nouns),都没解决这个问题。我还尝试要求在人名译文后附上原文,也不能保证100%成功。
很不错的文章,谢谢。
在 https://docs.opentitan.org/doc/rm/asm_coding_style/ 中提及,不建议使用 ```.align```,似乎因为这在不同架构下解释不同,我在 RISC-V 的手册中看到 ```.align 2``` 的意思是按 $2^2=4$ 字节对齐,所以实际上文中的写法是按 16 字节对齐的? 这种场景下建议使用 ```.balign 4```