1)  repeat-action key; typematic key
重复作用键
2)  repetition
重复
1.
Approach to the Mode of Architectural Space Organization——Repetition and Combination of the Unit Space;
探究建筑空间组织方式——论单元空间的重复与组合
2.
On The Repetition of Paper and Electronic Edition of Imported Periodicals;
高校进口期刊纸本版与电子版重复引进问题
3.
Adding verse into novels,singing three chorus in one verse——On introduction and repetition of verse in the novels by Jia Ping-ao;
援诗入文,一唱三叹——论贾平凹小说中诗歌的引入与重复
3)  duplicate
重复
1.
Investigation and countermeasures on nursing duplicated records in grass-root hospitals;
基层医院护理重复记录的调查及对策
2.
Scalable method for detecting duplicate stream data;
可伸缩的重复流数据检测方法
3.
The index technique in relational database can judge rapidly a duplicate record.
关系数据库中的索引技术可以快速判断记录重复,但对于频繁更新的海量数据库,维护索引的时间与资源开销较大。
4)  Duplication
重复
1.
This paper speaks in recommendation of a plan of safety unit with duplication loading of mortar.
本文介绍了一种迫击炮重复装弹保险器的设计方案。
2.
Many structural variations, including deletion,inversion, duplication, and etc.
近年来的研究发现,AZFc区中存在各种染色体结构的变化,包括染色体片断的缺失、倒位和重复等。
5)  repeat
重复
1.
Effects of repeated injection of intravitreal triamcinolone on macular edema in central retinal vein occlusion;
曲安奈德玻璃体腔重复注射治疗视网膜中央静脉阻塞性黄斑水肿的疗效评价
2.
Jia Pingwa used same or close detail depiction in many of his novels,constituting the art characteristics of repeated description.
贾平凹在其多篇小说中使用了相同或相近的细节描写,从而构成了重复叙述的艺术特点。
3.
Subject repeating technique is an important creative feature of Grieg s Lyric Piano Opusculum.
主题重复手法是格里格钢琴抒情小品的一个重要创作特点。
6)  Repetition
“重复”
参考词条
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

说明:补充资料仅用于学习参考,请勿用于其它任何用途。