Mediawiki 擴展:修訂版本之間的差異

出自六年制學程
跳轉到: 導覽搜尋
Math裝不起來
Math裝不起來
第 52 行: 第 52 行:
 
#*在 mw1.24版之前用「require_once("$IP/extensions/Math/Math.php");」
 
#*在 mw1.24版之前用「require_once("$IP/extensions/Math/Math.php");」
 
#*在 mw1.25版之後用「wfLoadExtension( 'Math' );」
 
#*在 mw1.25版之後用「wfLoadExtension( 'Math' );」
 +
'''各種安裝 texvc 的方法:'''
 +
#[http://galeki.is-programmer.com/posts/4170.html gem install genki-texvc]
 +
#[http://www.hovercool.com/hovercool/index.php/mediawiki安装math插件 apt-get install mediawiki-math-texvc]
 +
#丁丁所寫的外掛 mathImage.php ,需要線上 LaTex 生成,如:
 +
#*[https://www.codecogs.com/latex/eqneditor.php?lang=zh-cn 線上LaTeX]
 +
#*[http://latex.91maths.com/ LaTeX線上示例]
 +
 +
 
'''請參考'''
 
'''請參考'''
 
*[https://www.mediawiki.org/wiki/Extension:Math/zh#安裝 https://www.mediawiki.org/wiki/Extension:Math/zh#安裝] 頁中,右方模板形成之方框中:
 
*[https://www.mediawiki.org/wiki/Extension:Math/zh#安裝 https://www.mediawiki.org/wiki/Extension:Math/zh#安裝] 頁中,右方模板形成之方框中:

2019年3月3日 (日) 17:15的修訂版本

解析器函數(ParserFunctions)

安裝

在 LocalSettings.php 中加入:

  1. MediaWiki 1.24或更早版本:require_once "$IP/extensions/ParserFunctions/ParserFunctions.php";
  2. 較晚近的版本:wfLoadExtension('ParserFunctions');

可用參數,如:

$wgPFEnableStringFunctions=true; // 激活the intergrated字符串函數功能
$wgPFStringLengthLimit=1500; // 設字符串函數中字符串最大允許長度,預設值為1000

用法

請參考:官網

外掛 CSS

安裝

  1. 下載檔案,並將其放在 extensions 目錄下的CSS目錄內。
  2. 在 LocalSettings.php 中加入:
    • MediaWiki 1.29或更早版本:require_once "$IP/extensions/CSS/CSS.php";
    • 較晚近的版本:wfLoadExtension('CSS');

可用參數:

$wgCSSPath = false;  # 預設值,參考到 $wgScriptPath
$wgCSSPath = '';  # 參考到伺服器的文件根目錄
$wgCSSPath = 'https://example.org/stylesheets';  # 參考到其他的 site

用法

在 wiki 頁中加:

  • {{#css:MyStyles.css}} 或 {{#css:/skins/MyStyles.css}} ;
  • 或直接在解析器函數中寫入 CSS 規則,如下例所示:
{{#css:
  body {
    background: yellow;
    font-size: 20pt;
    color: red;
  }
}}

更多資料請參考:官網

Math裝不起來

版本匹配:

mw版本math版本
1.231.25
1.301.31

三層需求

  1. 伺服器上須裝有 texvc ,其編譯環境需要 OCaml 3.06,這一點目前在 DS216 上還做不到。其安裝方法在 Math/math/README 中有詳述,另請見Mediawiki_擴充套件#texvc。未裝 texvc 時的失敗範例在:
  2. 須有「前置字_math」資料表,其結構在外掛套件的 db 資料夾中的 math.mysql.sql ,先匯入資料表,再改名為 「前置字_math」。
  3. 須進行 LocalSettings.php 設定:
    • 在 mw1.24版之前用「require_once("$IP/extensions/Math/Math.php");」
    • 在 mw1.25版之後用「wfLoadExtension( 'Math' );」

各種安裝 texvc 的方法:

  1. gem install genki-texvc
  2. apt-get install mediawiki-math-texvc
  3. 丁丁所寫的外掛 mathImage.php ,需要線上 LaTex 生成,如:


請參考