mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-11 16:12:20 +00:00
12 lines
361 B
Haskell
Executable file
12 lines
361 B
Haskell
Executable file
#!/usr/bin/env stack
|
|
-- stack runghc --package reanimate
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
module Main (main) where
|
|
|
|
import Reanimate
|
|
import Reanimate.Builtin.Documentation
|
|
|
|
main :: IO ()
|
|
main = reanimate $ docEnv $ animate $ const $
|
|
withStrokeWidth 0 . withFillOpacity 1 . scale 3 . center $
|
|
latexAlign "R = \\frac{{\\Delta x}}{{kA}}"
|