「MediaWiki/拡張機能」の版間の差分

提供:ペチラボ書庫
ナビゲーションに移動 検索に移動
26行目: 26行目:
‎</syntaxhighlight>
‎</syntaxhighlight>


=== Score ===
=== ABCjs ===
https://www.mediawiki.org/wiki/Extension:Score/ja
 
楽譜を表示できる。
楽譜の描画には[https://lilypond.org/index.ja.html LilyPond]が使用され、事前にインストールが必要。
<score>
\relative c'' { \time 4/4 \key c \major
c4 g8 g a4 g r b^> c^> r \bar "|." }
\addlyrics { Shave and a hair -- cut: two bits. }
</score>

2023年2月5日 (日) 00:54時点における版

MediaWikiには便利な拡張機能がある。

導入方法

  1. Extentionをダウンロードする
  2. extensions ディレクトリに入れる
  3. LocalSettings.php でロードするように書く
  4. maintenance/update.php を実行する

便利な拡張機能の一覧

Math

数式を表示する。

[math]\displaystyle{ f(x) = x^2 }[/math]

SyntaxHighlight

コードを表示する。 inline属性を追加するとインライン表示できる。

#include <stdio.h>
void main(){
	std::cout << "Hello, World!" << std::endl;
	return 0;
}

ABCjs