Mở rộng:SimpleMathJax

From mediawiki.org
This page is a translated version of the page Extension:SimpleMathJax and the translation is 39% complete.
Outdated translations are marked like this.
Cẩm nang phần mở rộng MediaWiki
SimpleMathJax
Trạng thái phát hành: ổn định
Cài đặt Tag
Mô tả Cho phép hiển thị các công thức toán học sử dụng MathJax với phong cách toán học MediaWiki
Tác giả jmnote, vedmaka, jamesmontalvo3, badshah400
Phiên bản 0.8.4 (2023-11-04)
MediaWiki 1.29+[1]
Database changes Không
Giấy phép MIT License
Tải xuống
README
Ví dụ zetawiki.com

  • $wgSmjUseCdn
  • $wgSmjUseChem
  • $wgSmjDisplayMath
  • $wgSmjExtraInlineMath
  • $wgSmjScale
  • $wgSmjEnableMenu
  • $wgSmjDisplayAlign
  • $wgSmjWrapDisplaystyle
Wiki công khai 909 (Ranked 270th)

Extension SimpleMathJax cho phép MathJax , một thư viện JavaScript, cho sắp chữ công thức TeX trong MediaWiki bên trong môi trường toán học . This extension will load resources from cdn.jsdelivr.net on all wiki pages that have math or chem tags.

<math>E=mc^2</math>
Ưu điểm
  • Đơn giản
  • Nhẹ (dung lượng)
  • Hỗ trợ UTF-8
  • Xem trên điện thoại di động OK
  • Thiết lập kích thước Font
  • MediaWiki Style! Xem tại mẫu.

Cài đặt

Or you can git clone.

$ git clone --depth 1 https://github.com/jmnote/SimpleMathJax.git

If you want to use local MathJax scripts (and not a CDN), then you can use git clone recursive. In most cases, CDN is much faster than your server. However, a CDN may not be available if you have a hardened PHP installation due to disabled_functions restrictions.

$ git clone --depth 1 --recursive --shallow-submodules https://github.com/jmnote/SimpleMathJax.git

SimpleMathJax is meant to be used as an alternative to the Math extension. If the Math extension is installed it may take precedence and cause SimpleMathJax to not work. The SimpleMathJax extension is the only thing you need to start rendering equations.


Cài đặt cấu hình

Các biến sau đây có thể được định nghĩa trong LocalSettings.php sau khi gọi wfLoadExtension( 'SimpleMathJax' );. Chú ý rằng đối với một trang web đơn giản thêm $wgSmjScale = 1.1; có lẽ bạn phải cần làm cho nó Just Work™.

Version Thiết lập tên Giá trị mặc ​​định Miêu tả
0.7.0+ $wgSmjUseCdn true Using CDN or Local resource
0.7.0+ $wgSmjUseChem true enable ‎<chem> tags
( defaults to use chem tags )
0.8.0+ $wgSmjEnableMenu true Make MathJax context menu available
This setting is missed since 0.8.0; it would be a mistake
0.8.0+ $wgSmjExtraInlineMath [] can add some additional inlineMath symbols pairs
0.8.1+ $wgSmjScale 1 Kích thước font chữ mặc định cho SimpleMathJax ; mặc định là 100
0.7.4 $wgSmjShowMathMenu false (removed)
(replaced by $wgSmjEnableMenu)
0.6.1 $wgSmjSize 110 (removed)
(replaced by $wgSmjScale)
0.6.1 $wgSmjInlineMath [] (removed)
(replaced by $wgSmjExtraInlineMath)
0.6.1 $wgSmjDisableChem false (removed)
(replaced by $wgSmjUseChem)
0.6.1 $wgSmjScripts ['//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS-MML_HTMLorMML',
'//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/extensions/TeX/mhchem.js']
(removed)
(replaced by $wgSmjUseCDN)
can use local or another remote scripts
( defaults to use cloudflare CDN )
0.6 $wgSimpleMathJaxSize 125 (removed)
(replaced by $wgSmjSize)
0.6 $wgSimpleMathJaxUseCDN true (removed)
(replaced by $wgSmjScripts)
0.6 $wgSimpleMathInlineMath [] (removed)
(replaced by $wgSmjInlineMath)

If you want to change font size, set $wgSmjScale like below.

wfLoadExtension( 'SimpleMathJax' );
$wgSmjScale = 1.5;

If you want to enable some additional inlineMath symbol pairs, set $wgSmjExtraInlineMath like below.

wfLoadExtension( 'SimpleMathJax' );
$wgSmjExtraInlineMath = [ [ "$", "$" ], [ "\\(", "\\)" ] ];

If you want to use local module, set $wgSmjUseCdn like below.

wfLoadExtension( 'SimpleMathJax' );
$wgSmjUseCdn = false;

SimpleMathJax and Live Preview (versions < 0.8.0)

Prior to version 0.8.0, the following had to be added to MediaWiki:Common.js in order to have the Live Preview in the editor show rendered math output instead of raw LaTeX source code:

function waitForMathJax($content) {
  if (typeof MathJax === 'undefined') {
    setTimeout(function () { waitForMathJax($content); }, 1000);
  } else {
    MathJax.Hub.Queue(["Typeset", MathJax.Hub, $content[0]]).execute();
  }
}

mw.hook('wikipage.content').add(waitForMathJax);

Mẫu

So sánh
Các ví dụ khác

Xem thêm

External links

  1. SimpleMathJax 0.8.0+ uses manifest_version 2. Manual:Extension.json/Schema