Skip to content

Instantly share code, notes, and snippets.

@TB-O-gh
Created September 7, 2019 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TB-O-gh/a7eefe06c8e6fe0afdc43275971cbae2 to your computer and use it in GitHub Desktop.
Save TB-O-gh/a7eefe06c8e6fe0afdc43275971cbae2 to your computer and use it in GitHub Desktop.
プレーンテキストから自分用のplatexソースコードを生成
#!/bin/bash
echo '\documentclass[twocolumn,a4paper,12pt]{tarticle}'
echo '\begin{document}'
echo ''
cat $1 |sed -e "s/\$/\\\newline/"|sed -e "s/\$「/\\\noindent「/"
echo ''
echo '\noindent* 奥付\newline'
echo 'タイトル\newline'
echo '著者\newline'
echo 'サークル\newline'
echo '印刷\newline'
echo '\end{document}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment