forgot these files

This commit is contained in:
biglysmalls 2018-11-06 00:26:58 -05:00
parent 920aa2d7b1
commit 90e02c7550
2 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,11 @@
# TildePublishingUnlimited
e-book publishing projects for generating fiction works, zines, documentation, and other things.
Write in markdown, compile beautiful pdfs
E-book publishing projects for generating fiction works, zines, documentation, and other things.
Write in markdown, compile beautiful pdfs, and ebooks.
* ebook-storybook
+ TODO:
- Define auxfiles directory and succeed in compiling pdf without losing aux files.
- jasfjds;kfj

View File

@ -2,7 +2,8 @@
#This assumes you have some latex framework such as miktex or mactex or somesuch that uses xelatex as well as pandoc to convert markdown to latex
find . -iname *.md -exec ./md2tex.sh {} \;
latexmk -c
latexmk -pdf -e '$pdflatex=q/xelatex %O %S/' -outdir=outputs ebook.tex
latexmk -pdf -e '$pdflatex=q/xelatex %O %S/' ebook.tex
#latexmk -pdf -e '$pdflatex=q/xelatex %O %S/' -outdir=outputs ebook.tex
# the -outdir option sets $outdir as well as $auxdir to be the outputs directory, except in miktex...so this will put auxiliary files in the output directory.
# the contents of the outputs directory can be safely deleted, as they will be generated each time this script is run.
#latexmk -pdf -e '$pdflatex=q/xelatex %O %S/' -outdir=outputs -auxdir=auxfiles ebook.tex