基本 LaTeX 问题
关于 LaTeX 的两个(希望很快的)问题:
如何对选择的函数进行编号?我正在使用
<前><代码>功能1 功能2 (1) 功能3 功能4 (2)documentclass{article}
,如果这很重要的话。我想要对某些功能进行编号,例如如何制作一个符号来评估积分?我知道如何做括号,但是是否可以在积分边界的函数右侧只制作一盏直灯?我不知道该怎么做。
Two (hopefully quick) questions about LaTeX:
How do you number select functions? I'm working in a
documentclass{article}
, if that matters. I want to have certain functions numbered such asfunction1 function2 (1) function3 function4 (2)
How do you make a sign to evaluate an integral? I know how to do brackets, but is it possible to only make one straight light to the right of the function with the bounds of integration? I can't figure out how to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
(1) 的答案。
(2) 的答案。
The answer to (1).
The answer to (2).
我按照您在 LyX 中的要求进行操作并导出到 LaTex:
编辑: 哦,虽然您没有要求 - 请查看Detexify,因为将来你肯定需要查找符号:)
I did what you asked in LyX and exported to LaTex:
Edit: Oh, and while you didn't ask - check out Detexify, since you'll definitely need to look up symbols in the future :)
如果您希望向一段文本添加注释,使其呈现如下所示的内容:
那么您可以使用
\footnote{}
命令,如下所示:如果您希望对方程式进行编号因此您可以稍后在文本中引用它,使其呈现如下所示的内容:
您可以将
\equation{}
环境与\label
一起使用:然后 ,至于积分:
If you wish to add a note to a piece of text, such that it renders something like the following:
then you can use the
\footnote{}
command, like so:If you wish to number an equation so you can refer to it later in your text, such that it renders something like the following:
then you can use the
\equation{}
environment with a\label
:Lastly, as for integration: