public Box createBox(TeXEnvironment env) {
    TeXFont tf = env.getTeXFont();
    int style = env.getStyle();
    Box b = base != null ? base.createBox(env) : new StrutBox(0, 0, 0, 0);
    float sep = new SpaceAtom(TeXConstants.UNIT_POINT, 1f, 0, 0).createBox(env).getWidth();
    Box arrow;

    if (dble) {
      arrow = XLeftRightArrowFactory.create(env, b.getWidth());
      sep = 4 * sep;
    } else {
      arrow = XLeftRightArrowFactory.create(left, env, b.getWidth());
      sep = -sep;
    }

    VerticalBox vb = new VerticalBox();
    if (over) {
      vb.add(arrow);
      vb.add(new HorizontalBox(b, arrow.getWidth(), TeXConstants.ALIGN_CENTER));
      float h = vb.getDepth() + vb.getHeight();
      vb.setDepth(b.getDepth());
      vb.setHeight(h - b.getDepth());
    } else {
      vb.add(new HorizontalBox(b, arrow.getWidth(), TeXConstants.ALIGN_CENTER));
      vb.add(new StrutBox(0, sep, 0, 0));
      vb.add(arrow);
      float h = vb.getDepth() + vb.getHeight();
      vb.setDepth(h - b.getHeight());
      vb.setHeight(b.getHeight());
    }

    return vb;
  }
Example #2
0
  public Box createBox(TeXEnvironment env) {
    // first create a simple square root construction

    TeXFont tf = env.getTeXFont();
    int style = env.getStyle();
    // calculate minimum clearance clr
    float clr, drt = tf.getDefaultRuleThickness(style);
    if (style < TeXConstants.STYLE_TEXT)
      clr = tf.getXHeight(style, tf.getChar(sqrtSymbol, style).getFontCode());
    else clr = drt;
    clr = drt + Math.abs(clr) / 4;

    // cramped style for the formula under the root sign
    Box bs = base.createBox(env.crampStyle());
    HorizontalBox b = new HorizontalBox(bs);
    b.add(new SpaceAtom(TeXConstants.UNIT_MU, 1, 0, 0).createBox(env.crampStyle()));
    // create root sign
    float totalH = b.getHeight() + b.getDepth();
    Box rootSign = DelimiterFactory.create(sqrtSymbol, env, totalH + clr + drt);

    // add half the excess to clr
    float delta = rootSign.getDepth() - (totalH + clr);
    clr += delta / 2;

    // create total box
    rootSign.setShift(-(b.getHeight() + clr));
    OverBar ob = new OverBar(b, clr, rootSign.getHeight());
    ob.setShift(-(b.getHeight() + clr + drt));
    HorizontalBox squareRoot = new HorizontalBox(rootSign);
    squareRoot.add(ob);

    if (root == null)
      // simple square root
      return squareRoot;
    else { // nthRoot, not a simple square root

      // create box from root
      Box r = root.createBox(env.rootStyle());

      // shift root up
      float bottomShift = FACTOR * (squareRoot.getHeight() + squareRoot.getDepth());
      r.setShift(squareRoot.getDepth() - r.getDepth() - bottomShift);

      // negative kern
      Box negativeKern = new SpaceAtom(TeXConstants.UNIT_MU, -10f, 0, 0).createBox(env);

      // arrange both boxes together with the negative kern
      Box res = new HorizontalBox();
      float pos = r.getWidth() + negativeKern.getWidth();
      if (pos < 0) res.add(new StrutBox(-pos, 0, 0, 0));

      res.add(r);
      res.add(negativeKern);
      res.add(squareRoot);
      return res;
    }
  }
Example #3
0
  public Box createBox(TeXEnvironment env) {
    TreeEditor.addAtoms(this);
    TeXFont tf = env.getTeXFont();
    int style = env.getStyle();
    Char c = tf.getChar(name, style);
    Box cb = new CharBox(c);
    if (env.getSmallCap() && unicode != 0 && Character.isLowerCase(unicode)) {
      try {
        cb =
            new ScaleBox(
                new CharBox(
                    tf.getChar(
                        TeXFormula.symbolTextMappings[Character.toUpperCase(unicode)], style)),
                0.8,
                0.8);
      } catch (SymbolMappingNotFoundException e) {
      }
    }

    if (type == TeXConstants.TYPE_BIG_OPERATOR) {
      if (style < TeXConstants.STYLE_TEXT && tf.hasNextLarger(c)) c = tf.getNextLarger(c, style);
      cb = new CharBox(c);
      cb.setShift(
          -(cb.getHeight() + cb.getDepth()) / 2 - env.getTeXFont().getAxisHeight(env.getStyle()));
      float delta = c.getItalic();
      HorizontalBox hb = new HorizontalBox(cb);
      if (delta > TeXFormula.PREC) hb.add(new StrutBox(delta, 0, 0, 0));

      usedBox = hb;
      return hb;
    }

    usedBox = cb;
    return cb;
  }
Example #4
0
 public void draw(Graphics2D g2, float x, float y) {
   float yPos = y - height;
   for (Box b : children) {
     yPos += b.getHeight();
     b.draw(g2, x + b.getShift() - leftMostPos, yPos);
     yPos += b.getDepth();
   }
 }
Example #5
0
 public void updateRectangle(float scale, float x, float y) {
   super.updateRectangle(scale, x, y);
   float yPos = y - height;
   for (Box b : children) {
     yPos += b.getHeight();
     b.updateRectangle(scale, x + b.getShift() - leftMostPos, yPos);
     yPos += b.getDepth();
   }
 }
  public Box createBox(TeXEnvironment env) {
    float drt = env.getTeXFont().getDefaultRuleThickness(env.getStyle());

    // cramp the style of the formula to be overlined and create vertical box
    Box b = (base == null ? new StrutBox(0, 0, 0, 0) : base.createBox(env.crampStyle()));
    OverBar ob = new OverBar(b, 3 * drt, drt);

    // baseline vertical box = baseline box b
    ob.setDepth(b.getDepth());
    ob.setHeight(b.getHeight() + 5 * drt);

    return ob;
  }