Html不是字母R的关系符号

时间:2018-04-28 20:43:45

标签: html latex symbols

如何用latex或html编写以下图像?

enter image description here

a与b 无关)

1 个答案:

答案 0 :(得分:2)

我在这里写下三个基本的解决方案:当然它们都可以得到改善,如果它们引起一些兴趣,我们可以更深入。

1)LaTeX

minimal working example可能如下:

\documentclass{article}
\begin{document}
\[
a\not\mathrel{R} b
\]
\end{document}

此外,可能会推荐centernot包。

2)HTML5 + MathJax

将以下内容复制并粘贴到filename.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>a is not in relation with b</title>
  <script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/latest.js?config=TeX-MML-AM_CHTML' async></script>
</head>

<body>
\[
a\not\mathrel{R} b
\]
</body>
</html>

3)HTML5 + CSS Fiddle

这将是内联数学方法:

&#13;
&#13;
.notrel {
  display:inline-block;
  width:.6em;
  text-align:center;
  font-style:italic;
  letter-spacing:-0.5em;
}
&#13;
a <span class="notrel">/R</span> b
&#13;
&#13;
&#13;