changeset 16:586757336bdd

...
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sat, 02 May 2020 14:39:45 +0900
parents 875bf4bc5059
children ea11eb7df53e
files paper/Makefile paper/md2tex.pl
diffstat 2 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/paper/Makefile	Sat May 02 11:41:36 2020 +0900
+++ b/paper/Makefile	Sat May 02 14:39:45 2020 +0900
@@ -27,6 +27,7 @@
 .dvi.pdf:
 	$(DVIPDF) $(DVIPDF_OPT) $<
 
+tex: $(TARGET).tex
 
 all: $(TARGET).pdf
 	open $(TARGET).pdf
--- a/paper/md2tex.pl	Sat May 02 11:41:36 2020 +0900
+++ b/paper/md2tex.pl	Sat May 02 14:39:45 2020 +0900
@@ -28,7 +28,6 @@
   if ($line =~ /`([\w_\-\\]+)`/) {
     my $codeBlock = $1;
     $codeBlock =~ s/_/\\_/g;
-    print "$codeBlock\n";
     $line =~ s/`([\w_\-\\]+)`/\\texttt{$codeBlock}/;
   }