• Resolved ahyangyi

    (@ahyangyi)


    Hi,

    It seems that LaTeX2HTML does not support the \qed macro, even in a proof environment.

    A quick way to provide one is using the following HTML code:
    <p style="text-align:right">∎</p>. I can add it to my list of custom macros, but it would be useful if you include the functionality by default since I believe many people want this little black square.

Viewing 1 replies (of 1 total)
  • Plugin Author Van Abel

    (@van-abel)

    Thanks for your feedback.

    This can be archived by adding the following css into the LaTeX2HTML settings in the (LaTeX styles configuration):

    .latex_proof::after {
       content: "\220E";
       color: gray;
       text-align: right;
       display: block;
       font-size: 1.2em;
    }

    of course you can change the color to black instead of gray.

Viewing 1 replies (of 1 total)
  • The topic ‘\qed not supported?’ is closed to new replies.