0

显然,我不能发布图片,因为除非我获得 10 点声誉,否则我被认为不够 1337,所以让我尽力描述这个问题。

这是我要渲染的标记。不注意内容,因为我只是随便拿了一篇ArXiv的论文来做参考。

<!DOCTYPE html>
<html>
  <head>
    <meta charset=utf-8 />
    <title>Example Paper</title>
    <style>
      * { 
        margin: 0;
        padding: 0;
      } body {
        width: 616px;
        /*background: url(background.png) center top repeat-y #fff;*/
        margin: 0 auto;
      } h2, h3, h4, h5, h6, p {
        line-height: 22px;
        margin-top: 11px;
        margin-bottom: 22px;
      } h1 {
        line-height:44px;
        margin-top: 11px;
        margin-bottom: 11px;
      }
    </style>
  </head>
  <body>
    <h1>
      The Defect Sequence for Contractive Tuples
    </h1>
    <p>
      Tirthankar Bhattacharyya, Bata Krishna Das, Santanu Sarkar
    </p>
    <p>
      We introduce the defect sequence for a contractive tuple of
      Hilbert space operators and investigate its properties. The defect
      sequence is a sequence of numbers, called defect dimensions
      associated with a contractive tuple. We show that there are upper
      bounds for the defect dimensions. The tuples for which these upper
      bounds are obtained, are called maximal contractive tuples. The
      upper bounds are different in the non-commutative and in the
      commutative case. We show that the creation operators on the full
      Fock space and the co ordinate multipliers on the Drury-Arveson
      space are maximal. We also study pure tuples and see how the
      defect dimensions play a role in their irreducibility.
    </p>
    <h2>
      Introduction
    </h2>
    <p>
      Let us fix a positive integer
      <math xmlns="http://www.w3.org/1998/Math/MathML">
        <mi>d</mi>
      </math>
      for this paper. Consider a tuple 
      <math xmlns="http://www.w3.org/1998/Math/MathML">
        <list>
          <ci>
            <msub>
              <mi>T</mi>
              <mn>1</mn>
            </msub>
          </ci>
          <ci>&hellip;</ci>
          <ci>
            <msub>
              <mi>T</mi>
              <mi>d</mi>
            </msub>
          </ci>
        </list>
      </math>
      of bounded operators on a complex, separable, infinite dimensional
      Hilbert Space
      <math xmlns="http://www.w3.org/1998/Math/MathML">
        <mi>H</mi>
      </math>
      and the completely positive map
    </p>
  </body>
</html>

注意在包含下标表达式的段落中,第一行是如何正确显示的,但是下标的存在会推动行高。是否有内联数学不推送周围的文本?

4

1 回答 1

0

即使没有人回应,我最终还是找到了解决这个问题的方法。我想我的问题对这些观众来说是不受欢迎的。尽管如此,我正在回答它以供将来参考。

如果您想要好的排版和 MathML,请使用 MathJax 的 MathML 模式及其内联命令。内联 MathJax 旨在不破坏页面的行高。

于 2013-10-08T00:34:44.877 回答