如何使用 Github-Pages 的 markdown 显示求和 (\sum) 符号上方和下方的符号?
How do I show symbols above and below the summation sign
using <img src="https://render.githubusercontent.com/render/math?{}>
? Is it possible? If not, what are my other options to render such a math symbol?
I closest I got is <img src="https://render.githubusercontent.com/render/math?math={\color{black} \sum_{d=0}^{d_{max}}}">
which give . But this layout is not what I desire to achieve.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现
https://render.githubusercontent.com/render/math?
正在使用乳胶命令。因此,命令\displaystyle
需要在\sum
之前才能实现我想要的格式。因此
。

给出I discovered that
https://render.githubusercontent.com/render/math?
is using latex commands. Hence, the command\displaystyle
needs to precede\sum
to achieve the format that I desire.Therefore
.
<img src="https://render.githubusercontent.com/render/math?math={\color{black} \displaystyle\sum_{d=0}^{d_{max}}}">
gives