wps实用办公技巧拼音(5秒标注上千字拼音 - WPS拼音指南大升级)
- 办公技巧
- 2023-08-18 05:14:02
- 0
导读:最新版本(14036)wps的拼音指南功能进行了一次重大更新升级,不仅可以一键标注全文拼音,而且还能自定义拼音生成的位置,话不多说,随我走进今天的技能分享,视频可以点这里进行观看。
看完本文,你将学到:
一键标注全文拼音自定义拼音字体如何删除拼音只保留拼音,不保留文字拼音置于文字的右侧快速切换拼音和文字的显示
第一章、一键标注全文拼音
我们以上面这篇文档为例,如果我们想给全文标注拼音,那么我们:
第一步:点击拼音指南
第二步:点击对全文注音
第三步:点击开始注音
第四步:等待进度条走完(1000字注音仅需5秒)
第五步:现在我们就给全文标注好了拼音
第二章、自定义拼音字体
如果我们想修改当前拼音的字号和字体,那么我们首先要全选全文(ctrl a),然后点击拼音指南,修改拼音字体的参数,最后点击“开始注音”,等进度条走完,拼音字体和字号就已经修改完成。
第三章、如何删除拼音
如果我们想删除某部分或者全文的拼音
第一步:选中要删除拼音的部分(如果是全文取消,那么要全选)
第二步:点击拼音指南,点击“删除全部拼音”,最后点击“开始注音”
第四章、只保留拼音,不保留文字
如果我们只想保留拼音,不要文字部分,那么我们在拼音指南中,勾选“替换汉字”,这样我们就能去除文字,只保留拼音部分了
第五章、拼音置于文字的右侧
拼音置于右侧也是同样的操作,我们在这里勾选“单个拼音右侧”,然后点击开始注音就能得到想要的结果(相当实用)
第六章、介绍完基础功能
我们在这些功能的基础上做一个升级,做一键切换文字和拼音显示的宏按钮,便于以后我们的操作,效果如下图所示:
第一步:插入3个命令按钮
第二步:给按钮进行重命名(属性-caption)
第三步:右键按钮-查看代码
进入代码区,然后分别给三个按钮设置代码如下图所示(代码会放到文档最后):
第四步:然后通过点击按钮,就可以切换全文的拼音显示了
这就是今天一闪流溢分享的wps知识点
关注一闪流溢,每天get新技能!
js宏代码如下:
function CommandButton3_Click()
{
Selection.WholeStory();
Selection.Font.ColorIndex=wdBlack;
var 一闪流溢 = ActiveDocument.Content.Find;
一闪流溢.Replacement.Font.ColorIndex = wdWhite;
一闪流溢.Execute("[一-龟]", undefined, undefined ,true, undefined, undefined,true, undefined, undefined, undefined, wdReplaceAll, undefined, undefined, undefined, undefined);
一闪流溢.Replacement.Font.ColorIndex = wdBlack;
一闪流溢.Execute("[()]", undefined, undefined ,true, undefined, undefined,true, undefined, undefined, undefined, wdReplaceAll, undefined, undefined, undefined, undefined);
}
function CommandButton1_Click()
{
Selection.WholeStory();
Selection.Font.ColorIndex=wdBlack;
var 一闪流溢 = ActiveDocument.Content.Find;
一闪流溢.Replacement.Font.ColorIndex = wdWhite;
一闪流溢.Execute("(*)", undefined, undefined ,true, undefined, undefined,true, undefined, undefined, undefined, wdReplaceAll, undefined, undefined, undefined, undefined);
一闪流溢.Replacement.Font.ColorIndex = wdBlack;
一闪流溢.Execute("[()]", undefined, undefined ,true, undefined, undefined,true, undefined, undefined, undefined, wdReplaceAll, undefined, undefined, undefined, undefined);
}
function CommandButton2_Click()
{Selection.WholeStory();
Selection.Font.ColorIndex=wdBlack;
}
本文由 京廊文化根据互联网搜索查询后整理发布,旨在分享有价值的内容,本站为非营利性网站,不参与任何商业性质行为,文章如有侵权请联系删除,部分文章如未署名作者来源请联系我们及时备注,感谢您的支持。
本文链接: /bangong/17953.html