从 LaTeX 中的图形标题中删除前缀
我想在 LaTeX 图形中的 \caption{}
中制作自己的标题。如何关闭出现的标题中的“Figure”前缀?
I'd like to make my own caption inside \caption{}
in figures of LaTeX. How can I turn off the "Figure " prefix from the captions that appear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
首先使用
caption
包,然后以这种方式使用命令\caption*
而不是
\caption{some text}
逻辑是一样的避免对节和小节以及许多其他对象进行编号
First use the
caption
package and then use the command\caption*
in this wayinstead of
\caption{some text}
Logic is the same in avoiding numbering of sections and subsections and many other objects
您可以使用
caption
包并执行以下操作:You can use the
caption
package and do this:不要在加载
caption
包时定义标题样式,而是在之后进行设置:这些更改现在仅适用于
figure
环境。Instead of defining the caption style when loading the
caption
package, set it up afterwards:These changes will now only pertain to
figure
environments.您可以使用
关闭标题文本,然后使用再次打开标题文本。
如果您希望不同部分的标题文本有所不同,
You can use
to turn the caption text off and then use
to turn the caption text on again if you want it to be different in different sections.
如果您不想使用其他包,可以使用以下解决方法在图形下方添加标题(文本):
If you don't want to use additional packages, here is a work-around to put a caption (text) below the figures: