Plotting a sine curve with R and saving the output as PDF:
curve(sin, -2*pi, 2*pi, xname = "t")
dev.copy2pdf(file='sine.pdf')
yields a curve that looks pretty smooth at first glance:
However, when zooming in to the PDF, you can see that the curve really consists of a sequence of linear segments:
Is there any way to export truly smooth line graphics from R as Bezier curves?
No. However, you can increase the number of segments used to draw the curve, which will have much the same effect:
(1200% resolution)