I am seeing a strange behavior when using a custom working precision in a LogPlot or LogLogPlot. Let's take the most simple example of plotting x for x in [0.1,1].
LogLogPlotwith default working precision gives the correct resultLogLogPlot[x, {x, 0.1, 1}]
Plotwith WorkingPrecision=60 gives the correct resultPlot[x, {x, 0.1, 1}, WorkingPrecision -> 60]
LogLogPlotwith WorkingPrecision=60 gives a wrong artificial offset of 1LogLogPlot[x, {x, 0.1, 1}, WorkingPrecision -> 60]
If I add
+nto the function (i.e., plottingx+n, the offset increases toe^n:LogLogPlot[x + Log[100], {x, 0.1, 1}, WorkingPrecision -> 60]
Is this a known behavior? Am I doing something wrong?



