Improve quality of Latex equations published to .html with publish()

조회 수: 4 (최근 30일)
Oleg Komarov
Oleg Komarov 2012년 10월 5일
댓글: Andrew Roscoe 2016년 6월 9일

Suppose you have this in a blank .m file:

%%
% I was writing something $x^2+e^{\pi i}$ 

Now, hit the publish button and you will see that the equation comes out blurred. I would like to improve the rendering of the latex expression (not to mention that it is not properly aligned with the text).

Here's a snapshot

I tried to play a bit with the publish() function (see lines 160, 702 and 795) but to no avail and honestly I cannot start rewriting the function for a report that I wanted to finish by today (I guess I will revert to beamer again...until TMW provides readable Latex embedding)

  댓글 수: 6
Andrew Roscoe
Andrew Roscoe 2016년 6월 9일
Unfortunately the method used to modify 'FontSize' from 22 to a bigger number in "publish.m" seems to have stopped working, somewhere between R2015a and R2016a. Now I can't make the equations any bigger.. They are too small for students to read on the page.

댓글을 달려면 로그인하십시오.

답변 (1개)

Amro
Amro 2014년 2월 3일
the reason it comes out blurred is that publish will first render the text at double-size, capture the image (indirectly calls the undocumented function: hardcopy(figHandle,'-dzbuffer','-r0')), then downsample the result to half the size (a cheap way of doing anti-aliasing). Other post-processing is performed to remove whitespace around the captured text...
The text object is initially created with a FontSize=22 (so the output image has text equivalent to font size 11).
See edit publish>getRenderingFigure for the details.

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by