说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 纯文本汉字库
1)  plain text Chinese characters database
纯文本汉字库
2)  Chinese character text
汉字文本
1.
In the process of practising the writing by words of Chinese character text,we meet with many psychological obstacles,including wasting paper,staccato reading,uncertainty about word,etc.
对汉语汉字文本实行词式书写遇到的心理障碍主要包括浪费纸张、阅读不连贯、词无法确定等。
3)  Chinese Character Reference Database
汉字码本数据库
1.
Chinese Character Reference Database is playing an important role at Chinese information processing,especiallySat input method development.
本文首先提出了汉字码本数据库的概念 ,它是指能够实现汉字字符信息到其相应属性的对应关系的数据结构。
4)  Chinese text analysis
汉字文本分析
1.
BCF(Blank Count Feature), a new feature of the construction of projection profile, was presented for Chinese text analysis.
针对汉字文本分析,提出了一种新的文本特征———空白线特征(BCF)来进行文本投影轮廓生成。
5)  Chinese character library
汉字字库
6)  Chinese character library
汉字库
1.
Design and application of standard Chinese character library in single chip microcomputer system;
单片机系统中标准汉字库的生成及应用
2.
The realization of the LCD controller driver program and application program is emphatically discussed,including establishment of the Chinese character library,indexing of the Chinese character library,displaying of Chinese characters and realization of the Chinese menu.
文章简要介绍了ARM7处理器S3C44B0X内置LCD控制器和EPSON EG1147液晶显示模块以及两者之间的接口,在此基础之上,重点论述了LCD控制器的驱动程序以及应用程序的实现过程,其中主要包括汉字库的建立及其索引、单个汉字的显示和中文菜单的实现。
3.
A solution for Chinese character library using 24Cxxx of I 2C model is given, and the respective software program is also presented.
给出了一种使用串行 I2 C方式的 EEPROM2 4 Cxxx的汉字库解决方案。
补充资料:在AutoCAD中做纯文本的导入导出
在使用AutoCAD绘图软件进行工作时,有时需要把用文字编辑器写好的段落文字插入到图形中,并用AutoCAD的文字编辑命令进行修改;有时也需要把图形中已有的文字输出到文件中,以便用文字编辑器进行处理。AutoCAD中并没有直接提供关于文本插入和文本输出的命令,遇到这样的问题该怎么办?当然,通过剪贴板进行OLE方式的复制与粘贴是无法实现上述要求的。下面介绍的方法能够解决在AutoCAD与文字编辑器之间进行纯文本的导入和导出的问题。 
  1. 导入文本

  虽然AutoCAD中没有提供插入文本的命令,但是利用多行文字编辑命令“Mtext”可以实现文本插入。在Mtext的对话框中有一个“ImportText…”命令按钮,点击后出现“打开”对话框,在此可以选择磁盘上的“.txt”、“.rtf”格式的文件进行插入,插入后的文本即可用“Ddedit”命令进行编辑,注意插入文件大小不得超过16KB,这显得美中不足。值得一提的是可以将“Mtext”默认的文字编辑器改为“Windows 记事本”或者“Microsoft Word 2000”。选取“Tools”菜单的“Preferences…”对话框,将“Text Editor、Dictionary、Font File Names”目录下的“Text Editor Application”项,由“Internal”改为记事本或Word 2000的磁盘路径,例如:C:\Windows\Notepad.exe。通过设置系统变量“Mtexted”也可以实现相同操作。

  2. 导出文本

  如果仅有少量文字需要导出,那么在“Ddedit”或“Mtext”的编辑框中,选择文字进行复制,然后粘贴到文字编辑器中即可。但是如果图纸中有大量散落的文字需要导出,上述方法就不太适用了。下面提供的小程序“ExpText.lsp”,可以通过AutoCAD的窗选方式直接将所选文字输出到文本文件中去。

;;; ExpText.lsp(defun c:EXT (/ flnm fn s n index ents ent txt) 
 (setq flnm (getstring “\nFile name:”)) 
 (setq fn (open flnm “w”)) 
 (setq s (ssget)) 
 (setq n (sslength s)) 
 (setq index ( - n 1)) 
 (repeat n 
  (setq ents (entget (ssname s index))) 
  (setq index ( - index 1)) 
  (setq ent (assoc 0 ents)) 
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条