pdf中如何写上标?

发布于 2024-11-28 19:33:48 字数 139 浏览 1 评论 0原文

我必须编辑 pdf 中的第 1st 但我不知道该怎么做,有人可以帮我吗

像这个

1st

pdf中的上标有没有快捷方式。请帮帮我。

谢谢

I have to edit 1st in pdf but i don't know how to do can anyone please help me out

For example;

Like this

1st

Is there any shortcut for the superscript in pdf. please help me out.

Thanks

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

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

发布评论

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

评论(3

洛阳烟雨空心柳 2024-12-05 19:33:48

我不知道您使用哪种工具来创建 PDF 文件,但由于您一般询问 PDF 而不是特定工具,所以我检查了 PDF 规范(我有 ISO 标准的副本),发现了两点提到上标:

PDF有一个“文本升高”命令(Ts),可以用来制作上标,但它不会改变字体大小,因此应该手动完成。

文本还有一个 BaselineShift 属性,可用于达到相同的效果。

因此,在您使用的任何工具中,您可以增加基线偏移并减小字体大小以制作上标。

I don't know which tool you use for creating PDF files, but since you are asking about PDF in general and not a specific tool, I checked with the PDF spec (I have a copy of the ISO standard), and found two points superscripts are mentioned:

PDF has a "Text raise" command (Ts), which can be used to make a superscript, but it doesn't change font size, so that should be done manually.

There is also a BaselineShift property for texts that can be used for the same effect.

So, in any tool you are using, you could increase baseline shift and reduce font size to make superscript.

春花秋月 2024-12-05 19:33:48

转到“内容编辑”下的“编辑文本和图像”。选择所需的字体,其中也包含上标。

Go to 'edit text and images' under the 'content editing'. Choose the desired font which includes a superscript too.

纵性 2024-12-05 19:33:48

我只是像最后一个答案一样使用这个函数,它不会改变字体大小,但会给出第 th,nd ie...

Public function SupScript(d)
    Select Case d
    Case 1,21,31:strSup = "st"
    Case 2,22:strSup = "nd"
    Case 3,23:strSup = "rd"
    Case Else:strSup = "th"
    End Select
SupScript = strSup

End Function

daynumber & 日期。 SupScript(天数)

I just use this function like the last answer it does not change the font size but give the th,nd ie...

Public function SupScript(d)
    Select Case d
    Case 1,21,31:strSup = "st"
    Case 2,22:strSup = "nd"
    Case 3,23:strSup = "rd"
    Case Else:strSup = "th"
    End Select
SupScript = strSup

End Function

daynumber & SupScript(daynumber)

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