How can I plot columns from different files?
Gnuplot can only plot data from one file. However, a workaround is to join the two files horizontally (which requires them to have the some number of rows). This is done by using the paste command of a standard linux bash
plot '< paste ./Time.dat ./DisplacementsNodeCenterTop.dat ' using 1:3 with lines
How can I export to a Latex File?