<< Chapter < Page | Chapter >> Page > |
This module contains Connexions documentation which is out-of-date. The contents of this module are provided here for historical purposes only and should not be considered accurate for the current version of the Connexions website. The current (English-language) version of this module can be located at (External Link) . If you have any additional questions or cannot find the answer to your question, please contact techsupport@cnx.org and we will be happy to assist in any way we can.
If you would like to assist Connexions by helping us update this module with an appropriate translation from the current English version, please contact us at cnx@cnx.org as we would appreciate your help with improving our support for non-English-speaking users.
Connexions模組可以包含多種不同型式的多媒體,此模組將解釋您如何可以將下列的多媒體物件型式增加至一個模組裏:
任何可以放在網頁裏的多媒體物件型式,都可以藉由使用CNXML的
media(媒體)
標籤將其放置在Connexions模組裏。請查閱
CNXML Language Specification(CNXML語言說明) 裏關於
媒體 標籤的描述,以獲得更多資訊。唯一的要求是該物件必須具有一個可用的MIME (Multipurpose Internet Mail Extension)協定型式。MIME協定是一個可以讓資料傳輸的通訊協定,例如聲音或影片,透過網際網路而不需要轉譯成一個ASCII格式。請查閱
MIME
Types 以獲得更多資訊。此模組包含CNXML輸入的例子,以及它們不同的多媒體物件顯示的結果。
當您要將多媒體增加至您的模組時,請注意下列事項:
type(型式)
屬性必須符合MIME型式。例如,如果您所增加的一個圖片檔案是Portable Networks Graphics(.png附屬檔名)格式,type型式屬性必須是
image/png
,其輸入會像下面的例子:
<media type="image/png" src="mypicture.png"/>
使用在Connexions模組裏符合MIME型式的圖片檔案型式為:
要把圖片放置在您的模組裏,請在您的模組的index.cnxml檔案裏插入CNXML輸入,類似於下列的例子:
<figure id="figure-01"><name>插圖範例</name><media type="image/png" src="envelope-taller.png"/><caption>一個圖像的顯示。</caption></figure>
media媒體標籤裏的
src
屬性,是給定圖片的位置或來源,將其放置在您想要讓其出現在模組裏的地方。如果您已經將檔案上傳至您的模組裏,屬性可以是一個檔名;或者如果一個圖片檔案儲存在網際網路上的其他地方,屬性可以是一個完整的URL網址。
上方CNXML例子的 實際顯示 為:
您可以使用
subfigure標籤
把兩個圖片放置在相同的figure(插圖)裏。當您有兩個相關圖片,而想要將其並列放置或者上下放置時,這個標籤相當有用;要在同一個插圖裏顯示兩個圖片,請在您的模組的index.cnxml檔案裏插入CNXML的輸入,類似於下列的例子:
<figure id="figure-2" orient="horizontal"><subfigure id="subfigure-1"><name>較大圖像及信封</name><media type="image/png" src="envelope-taller.png"/><caption>子插圖1。</caption></subfigure><subfigure id="subfigure-2"><name>較小圖像及信封</name><media type="image/png" src="envelope.png"/><caption>子插圖2。</caption></subfigure><caption>在一個插圖裏水平顯示兩個圖片。</caption></figure>
上方CNXML例子的 實際顯示 為:
orient(方向)
屬性值可以是
horizontal(水平)
或
vertical(垂直)
,以及定義圖片如何安排在插圖(figure)裏。
如果您模組裏面圖片的大小,符合您線上觀看時的大小,但當您列印此模組時卻顯得太大時;Connexions讓您可以在模組裏插入一個附加的圖片檔案,讓其格式及大小符合列印版本所需。
eps
格式的圖片檔案,是使用在Connexions模組列印版本裏較佳的格式。如果您的模組包含相同圖片的
eps
檔案及
png
檔案;當Connexions產生一個列印版本的PDF檔時,Connexions會使用
eps
檔案;而如果在線上顯示模組時,會使用
png
檔案。
底下是說明如何在您的模組裏為列印版本插入附加的圖片檔案:
eps
格式版本,這個圖片應調整成適合的大小。eps
檔案的一個
media type(媒體型式)
輸入,位在線上顯示的圖片檔案輸入上方。此圖片檔案應該有相同的名稱,而副檔名應該指定其檔案型式。例如,image1.png是給線上使用的,而image1.eps是給列印使用的。eps
圖片檔案至此模組。<figure id='printimage'><media type='application/postscript' src='image.eps'><media type='image/png' src='image.png'/></media></figure>
eps
)的輸入必須出現在線上圖片(
png
)的輸入上方;線上圖片的輸入應該縮排,以及被嵌入在另一個圖片輸入裏面。Notification Switch
Would you like to follow the 'Connexions tutorial and reference (中文指導及參考 - chinese)' conversation and receive update notifications?