hpi-swa-lab / SqueakByExample-english

An introductory book about the Squeak/Smalltalk programming system, guiding students and developers through the environment, language, tools, and the Morphic framework by means of a series of examples and exercises.
https://www.lulu.com/shop/patrick-rein-and-christoph-thiede/squeak-by-example-60/paperback/product-8vr2j2.html
Other
26 stars 7 forks source link

Add Bibliography into SBE repository #2

Closed LeonMatthes closed 5 years ago

LeonMatthes commented 5 years ago

A copy of the bibliography repository is now in the Bibliography subfolder. Makefile has been changed accordingly to automatically rebuild the bibliography.

codeZeilen commented 5 years ago

... disregard my email...

(I was on vacation and I am only slowly catching up)

LeonMatthes commented 4 years ago

Hi @MrModder, may I ask you a question: Why did you insert the time ${PDFLATEX} ${BOOK} multiple times here? :)

@LinqLover Not quite sure about this, but I think I read the way its supposed to work is this:

time ${PDFLATEX} ${BOOK} # run pdflatex once to figure out all required bibtex entries
time ${BIBTEX} ${BOOK} # generate the required bibtex entries
time ${PDFLATEX} ${BOOK} # compile the bibtex entries into the .tex files
time ${PDFLATEX} ${BOOK} | tee warning.txt # another run to clean up circular references (as far as I know pdflatex only resolves circular references using multiple runs) This is the only one from which to save warnings as it is the last one
LinqLover commented 4 years ago

Wow, that sounds weird, and it needs a few minutes to compile ... But if this is really state of the art, disregard it :)