Skip to content

Commit

Permalink
repaired errors
Browse files Browse the repository at this point in the history
  • Loading branch information
homberghp committed May 8, 2024
1 parent c984634 commit 56610c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
15 changes: 7 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Makefile for LaTeX.
# for use with xelatexd
LATEX=./latexw
BIBTEX=./bibtexw
## for use with default latex
LATEX=pdflatex -recorder -output-directory=out -synctex 15 -shell-escape -interaction=batchmode
.SUFFIXES=
.SUFFIXES=.tex .pdf

LATEX=pdflatex -recorder -output-directory=out -synctex 15 -shell-escape
BIBTEX=biber --output-directory=out --input-directory=out
# if you want to use xelatexd comment the two lines above this one.
DEPENDENCIES=partials/* configuration/*.tex chapters/*.tex images/*.pdf images/*.pdf images/*.jpg appendix/* ./*.png tables/*.*
## if you use xelatex for better font and utf-8 handling replace latexw and pdflatex with xelatexw and xelatex.

all: main.pdf

fast: fast.pdf

main.pdf: main.tex out $(DEPENDENCIES)
Expand All @@ -21,7 +20,7 @@ main.pdf: main.tex out $(DEPENDENCIES)

fast.pdf: main.tex out $(DEPENDENCIES)
$(LATEX) main.tex
ln -sf out/*.pdf
ln -sf out/*.pdf fast.pdf

out:
mkdir -p out/chapters out/partials out/appendix
Expand Down
7 changes: 4 additions & 3 deletions chapters/ch08_citingsimple.tex
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ \chapter{Citing is simple}

\section{Bib\LaTeX}
Bibtex is the traditional way of using citations and creating a bibliography, but its
role has all but been taken over by the more modern \BibLaTeX.
role has all but been taken over by the more modern Bib\LaTeX.
Both are equally simple to use for the most common use. For each reference that you want to use in your report
you should have a definition like below. Look in the \texttt{references.bib} file for more examples.

Expand Down Expand Up @@ -66,12 +66,13 @@ \subsection{BibLaTeX and Biber}
\section{What style to choose}

It appears that Fontys Venlo promotes the so called Harvard style, but that has three issues:
\begin{enumerate*}
\begin{Enumerate}
\item It is not well defined.
\item Finding a reference in the bibliography is not trivial, because the style does not use the label.
in the bibliography, making it less useable or at least reader friendly.
\item It is NOT what Fontys Venlo uses internally.
\end{enumerate*}
\end{Enumerate}


The official 'harvard'-like style that is promoted by the the slides on canvas
produces the bibliography in ~\vref{fig:harvard}, which is actually authoryear.
Expand Down

0 comments on commit 56610c3

Please sign in to comment.