Skip to content

Commit

Permalink
revise chapter 6
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoyanonymous committed Feb 1, 2022
1 parent 5cfd11e commit f59c524
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 107 deletions.
4 changes: 2 additions & 2 deletions .latexmkrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env perl

$pdf_mode = 4;
$lualatex = 'lualatex -shell-escape -synctex=1 -interaction=nonstopmode';

$lualatex = 'lualatex -shell-escape -interaction=nonstopmode';
$max_repeat = 4;
# $latex = 'platex --kanji=utf8 -synctex=1 -file-line-error -halt-on-error %O %S';
$bibtex = 'pbibtex';
$biber = 'biber --bblencoding=utf8 -u -U --output_safechars %O %S';
Expand Down
10 changes: 4 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,19 @@ PANDOC := pandoc --filter pandoc-crossref \
LATEX_FILE := template

MDS := $(wildcard src/*.md)
CHAPTERS := $(wildcard src/chapter1.md src/chapter2.md src/chapter3.md src/chapter4.md src/chapter5.md src/chapter6.md src/chapter7.md src/chapter8.md)
CHAPTERS := $(wildcard src/chapter1.md src/chapter2.md src/chapter3.md src/chapter4.md src/chapter5.md src/chapter6.md src/chapter7.md)
TEXS := $(MDS:.md=.tex)


PHONY: latexmk

all:latexmk

# type rule

src/%.tex:src/%.md
$(PANDOC) $< -o $@

latexmk:$(TEXS) src/ref.bib
latexmk -f -cd src/$(LATEX_FILE).tex
latexmk:$(TEXS) src/ref.bib
latexmk -f -cd src/$(LATEX_FILE).tex

clean:
latexmk -cd -C src/$(LATEX_FILE).tex
latexmk -cd -C src/$(LATEX_FILE).tex
Loading

0 comments on commit f59c524

Please sign in to comment.