發表文章

目前顯示的是 10月, 2006的文章

docbook 常見設定

1.如何在 DocBook 中放入 MathML? 看這裡 [交叉參考的處理] 交叉參考只想顯示編號標題,不想顯示說明標題 如:圖11."妹妹的照片" -> 圖11. 開啟 param.xsl 設定 xref.with.number.and.title = 0 [文章 參考文獻的引用以數字不以(人名+年份)] 文獻引用標題為 [1] 而不是 [Brooks95] 開啟 param.xsl 設定 bibliography.numbered= 0 docbook 參考文獻的處理 biblioentry vs bibliomixed biblioentry Contains a set of bibliographic elements in random order that the stylesheet selects, orders, and renders. It does not permit PCDATA (ordinary text) except in its child elements. bibliomixed Contains the mix of elements, text, and punctuation as you want it presented. The stylesheet formats elements but does not rearrange them. The term mixed is used here because this is mixed content of elements and text (PCDATA). make a citation link to the specificed biblioentry This citation: to this entry: brody98 ... will generate this citation text: [brody98] 在 xref , link 或 biblioref 等元素設定 linkend 屬性即可 citation 只有在妳不想有連結才用。 xref or biblioref 會自動產生 citation 文字 bibliography.numbered

DocBook 文件轉換環境設定

http://docs.google.com/View?docid=dcmdskhw_2hb698f

知識工程

知識工程的活動 問題評估 知識系統介面/結構的發展 將結構化知識實作進知識庫 獲取並組織相關的資訊、知識及特殊領域知識 測識並確認新加入的知識 整合及維護系統 修訂及評量系統 Various activities of KE specific for the development of a knowledge-based system: Assessment of the problem Development of a knowledge-based system shell/structure Implementation of the structured knowledge into knowledge-bases Acquisition and structuring of the related information, knowledge and specific preferences Testing and validation of the inserted knowledge Integration and maintenance of the system Revision and evaluation of the system.

既有 GSM 系統增加 GPRS 功能所需的修改:

既有 GSM 系統增加 GPRS 功能所需的修改: 1.Core Network adds SGSN, GGSN 2.BS adds PCU 3.Upgrade software SGSN -- software GPRS support node GGSN -- gateway GPRS support node PCU -- packet control unit

vim 很有用卻又不好記的功能

*比較兩個檔 :o f1 :vert diffsplit f2 就會對 f1 及 f2 作 diff *自定檔案型態 遇到某些檔以特定 syntax 開啟的設定存在 /vim/vim70/filetype.vim *在 ex script 取出目前正在編輯的檔案檔名的方法 (current filename) filename 通常就是目前 buffer 的 name。 "%" 表示目前的 buffer ,利用 :bufname("%") 便能取出目前正在編輯的檔名。 "#" 表上個編輯的 buffer *執行目前的 buffer 中的 ruby script :map :w :rubyfile %