fixed tiny flaw in tghe documentation +

* made improvements to documentation Makefile
* removed unneccessary .gitignore
This commit is contained in:
Thomas Fehmel
2018-04-24 11:57:12 +02:00
parent 913574ba16
commit 59a604852c
4 changed files with 10 additions and 43 deletions

View File

@@ -1,8 +1,10 @@
SVGS= $(wildcard figures/*.svg)
IMGS= $(SVGS:.svg=.pdf)
PDFDIR=obj
SRCS= $(wildcard *.tex)
#SRCS+= refs3.bib
PDFFLAGS= -interaction=nonstopmode -shell-escape -halt-on-error -synctex=1 -output-directory=$(PDFDIR)/
docu=soc
TARGET=$(addsuffix .pdf,$(docu))
@@ -17,11 +19,13 @@ figures/%.pdf: figures/%.svg
inkscape -z -T -A $@ $<
%.pdf: %.tex $(SRCS) $(IMGS)
pdflatex -jobname=$(basename $@) -synctex=1 -interaction=nonstopmode -shell-escape $<
pdflatex -jobname=$(basename $@) -synctex=1 -interaction=nonstopmode -shell-escape $<
mkdir -p $(PDFDIR)
pdflatex $(PDFFLAGS) -jobname=$(notdir $(basename $@)) $<
pdflatex $(PDFFLAGS) -jobname=$(notdir $(basename $@)) $<
cp -p -f $(PDFDIR)/$@ $@
## Other Targets
clean:
rm -f $(IMGS) *.aux *.log *.dvi *.pdf *.ps *.pyg *.toc *.loc *.lot *.out *.lof *.lol *.synctex.gz
rm -fr $(PDFDIR) $(IMGS) $(TARGET)
.PHONY: all clean
.PHONY: all target images clean

View File

@@ -186,7 +186,7 @@ The following instructions are supported:
{1100 010c iiii iiii}
{br imm\\br always/true imm}
{Sets the program counter to PC+imm, where imm is treated as signed number. For details about the branch delay slot see section \ref{sec:branchdelayslot}. If c==1, the branch is conditional and performed only, if the truth flag is set.}
{if ((c==0) \logicor (T==1)) goto (PC+imm);}
{if ((c==0) \logicor (T==1)) goto (PC+imm$<<$1);}
{No flag is updated}
\instruction{Branch to Register}{brr}

View File

@@ -48,7 +48,7 @@
\usepackage{multirow}
\usepackage{array}
\usepackage{minted}
\usepackage[outputdir=obj]{minted}
\usepackage{newfloat}
\usepackage{xspace}
%! put the new-command after the inputenc package use, so 'ü' will not be shown as abomination ASCII -TF