1)  Num Lock key
数字锁定键
2)  figure
数字
1.
Figure stomach intestine machine promotion step and merit.
数字胃肠机的升级步骤和优点。
2.
Color,pattern,shape and figure are elements which inevitably cause people’s imagination.
恰当地运用包装色彩、图案、造型和数字能够引发顾客积极的联想为产品带来顾客缘。
3)  digit
数字
1.
The application of digit in modern anti-counterfeiting printing;
数字在现代防伪印刷技术中的应用
2.
Research of All-digital Prediction Frequency Doubling Technology based on Condition Monitoring;
基于状态监测的全数字预测倍频技术研究
3.
The technology of distinguishing expressions of digits and numerals for browsing translation system;
Internet浏览翻译系统数字与数词表达形式的识别技术
4)  digital
数字
1.
Study of digital power supply of air plasma welding and cutting machine;
数字式等离子焊割机电源的研制
2.
Research on digital video monitoring server and its key technology;
数字视频监控服务器及其关键技术研究
3.
Construction and application of digital surgical operation image teaching system;
数字手术影像示教系统的建立与应用
5)  numbers
数字
1.
How to Deal with Numbers in Listening Comprehension;
英语听力中的数字及其对策
2.
A Study on the Symbolic Meanings of Some Numbers in the Epic Janggar;
史诗《江格尔》中某些数字象征意义探析
6)  number
数字
1.
The number system analytic method and ASM graph;
数字系统分析方法及ASM图
2.
On the Cultural Differences of Numbers;
浅谈英汉文化对数字诠释的异同
3.
This paper puts up with the necessities , foundaments and conditions of the construction of the number file by analyzing the conception of the number file, and then discusses how to construct it.
文章通过对数字档案馆概念的分析,提出了建设数字档案馆的必要性、基础和条件,并就如何建设数字档案馆进行了探讨。
参考词条
补充资料: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

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