For example, What do I need to add to this code to activate the antialiasing?
set terminal gif animate delay 5 size 400, 250
set output "example.gif"
a = 0
do for [i=1:100] {
a = a + 0.1
plot sin(x + a)
}
Do I need to change some of the files of the gnuplot folder? I'm using the 5.2 Windows version of gnuplot.

