├── .gitignore ├── cdtudcolors.gp ├── colors-qualitative-clusterd.gp ├── colors-qualitative-paired.gp ├── colors-sequential-Gray.gp ├── colors-sequential-darkBlue.gp ├── colors-sequential-darkGreen.gp ├── colors-sequential-darkPurpel.gp ├── colors-sequential-lightBlue.gp ├── colors-sequential-lightGreen.gp ├── colors-sequential-lightOrange.gp ├── colors-sequential-lightPurpel.gp ├── defaults.gp ├── help ├── data.dat ├── test-colorsPNG.png ├── test-defaultsPNG.png ├── test-latexPNG.png ├── test-layoutsPNG.png ├── test-linestypesPNG.png └── test.gp ├── latex.gp ├── layout-centerAxis.gp ├── layout-default.gp ├── layout-empty.gp ├── layout-emptyCenterAxis.gp ├── paletteMatlab.gp ├── paletteMoreland.gp ├── readme.markdown ├── template-default.gp ├── texHeader.tex └── unset-layout.gp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/.gitignore -------------------------------------------------------------------------------- /cdtudcolors.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/cdtudcolors.gp -------------------------------------------------------------------------------- /colors-qualitative-clusterd.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-qualitative-clusterd.gp -------------------------------------------------------------------------------- /colors-qualitative-paired.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-qualitative-paired.gp -------------------------------------------------------------------------------- /colors-sequential-Gray.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-Gray.gp -------------------------------------------------------------------------------- /colors-sequential-darkBlue.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-darkBlue.gp -------------------------------------------------------------------------------- /colors-sequential-darkGreen.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-darkGreen.gp -------------------------------------------------------------------------------- /colors-sequential-darkPurpel.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-darkPurpel.gp -------------------------------------------------------------------------------- /colors-sequential-lightBlue.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-lightBlue.gp -------------------------------------------------------------------------------- /colors-sequential-lightGreen.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-lightGreen.gp -------------------------------------------------------------------------------- /colors-sequential-lightOrange.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-lightOrange.gp -------------------------------------------------------------------------------- /colors-sequential-lightPurpel.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/colors-sequential-lightPurpel.gp -------------------------------------------------------------------------------- /defaults.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/defaults.gp -------------------------------------------------------------------------------- /help/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/data.dat -------------------------------------------------------------------------------- /help/test-colorsPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test-colorsPNG.png -------------------------------------------------------------------------------- /help/test-defaultsPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test-defaultsPNG.png -------------------------------------------------------------------------------- /help/test-latexPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test-latexPNG.png -------------------------------------------------------------------------------- /help/test-layoutsPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test-layoutsPNG.png -------------------------------------------------------------------------------- /help/test-linestypesPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test-linestypesPNG.png -------------------------------------------------------------------------------- /help/test.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/help/test.gp -------------------------------------------------------------------------------- /latex.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/latex.gp -------------------------------------------------------------------------------- /layout-centerAxis.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/layout-centerAxis.gp -------------------------------------------------------------------------------- /layout-default.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/layout-default.gp -------------------------------------------------------------------------------- /layout-empty.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/layout-empty.gp -------------------------------------------------------------------------------- /layout-emptyCenterAxis.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/layout-emptyCenterAxis.gp -------------------------------------------------------------------------------- /paletteMatlab.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/paletteMatlab.gp -------------------------------------------------------------------------------- /paletteMoreland.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/paletteMoreland.gp -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/readme.markdown -------------------------------------------------------------------------------- /template-default.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/template-default.gp -------------------------------------------------------------------------------- /texHeader.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/texHeader.tex -------------------------------------------------------------------------------- /unset-layout.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hesstobi/Gnuplot-Templates/HEAD/unset-layout.gp --------------------------------------------------------------------------------