On 7/26/2015 7:11 PM, Nasser M. Abbasi wrote:
I am still little confused. So you want just me to replace
\newcommand\emwidth{16} ----> this line
\let\emwidth\f@size
% convert pt to rem
\newcommand\CalcRem[1]{\strip@pt\dimexpr(#1)/\emwidth}
With
\newcommand\emwidth{11} ----> to this line?
\let\emwidth\f@size
% convert pt to rem
\newcommand\CalcRem[1]{\strip@pt\dimexpr(#1)/\emwidth}
Ok, problem solved. I needed to just remove the \let\emwidth\f@size line. So
now it is
\newcommand\emwidth{11}
% convert pt to rem
\newcommand\CalcRem[1]{\strip@pt\dimexpr(#1)/\emwidth}
.....
The above now works on tests I've done and images resize. Something
must have changed in TL 2015. But at least now the above works
and now I can use just svg images without having to make eps images
for bounding boxes.
Will keep fingers crossed that nothing else will break now ;)
--Nasser