Skip to content

Instantly share code, notes, and snippets.

@mistivia
Created December 2, 2023 13:33
Show Gist options
  • Select an option

  • Save mistivia/87ae02c62ccf9b180160f5d3e924ecc4 to your computer and use it in GitHub Desktop.

Select an option

Save mistivia/87ae02c62ccf9b180160f5d3e924ecc4 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Usage: ./showtex.sh 'E=mc^2'
tmp=/tmp/$(head -c 5 /dev/urandom | base32)
tex2svg $@ > $tmp.svg && \
convert -resize 150% $tmp.svg $tmp.png && \
img2sixel $tmp.png
rm $tmp.svg 2>/dev/null 1>/dev/null
rm $tmp.png 2>/dev/null 1>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment