Files
emacs/scripts/test/test.org
2025-06-17 17:21:04 +02:00

1.4 KiB

syntax highlighting

graphviz dot

digraph G {
  main -> parse -> execute;
  main -> init;
  main -> cleanup;
  execute -> make_string;
  execute -> printf
  init -> make_string;
  main -> printf;
  execute -> compare;
}

gnuplot

reset

set title "Putting it All Together"

set xlabel "X"
set xrange [-8:8]
set xtics -8,2,8


set ylabel "Y"
set yrange [-20:70]
set ytics -20,10,70

f(x) = x**2
g(x) = x**3
h(x) = 10*sqrt(abs(x))

plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3

custom header

python

  • interactive inside org
  • html export creates a svg file
  • latex export creates a pgf file