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 モードとそのインライン コマンドを使用してください。Inline MathJax は、ページの行の高さを妨げないように設計されています。

于 2013-10-08T00:34:44.877 に答える