Hanjie's Blog

一只有理想的羊驼

—— あ(ア)
「a」段
い(イ)
「i」段
う(ウ)
「u」段
え(エ)
「e」段
お(オ)
「o」段
あ「a」行 あ(ア)
「a」
い(イ)
「i」
う(ウ)
「u」
え(エ)
「e」
お(オ)
「o」
か「k」行 か(カ)
「ka」
き(キ)
「ki」
く(ク)
「ku」
け(ケ)
「ke」
こ(コ)
「ko」
さ「s」行 さ(サ)
「sa」
し(シ)
「shi」
す(ス)
「su」
せ(セ)
「se」
そ(ソ)
「so」
た「t」行 た(タ)
「ta」
ち(チ)
「chi」
つ(ツ)
「tsu」
て(テ)
「te」
と(ト)
「to」
な「n」行 な(ナ)
「na」
に(ニ)
「ni」
ぬ(ヌ)
「nu」
ね(ネ)
「ne」
の(ノ)
「no」
は「h」行 は(ハ)
「ha」
ひ(ヒ)
「hi」
ふ(フ)
「fu」
へ(ヘ)
「he」
ほ(ホ)
「ho」
ま「m」行 ま(マ)
「ma」
み(ミ)
「mi」
む(ム)
「mu」
め(メ)
「me」
も(モ)
「mo」
や「y」行 や(ヤ)
「ya」
—— ゆ(ユ)
「yu」
—— よ(ヨ)
「yo」
ら「r」行 ら(ラ)
「ra」
り(リ)
「ri」
る(ル)
「ru」
れ(レ)
「re」
ろ(ロ)
「ro」
わ「w」行 わ(ワ)
「wa」
—— —— —— を(ヲ)
「wo」
拨音 ん(ン)
「n」
—— —— —— ——

在/Applications/MWeb.app/Contents/Resources/PreviewAsset/MathJax/config/TeX-AMS-MML_HTMLorMML.js中添加

1
MathJax.Hub.Config({TeX:{equationNumbers:{autoNumber:"AMS"}}});

然后就可以使用: \[\begin{equation} \label{e1} a = b + c \end{equation}\]

引用(\(\ref{e1}\))

When I type the Chinese character in a Markdown cell, there is a offset in the cursor location.

PastedGraphic-1

The location of cursor is not the location between two characters.

屏幕快照 2015-12-09 下午2.21.07

I changed the css style of ace_editor, which makes the font-family to SimSun:

Soluation

1
2
3
4
5
6
7
.markdown-cell .ace_editor {
background-color: #FFFFFF;
color: #333;
font-size: 12px;
font-family: SimSun;
line-height: 1.5;
}

bug fixed.

0%