Created
September 7, 2019 01:25
-
-
Save TB-O-gh/a7eefe06c8e6fe0afdc43275971cbae2 to your computer and use it in GitHub Desktop.
プレーンテキストから自分用のplatexソースコードを生成
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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