Seminars 2015/16

Please look at the list of seminars in the submenu to the left

You hand in the assignment in bilda

Lärare Patric Jensfelt skapade sidan 7 september 2015

Lärare Patric Jensfelt ändrade rättigheterna 7 september 2015

Kan därmed läsas av alla och ändras av lärare.
En användare har tagit bort sin kommentar
kommenterade 7 februari 2016

If anyone using tex wants to do the wordcounting a bit more automatic, and you're using linux and/or can adapt the following to your OS, I'd suggest adding the following to your EL2220 template, which will enable you to get an accurate word count for your document updated on each compile.

1) Get texcount, sometimes available in repositories, if not: http://app.uio.no/ifi/texcount/

2) Add the following to the preamble:

\immediate\write18{texcount -1 -sum=1,0,0,0,0,0,0 \jobname.tex > texcount.txt}

What it does is execute texcount with the given parameters, which will output the word count to the file textcount.txt in your working directory.

3) Then, at the end of your document add

Word count: \input{texcount.txt}

4) Every time you compile your document you're going to have to enable the -shell-escape option in pdflatex or similar, since otherwise the shell command will be blocked, and as such you should also make sure you trust the texcount command before enabling :)

I.e. pdflatex -shell-escape filename.tex

Feedback Nyheter