计算机菜单专业英语,InDesign中英文菜单对照表 -电脑资料

news/2024/10/28 0:29:09/

actual size 实际尺寸

align 对齐

anchor point 锚点

arrange 排列

assign 分配

assign profiles 指定色彩配置

attributes 属性

baseline 基线

bounding box 限位框

cascade 层叠

cell 单元格

cell options 单元格选项

change case 改变大小写

character 字符

Character sytle 字符样式

character sytle 字符样式

check spellilng 拼写检查

choose 选择

clear 清除

clipping path 剪切路径

close 关闭

color 颜色

colour settings 颜色设定

column 分栏

column 栏

command 命令

compound paths 复合路径

content 内容

control 控制

convert 转换

convert rows 转换行

convert table to text 把表格转换为文本

convert text to table 把文本转换为表格

convert to profile 转换色彩配置

copy 拷贝

corner effects 角效果

creat guides 创建辅助线

creat outlines 字转外框

cursor 光标

cut 剪切

deselect all 取消全选

dictionary 字典

direct-selection tool 直选工具

display performance 显示方式

display performance 显示方式

distribute columns evenly 均分列

distribute rows evenly 均分行

document 文档

document presets 文档样式

document setup 文档设置

drop shadow 阴影

duplicate 复制

edit 编辑

edit footer 编辑表尾

edit header 编辑表头

edit in story editor 在文章编辑器中编辑

entire pasteboard 整个粘贴板

exit 退出

Export 导出

feather 羽化

file 文件

file 文件

file info 文件信息

fill with placeholder text 用占位符填充

find/change 查找/替换

find font 检查字体

find next 查找下一个

first page 首页

fit page in window 全页显示

fit spread in window 跨页显示

fitting 适应

font 字体

footer 页脚

footer 表尾

format 格式

frame. edges 框边线

glyphs 字形

go back 向后

go forward 向前

go to row 转到行

gradient 渐变

grid 网格

group 成组

guides 辅助线

handle 把手

hand tool 手形工具

header 页眉

header 表头

hyperlinks 超级链接

icon 图符

image color settings 图像颜色设置

import XML 导入XML

info 信息

insert 插入

insert break character 插入分隔符

insert special character 插入特殊字符

insert table 插入表格

insert white space 插入空格

interactive 交互


http://www.ppmy.cn/news/435831.html

相关文章

(转载)从0开始学matlab(第1天)—变量和数组

MATLAB 程序的基本数据单元是数组。一个数组是以行和列组织起来的数据集合,并且拥有一个数组名。数组中的单个数据是可以被访问的,访问的方法是数组名后带一个括号,括号内是这个数据所对应行标和列标。标量在 MATLAB 中也被当作数组来处理——…

手机IMEI号是怎样产生的

手机IMEI号是怎样产生的 手机IMEI码由15-17位数字组成。 第一部分 TAC,Type Allocation Code,类型分配码,由8位数字组成(早期是6位),是区分手机品牌和型号的编码,该代码由GSMA及其授权机构分配…

XTU 1387 完全区间

题目描述 序列X由线性产生式 xnaxn−1bxn−2,x0x11 产生, 序列Y由线性产生式 yncyn−1dyn−2,y0y11 产生, 集合Z{xy∣x∈X,y∈Y}。 现有区间[L,R],求最长的子区间[l,r],满足L≤l≤r≤R,∀z∈[l,r],z∈Z。 输入格式 第一行是一个整数T(1≤T…

Team Queue HDU - 1387

HDU - 1387 题意分析: 题目会先开始给你一个主队列,然后按照要求加入新成员 ENQUEUE x: 如果主队列里面没有当前成员,那么就加在主队列队尾,如果主队列已经有了会在主队列成员里面扩展出子队列加入该成员DEQUEUE :主队队首出列ST…

厦大上机1387

进制转换进阶版 描述 给若干个十进制,要求把每个数转成M(2 \le M \le 162≤M≤16)进制,用递归实现,和一般进制表示法相同,A代表10,B代表11,C代表12,D代表13,…

51nod1387 移数字

题面 题目链接 解题思路 当 n n n是偶数是&#xff0c;答案是 n ! n! n!&#xff0c;当 n n n是奇数时&#xff0c;答案是 n ! 2 \frac{n!}{2} 2n!​。 这里记录一份跑的很快的MTT和求 n ! n! n!的模板&#xff0c;给出来源博客链接。 代码 #include <cstdio> #inclu…

hihocoder #1387 : A Research on The Hundred Family Surnames【虚树】

题目描述&#xff1a; 大小为n的树上每个节点上有一个姓氏(字符串&#xff0c;可能相同)&#xff0c;m个询问&#xff0c;每次询问某两个姓氏在树上的最远距离。n,m<100000 题目分析&#xff1a; 最远距离只能在直径的端点之间取得&#xff0c;建出每个姓氏的虚树求直径两…

P1387 最大正方形 DP

输入 15 10 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 0 1 1 0 0 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 0 1 0 0…