Giter Site home page Giter Site logo

latextemplates / scientific-thesis-template Goto Github PK

View Code? Open in Web Editor NEW
349.0 349.0 117.0 2.19 MB

LaTeX template for Master, Bachelor, Diploma, and Student Theses

Home Page: http://latextemplates.github.io/scientific-thesis-template/

License: BSD Zero Clause License

Makefile 0.46% TeX 99.28% C++ 0.04% Perl 0.22%
academic-writing latex latex-examples latex-template phd-thesis-template texlatex thesis-template

scientific-thesis-template's People

Contributors

aldekal avatar backfighter avatar baderas avatar behrinml avatar datmaffin avatar diehlpk avatar dominikvoigt avatar eiselems avatar el-paso avatar fakepk avatar googol42 avatar imochoa avatar infacc avatar jojo134 avatar kmindi avatar koppor avatar miwurster avatar muelletr avatar niklas88 avatar pascalreisert avatar qw3ry avatar rossojo avatar s1mn avatar siedlerchr avatar sven-mayer avatar velihanbulut avatar vogel612 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

scientific-thesis-template's Issues

List of Abbreviations wrong position

List of Abbreviations is at the end of the thesis, this cannot be the correct way since all other lists are at the beginning right after the table of content.

glossaries support for abbreviation

What is intended way to add abbreviations? I'm using the glossaries package right now. If needed I can provide the changes in ausarbeitung.tex, packages_and_options.tex and Makefile. Otherwise I would like to know whats best practice for abbreviations using the template.

Add support for pkgloader

pkgloader seems to be a promising approach for the latex package loading hell. In a thesis, we tried to use it but the output is

LaTeX Warning: You have requested package `inputenc',
               but the package provides `inputenc'.

(/usr/share/texmf-dist/tex/latex/base/utf8.def
(/usr/share/texmf-dist/tex/latex/base/t1enc.dfu)
(/usr/share/texmf-dist/tex/latex/base/ot1enc.dfu)
(/usr/share/texmf-dist/tex/latex/base/omsenc.dfu)))

! LaTeX Error: Option clash for package xcolor.

A rather minimal example is needed.

make fetchstys -> make: *** [algorithm.sty] Error 8

Delivers this error:

wget ftp://dante.ctan.org/tex-archive/macros/latex/contrib/algorithms/algorithm.sty
--2014-04-22 17:28:48-- ftp://dante.ctan.org/tex-archive/macros/latex/contrib/algorithms/algorithm.sty
=> algorithm.sty' Resolving dante.ctan.org (dante.ctan.org)... 176.28.54.184, 2a01:488:67:1000:b01c:36b8:0:1 Connecting to dante.ctan.org (dante.ctan.org)|176.28.54.184|:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD (1) /tex-archive/macros/latex/contrib/algorithms ... done. ==> SIZE algorithm.sty ... done. ==> PASV ... done. ==> RETR algorithm.sty ... No such filealgorithm.sty'.

make: *** [algorithm.sty] Error 8

Double column template

@SGrottel-TUD once told me that he used two column layout in his thesis, because the lines are too long on an A4 page. Should we also switch to a two-column layout in the thesis? Maybe aligned to the IEEE template?

No master branch

We need to change either the Readme file (says "5. git checkout -b master") or the change the main branch to 'master'. The actual main branch is called 'template' (which should normally be master), there is no 'master'.

Using English Language -> Throws an Exception

Hi,

I just started to use this template. Since I decided to write my thesis in english I switched the template to english, however it throws me an Exception:

! Undefined control sequence.
l.49 \sprache
             {englisch}
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.49 \sprache{e
               nglisch}
You're in trouble here.  Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.

If I just uncomment line 49 [https://github.com/latextemplates/USTUTT-computer-science/blob/template/ausarbeitung.tex#L49] It compiles and everything seems to be good.

Any Ideas on this issue?

support including vector graphics

Since vector graphics are more suitable for print and one needs to ajust graphics from time to time the inclusion should be simplified.
Based on ftp://ctan.tug.org/tex-archive/info/svg-inkscape/InkscapePDFLaTeX.pdf i created the possibility to integrate svg files into the template. In the original solution the files needed to be created manually once since only the filetimes where compared to check if the pdf and pdf_tex files should be generated. I added an check for existence.

The following changes are needed:
in Makefile:
add latexoptions = "-shell-escape" definition (needed for \write18
and add these for every latex command $(latex) $(latexoptions)

in packages_and_options.tex add:

\usepackage{graphicx}%Parameter "pdftex" unnoetig
\newcommand{\getgraphicspath}
{graphics/}

\graphicspath{{\getgraphicspath}}

%% Commands for svg include
\newcommand{\executeiffilenewer}[3]{%
\IfFileExists{#2}
{
\message{file #2 exists}
\ifnum\pdfstrcmp{\pdffilemoddate{#1}}%
{\pdffilemoddate{#2}}>0%
{
\immediate\write18{#3}}
\else
{\message{file up to date #2}
}
\fi%
}{
\message{file #2 doesn't exist}
\message{argument: #3}
\immediate\write18{echo "test" > xoutput.txt}
\immediate\write18{#3}
}
}

\newcommand{\includesvg}[1]{%
\executeiffilenewer{#1.svg}{#1.pdf}%
{
inkscape -z -D --file=\getgraphicspath#1.svg %
--export-pdf=\getgraphicspath#1.pdf --export-latex}%
\input{\getgraphicspath#1.pdf_tex}%
}

to include a svg image add:
\begin{figure}
\begin{center}
\def\svgwidth{0.4\textwidth}
\includesvg{the_filename} % without file extension
\caption[The caption]{The caption}
\label{fig:the_label}
\end{center}
\end{figure}

Inkscape (0.48) needs to be added to the path if not done already
Unfortunately inkscape uses pixels instead of points to for font sizes that results in unexpected sizes since inkscape uses 90dpi internally instead of 72dpi used by most other programs. inkscape will support points as font size in Version 0.49 (see https://bugs.launchpad.net/inkscape/+bug/168164).

If more info is needed I am happy to to provide it.

Additional border for printing

I have one question: Does anyone has experience in printing the template? Is it required to add an additional margin when printing or does is work properly, if you print it 1:1(considering the required Kaltleimbindung)?

(Note: This may only be a real issue in case the answer is that a margin should be added for printing...)

@koppor @niklas88 @samystyle

Thesis Number

Since there is no numbering of the theses in the future at the department the number can be removed from the template.

Switch to lualatex as default because of ligatures

For high-quality documents, the ligatures have to be right. See the German rant on wrong ligatures: https://web.archive.org/web/20150425155310/http://www.mengensatz.de/blog/?p=79. For instance, in "Auflage", the "f" and "l" must not be combined. See also the last lines in https://tex.stackexchange.com/a/64457/9075.

The only way to keep ligatures where appropriate is to switch to lualatex. There is selnolig. Found going from https://tex.stackexchange.com/q/28437/9075 to https://tex.stackexchange.com/q/63005/9075 and finally to https://tex.meta.stackexchange.com/questions/2884/new-package-selnolig-that-automates-suppression-of-typographic-ligatures

More readings

Solutions for pdflatex

Both solution change the input files:

Completely suppressing is possible

Other nice hints:

Translate float name of environment "Algorithmus"

The floating environment "Algorithmus" produces same caption for german and english version. If english is selected the float name which is used for the caption should be translated.

In the attached figure the correct caption would be "Algorithm A.1 Sample algorithm" instead of "Algorithmus A.1 Sample algorithm"

algorithmus

Add explanation of difference to other templates

@johannesbottcher recommended to have a look at thesis.cls and to include important snippets.

There are many other templates around there is a confusion about templates. Thus, we should provide what other templates we are aware of and clearly state the differences to help readers to decide. A good example for that is the documentation of the listings package, which states the difference to most competitors.

The good things of these templates should be included in ours.

Maybe add them to https://github.com/latextemplates/latextemplates.github.io/blob/master/index.md#templates-by-others?

Lists of theses

No Bibliography showing up

Hi,

I just setup my latex environment.

I downloaded MikTex and TexStudio. When I open ausarbeitung.tex in TexStudio and click on View&Build it builds the pdf without the bibliography.

When I run pdflatex on the commandline it shows me an error to run biber first. When I run biber on the ausarbeitung.tex I get a warning but it does not seem to be serious:

WARN - Warning: Found biblatex control file version 3.0, expected version 2.9

When I run pdflatex again I get erros and the pdf is not built anymore.

! Use of \sortlist doesn't match its definition.
l.21   \sortlist{
                 anyt}{anyt}
?
! Extra }, or forgotten \endgroup.
l.21   \sortlist{anyt}
                      {anyt}
?
! Undefined control sequence.
\entry ...ata@\the \c@refsection @\blx@slist@name
                                                  @\abx@field@entrykey }\csu...
l.22     \entry{ApacheODE}{misc}{}

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{entry} {\listcsxadd {blx...
l.39     \endentry

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{list} {\blx@bbl@labelfie...
l.39     \endentry

?
! Undefined control sequence.
\entry ...ata@\the \c@refsection @\blx@slist@name
                                                  @\abx@field@entrykey }\csu...
l.40     \entry{RVvdA2016}{article}{}

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{entry} {\listcsxadd {blx...
l.67     \endentry

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{list} {\blx@bbl@labelfie...
l.67     \endentry

?
! Undefined control sequence.
\entry ...ata@\the \c@refsection @\blx@slist@name
                                                  @\abx@field@entrykey }\csu...
l.68     \entry{WSPA}{book}{}

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{entry} {\listcsxadd {blx...
l.89     \endentry

?
! Undefined control sequence.
<argument> ...equal \expandafter {\blx@slist@type
                                                  }{list} {\blx@bbl@labelfie...
l.89     \endentry

?
! Undefined control sequence.
<argument> ...\the \c@refsection @\blx@slist@name

l.90   \endsortlist

?
)
! Extra \endgroup.
\blx@bblinput ...nit \blx@bblfile@biber \endgroup

l.75 \begin{document}

I've used the template several times in the past and never experienced any issues. Is this related to the change from bibtex to biber?

Travis build is broken

Hey i just saw that the travis build errors out:

Only saw it is related to the installation of lvm2

dblfnote does not work anymore

dblfnote does not work anymore, if you just uncomment the line
\usepackage{dblfnote}
in preambel/packages_and_options.tex
and add something like \footnote{test} to content/kapitel2.tex,
pdflatex shows the following error:

(/usr/share/texlive/texmf-dist/tex/latex/bera/t1fvm.fd))
(./content/kapitel2.tex [7] [8]
Kapitel 2.
) (./content/zusammenfassung_und_ausblick.tex
! Undefined control sequence.
\@makecol ...\@elt \dfn@elt@getht \dfn@list \@nil 
                                                  \ifdim \@tempdima =\z@ \el...
l.1 \chapter
            {Zusammenfassung und Ausblick}\label{chap:zusfas}

Changing language breaks the build

I tried to change the language from german to english without success in one of my repositories.

Running pdflatex ausarbeitung throws an error (see following log):
https://gist.github.com/eiselems/12415524bb1c82df50674346ae595698

This is pdfTeX, Version 3.14159265-2.6-1.40.16 (MiKTeX 2.9)
entering extended mode
(ausarbeitung.tex
LaTeX2e <2016/03/31>
Babel <3.9r> and hyphenation patterns for 75 language(s) loaded.
(C:\MiKTeX\tex\latex\oberdiek\kvoptions-patch.sty
(C:\MiKTeX\tex\generic\oberdiek\etexcmds.sty
(C:\MiKTeX\tex\generic\oberdiek\infwarerr.sty)
(C:\MiKTeX\tex\generic\oberdiek\ifluatex.sty)))
(C:\MiKTeX\tex\latex\nag\nag.sty (C:\MiKTeX\tex\latex\nag\nag-l2tabu.cfg)
(C:\MiKTeX\tex\latex\nag\nag-orthodox.cfg))
(C:\MiKTeX\tex\latex\koma-script\scrbook.cls
Document Class: scrbook 2015/10/03 v3.19a KOMA-Script document class (book)
(C:\MiKTeX\tex\latex\koma-script\scrkbase.sty
(C:\MiKTeX\tex\latex\koma-script\scrbase.sty
(C:\MiKTeX\tex\latex\graphics\keyval.sty)
(C:\MiKTeX\tex\latex\koma-script\scrlfile.sty
Package scrlfile, 2015/10/03 v3.19a KOMA-Script package (loading files)
                  Copyright (C) Markus Kohm

))) (C:\MiKTeX\tex\latex\koma-script\tocbasic.sty)

Class scrbook Warning: You've used obsolete option `pointlessnumbers'.
(scrbook)              Usage of this option indicates an old document
(scrbook)              and changes compatibility level using
(scrbook)              `numbers=noenddot,version=first'.
(scrbook)              If you don't want this, you should simply
(scrbook)              replace option `pointlessnumbers' by `numbers=noenddot'.


(C:\MiKTeX\tex\latex\koma-script\scrsize12pt.clo)
(C:\MiKTeX\tex\latex\koma-script\typearea.sty
Package typearea, 2015/10/03 v3.19a KOMA-Script package (type area)
                  Copyright (C) Frank Neukam, 1992-1994
                  Copyright (C) Markus Kohm, 1994-

)) (preambel/packages_and_options.tex (C:\MiKTeX\tex\latex\base\inputenc.sty
(C:\MiKTeX\tex\latex\base\utf8.def (C:\MiKTeX\tex\latex\base\t1enc.dfu)
(C:\MiKTeX\tex\latex\base\ot1enc.dfu) (C:\MiKTeX\tex\latex\base\omsenc.dfu)))
(C:\MiKTeX\tex\latex\xcolor\xcolor.sty (C:\MiKTeX\tex\latex\00miktex\color.cfg)
(C:\MiKTeX\tex\latex\pdftex-def\pdftex.def
(C:\MiKTeX\tex\generic\oberdiek\ltxcmds.sty))
(C:\MiKTeX\tex\latex\graphics\dvipsnam.def))
(C:\MiKTeX\tex\generic\babel\babel.sty
*************************************
* Local config file bblopts.cfg used
*
(C:\MiKTeX\tex\latex\arabi\bblopts.cfg)
(C:\MiKTeX\tex\latex\babel-english\english.ldf
(C:\MiKTeX\tex\generic\babel\babel.def)))
(C:\MiKTeX\tex\latex\csquotes\csquotes.sty
(C:\MiKTeX\tex\latex\etoolbox\etoolbox.sty)
(C:\MiKTeX\tex\latex\csquotes\csquotes.def)
(C:\MiKTeX\tex\latex\csquotes\csquotes.cfg))
(C:\MiKTeX\tex\latex\paralist\paralist.sty)
(C:\MiKTeX\tex\latex\koma-script\scrpage2.sty)
(C:\MiKTeX\tex\latex\amsmath\amsmath.sty
For additional information on amsmath, use the `?' option.
(C:\MiKTeX\tex\latex\amsmath\amstext.sty
(C:\MiKTeX\tex\latex\amsmath\amsgen.sty))
(C:\MiKTeX\tex\latex\amsmath\amsbsy.sty)
(C:\MiKTeX\tex\latex\amsmath\amsopn.sty))
(C:\MiKTeX\tex\latex\mathtools\mathtools.sty
(C:\MiKTeX\tex\latex\tools\calc.sty) (C:\MiKTeX\tex\latex\mathtools\mhsetup.sty
)) (C:\MiKTeX\tex\latex\ntheorem\ntheorem.sty
Style `ntheorem', Version 1.33 <2011/08/15>
(C:\MiKTeX\tex\latex\base\ifthen.sty)) (C:\MiKTeX\tex\latex\tools\xspace.sty)
(C:\MiKTeX\tex\latex\appendix\appendix.sty)
(C:\MiKTeX\tex\latex\graphics\graphicx.sty
(C:\MiKTeX\tex\latex\graphics\graphics.sty
(C:\MiKTeX\tex\latex\graphics\trig.sty)
(C:\MiKTeX\tex\latex\00miktex\graphics.cfg)))
(C:\MiKTeX\tex\latex\oberdiek\epstopdf.sty
(C:\MiKTeX\tex\latex\oberdiek\epstopdf-base.sty
(C:\MiKTeX\tex\latex\oberdiek\grfext.sty
(C:\MiKTeX\tex\generic\oberdiek\kvdefinekeys.sty))
(C:\MiKTeX\tex\latex\oberdiek\kvoptions.sty
(C:\MiKTeX\tex\generic\oberdiek\kvsetkeys.sty))
(C:\MiKTeX\tex\generic\oberdiek\pdftexcmds.sty
(C:\MiKTeX\tex\generic\oberdiek\ifpdf.sty))))
(C:\MiKTeX\tex\latex\tools\array.sty) (C:\MiKTeX\tex\latex\tools\longtable.sty)
(C:\MiKTeX\tex\latex\multirow\multirow.sty) (C:\MiKTeX\tex\latex\url\url.sty)
(C:\MiKTeX\tex\latex\listings\listings.sty
(C:\MiKTeX\tex\latex\listings\lstmisc.sty)
(C:\MiKTeX\tex\latex\listings\listings.cfg))
(C:\MiKTeX\tex\latex\fancyvrb\fancyvrb.sty
Style option: `fancyvrb' v2.7a, with DG/SPQR fixes, and firstline=lastline fix 
<2008/02/07> (tvz)) (C:\MiKTeX\tex\latex\caption\caption.sty
(C:\MiKTeX\tex\latex\caption\caption3.sty)
(C:\MiKTeX\tex\latex\caption\ltcaption.sty))
(C:\MiKTeX\tex\latex\oberdiek\pdflscape.sty
(C:\MiKTeX\tex\latex\graphics\lscape.sty)
(C:\MiKTeX\tex\generic\ifxetex\ifxetex.sty))
(C:\MiKTeX\tex\latex\float\float.sty) (C:\MiKTeX\tex\latex\yafoot\fnpos.sty)
(C:\MiKTeX\tex\latex\tools\varioref.sty)
(C:\MiKTeX\tex\latex\booktabs\booktabs.sty)
(C:\MiKTeX\tex\latex\todonotes\todonotes.sty
(C:\MiKTeX\tex\latex\xkeyval\xkeyval.sty
(C:\MiKTeX\tex\generic\xkeyval\xkeyval.tex
(C:\MiKTeX\tex\generic\xkeyval\xkvutils.tex)))
(C:\MiKTeX\tex\latex\pgf\frontendlayer\tikz.sty
(C:\MiKTeX\tex\latex\pgf\basiclayer\pgf.sty
(C:\MiKTeX\tex\latex\pgf\utilities\pgfrcs.sty
(C:\MiKTeX\tex\generic\pgf\utilities\pgfutil-common.tex
(C:\MiKTeX\tex\generic\pgf\utilities\pgfutil-common-lists.tex))
(C:\MiKTeX\tex\generic\pgf\utilities\pgfutil-latex.def
(C:\MiKTeX\tex\latex\ms\everyshi.sty))
(C:\MiKTeX\tex\generic\pgf\utilities\pgfrcs.code.tex))
(C:\MiKTeX\tex\latex\pgf\basiclayer\pgfcore.sty
(C:\MiKTeX\tex\latex\pgf\systemlayer\pgfsys.sty
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgfsys.code.tex
(C:\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex
(C:\MiKTeX\tex\generic\pgf\utilities\pgfkeysfiltered.code.tex))
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgf.cfg)
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-pdftex.def
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgfsys-common-pdf.def)))
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgfsyssoftpath.code.tex)
(C:\MiKTeX\tex\generic\pgf\systemlayer\pgfsysprotocol.code.tex))
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcore.code.tex
(C:\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex
(C:\MiKTeX\tex\generic\pgf\math\pgfmathcalc.code.tex
(C:\MiKTeX\tex\generic\pgf\math\pgfmathutil.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathparser.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.code.tex
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.basic.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.trigonometric.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.random.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.comparison.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.base.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.round.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.misc.code.tex)
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfunctions.integerarithmetics.code.tex)))
(C:\MiKTeX\tex\generic\pgf\math\pgfmathfloat.code.tex))
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepoints.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathconstruct.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathusage.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorescopes.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoregraphicstate.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransformations.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorequick.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreobjects.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepathprocessing.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorearrows.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreshade.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreimage.code.tex
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoreexternal.code.tex))
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorelayers.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcoretransparency.code.tex)
(C:\MiKTeX\tex\generic\pgf\basiclayer\pgfcorepatterns.code.tex)))
(C:\MiKTeX\tex\generic\pgf\modules\pgfmoduleshapes.code.tex)
(C:\MiKTeX\tex\generic\pgf\modules\pgfmoduleplot.code.tex)
(C:\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-0-65.sty)
(C:\MiKTeX\tex\latex\pgf\compatibility\pgfcomp-version-1-18.sty))
(C:\MiKTeX\tex\latex\pgf\utilities\pgffor.sty
(C:\MiKTeX\tex\latex\pgf\utilities\pgfkeys.sty
(C:\MiKTeX\tex\generic\pgf\utilities\pgfkeys.code.tex))
(C:\MiKTeX\tex\latex\pgf\math\pgfmath.sty
(C:\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex))
(C:\MiKTeX\tex\generic\pgf\utilities\pgffor.code.tex
(C:\MiKTeX\tex\generic\pgf\math\pgfmath.code.tex)))
(C:\MiKTeX\tex\generic\pgf\frontendlayer\tikz\tikz.code.tex
(C:\MiKTeX\tex\generic\pgf\libraries\pgflibraryplothandlers.code.tex)
(C:\MiKTeX\tex\generic\pgf\modules\pgfmodulematrix.code.tex)
(C:\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarytopaths.code
.tex)))
(C:\MiKTeX\tex\generic\pgf\frontendlayer\tikz\libraries\tikzlibrarypositioning.
code.tex)) (C:\MiKTeX\tex\latex\biblatex\biblatex.sty
(C:\MiKTeX\tex\latex\biblatex\biblatex_.sty
(C:\MiKTeX\tex\latex\logreq\logreq.sty (C:\MiKTeX\tex\latex\logreq\logreq.def))
(C:\MiKTeX\tex\latex\biblatex\blx-dm.def)
(C:\MiKTeX\tex\latex\biblatex\blx-compat.def)
(C:\MiKTeX\tex\latex\biblatex\biblatex_.def)
(C:\MiKTeX\tex\latex\biblatex\bbx\alphabetic.bbx
(C:\MiKTeX\tex\latex\biblatex\bbx\standard.bbx))
(C:\MiKTeX\tex\latex\biblatex\cbx\alphabetic.cbx)
(C:\MiKTeX\tex\latex\biblatex\biblatex.cfg)

Package biblatex Warning: 'firstinits' option is deprecated, use 'giveninits' i
nstead.

)) (C:\MiKTeX\tex\latex\blindtext\blindtext.sty)
(C:\MiKTeX\tex\latex\hyperref\hyperref.sty
(C:\MiKTeX\tex\generic\oberdiek\hobsub-hyperref.sty
(C:\MiKTeX\tex\generic\oberdiek\hobsub-generic.sty))
(C:\MiKTeX\tex\latex\oberdiek\auxhook.sty)
(C:\MiKTeX\tex\latex\hyperref\pd1enc.def)
(C:\MiKTeX\tex\latex\00miktex\hyperref.cfg))

Package hyperref Message: Driver (autodetected): hpdftex.

(C:\MiKTeX\tex\latex\hyperref\hpdftex.def
(C:\MiKTeX\tex\latex\oberdiek\rerunfilecheck.sty))
(C:\MiKTeX\tex\latex\cleveref\cleveref.sty)
(C:\MiKTeX\tex\latex\algorithms\algorithm.sty)
(C:\MiKTeX\tex\latex\algorithmicx\algpseudocode.sty
(C:\MiKTeX\tex\latex\algorithmicx\algorithmicx.sty
Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) (preambel/fonts.tex (C:\MiKTeX\tex\latex\amsfonts\amssymb.sty
(C:\MiKTeX\tex\latex\amsfonts\amsfonts.sty))
(C:\MiKTeX\tex\latex\base\textcomp.sty (C:\MiKTeX\tex\latex\base\ts1enc.def
(C:\MiKTeX\tex\latex\base\ts1enc.dfu))) (C:\MiKTeX\tex\latex\lm\lmodern.sty)
(C:\MiKTeX\tex\latex\psnfss\helvet.sty) (C:\MiKTeX\tex\latex\psnfss\charter.sty
) (C:\MiKTeX\tex\latex\bera\beramono.sty) (C:\MiKTeX\tex\latex\base\fontenc.sty
(C:\MiKTeX\tex\latex\base\t1enc.def))
(C:\MiKTeX\tex\latex\microtype\microtype.sty
(C:\MiKTeX\tex\latex\microtype\microtype-pdftex.def)
(C:\MiKTeX\tex\latex\microtype\microtype.cfg)))
(C:\MiKTeX\tex\latex\oberdiek\hypcap.sty) (uni-stuttgart-cs-cover.sty
Package: `uni-stuttgart-cs-cover' v3.0

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.170 

? 

Switching from \art{Bachelor} to \art{Diplom} results in error

Revision affected:
47
Howto Reproduce:
Switching \art from Bachelor to Diplom in ausarbeitung.tex
hit "make"
Expected Result:
results in a template customized for a diploma thesis.
Actual Result:
Error message given in output, no pdf generated

Output:

This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian)
entering extended mode
(./ausarbeitung.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, farsi, arabic, croatian, bulgarian, ukrainian, russian, czech, slov
ak, danish, dutch, finnish, french, basque, ngerman, german, german-x-2009-06-1
9, ngerman-x-2009-06-19, ibycus, monogreek, greek, ancientgreek, hungarian, san
skrit, italian, latin, latvian, lithuanian, mongolian2a, mongolian, bokmal, nyn
orsk, romanian, irish, coptic, serbian, turkish, welsh, esperanto, uppersorbian
, estonian, indonesian, interlingua, icelandic, kurmanji, slovenian, polish, po
rtuguese, spanish, galician, catalan, swedish, ukenglish, pinyin, loaded.
(/usr/share/texmf-texlive/tex/latex/koma-script/scrbook.cls
Document Class: scrbook 2009/07/24 v3.04a KOMA-Script document class (book)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrkbase.sty
(/usr/share/texmf-texlive/tex/latex/koma-script/scrbase.sty
(/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrlfile.sty
Package scrlfile, 2009/03/25 v3.03 KOMA-Script package (loading files)
Copyright (C) Markus Kohm

))) (/usr/share/texmf-texlive/tex/latex/koma-script/tocbasic.sty)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrsize11pt.clo)
(/usr/share/texmf-texlive/tex/latex/koma-script/typearea.sty
Package typearea, 2009/07/24 v3.04a KOMA-Script package (type area)
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-

)) (./preambel/packages_and_options.tex
(/usr/share/texmf-texlive/tex/latex/base/inputenc.sty
(/usr/share/texmf-texlive/tex/latex/base/utf8.def
(/usr/share/texmf-texlive/tex/latex/base/t1enc.dfu)
(/usr/share/texmf-texlive/tex/latex/base/ot1enc.dfu)
(/usr/share/texmf-texlive/tex/latex/base/omsenc.dfu)))
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
(/etc/texmf/tex/latex/config/color.cfg)
(/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def)
(/usr/share/texmf-texlive/tex/latex/graphics/dvipsnam.def))
(/var/lib/texmf/tex/generic/babel/babel.sty
(/usr/share/texmf-texlive/tex/generic/babel/ngermanb.ldf
(/usr/share/texmf-texlive/tex/generic/babel/babel.def)))
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.sty
(/usr/share/texmf-texlive/tex/latex/etoolbox/etoolbox.sty
(/usr/share/texmf-texlive/tex/latex/etex-pkg/etex.sty))
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.def)
(/usr/share/texmf-texlive/tex/latex/csquotes/csquotes.cfg))
(/usr/share/texmf-texlive/tex/latex/paralist/paralist.sty)
(/usr/share/texmf-texlive/tex/latex/koma-script/scrpage2.sty)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty
(/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty)
(/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty))
(/usr/share/texmf-texlive/tex/latex/mh/mathtools.sty
(/usr/share/texmf-texlive/tex/latex/tools/calc.sty)
(/usr/share/texmf-texlive/tex/latex/mh/mhsetup.sty))
(/usr/share/texmf-texlive/tex/latex/tools/xspace.sty)
(/usr/share/texmf-texlive/tex/latex/appendix/appendix.sty)
(/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty
(/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty
(/usr/share/texmf-texlive/tex/latex/graphics/trig.sty)
(/etc/texmf/tex/latex/config/graphics.cfg)))
(/usr/share/texmf-texlive/tex/latex/tools/array.sty)
(/usr/share/texmf-texlive/tex/latex/tools/longtable.sty)
(/usr/share/texmf-texlive/tex/latex/multirow/multirow.sty)
(/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty)
(/usr/share/texmf-texlive/tex/latex/base/ifthen.sty)
(./diplomtitel/diplomtitel.sty
Package: diplomtitel v2.6 $Date:: 2012-07-25 ##$ $Revision: 0 $

LaTeX Warning: You have requested package diplomtitel/diplomtitel', but the package providesdiplomtitel'.

) (/usr/share/texmf-texlive/tex/latex/listings/listings.sty
(/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty)
(/usr/share/texmf-texlive/tex/latex/listings/listings.cfg))
(/usr/share/texmf-texlive/tex/latex/fancyvrb/fancyvrb.sty
Style option: fancyvrb' v2.7a, with DG/SPQR fixes, and firstline=lastline fix <2008/02/07> (tvz)) (/usr/share/texmf-texlive/tex/latex/caption/caption.sty (/usr/share/texmf-texlive/tex/latex/caption/caption3.sty) (/usr/share/texmf-texlive/tex/latex/caption/ltcaption.sty)) (/usr/share/texmf-texlive/tex/latex/oberdiek/pdflscape.sty (/usr/share/texmf-texlive/tex/latex/graphics/lscape.sty) (/usr/share/texmf-texlive/tex/generic/oberdiek/ifpdf.sty) (/usr/share/texmf-texlive/tex/generic/ifxetex/ifxetex.sty)) (/usr/share/texmf-texlive/tex/latex/floatrow/floatrow.sty) (/usr/share/texmf-texlive/tex/latex/yafoot/fnpos.sty) (/usr/share/texmf-texlive/tex/latex/tools/varioref.sty) (/usr/share/texmf-texlive/tex/latex/booktabs/booktabs.sty) (/usr/share/texmf-texlive/tex/latex/todonotes/todonotes.sty (/usr/share/texmf-texlive/tex/latex/xkeyval/xkeyval.sty (/usr/share/texmf-texlive/tex/generic/xkeyval/xkeyval.tex)) (/usr/share/texmf/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texmf/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex) (/usr/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def (/usr/share/texmf-texlive/tex/latex/ms/everyshi.sty)) (/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex)) (/usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex)) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def))) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex)) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex (/usr/share/texmf/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex))) (/usr/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex)) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex)) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex))) (/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleshapes.code.tex) (/usr/share/texmf/tex/generic/pgf/modules/pgfmoduleplot.code.tex) (/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty) (/usr/share/texmf/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty)) (/usr/share/texmf/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texmf/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texmf/tex/generic/pgf/utilities/pgffor.code.tex)) (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (/usr/share/texmf/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex) (/usr/share/texmf/tex/generic/pgf/modules/pgfmodulematrix.code.tex) (/usr/share/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopat hs.code.tex)))) (/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/ifvtex.sty) (/usr/share/texmf-texlive/tex/latex/oberdiek/hycolor.sty (/usr/share/texmf-texlive/tex/latex/oberdiek/xcolor-patch.sty)) (/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def) (/usr/share/texmf-texlive/tex/generic/oberdiek/etexcmds.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/infwarerr.sty)) (/usr/share/texmf-texlive/tex/latex/latexconfig/hyperref.cfg) (/usr/share/texmf-texlive/tex/latex/oberdiek/kvoptions.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/kvsetkeys.sty)) Implicit mode ON; LaTeX internals redefined (/usr/share/texmf-texlive/tex/generic/oberdiek/bitset.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/intcalc.sty) (/usr/share/texmf-texlive/tex/generic/oberdiek/bigintcalc.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/pdftexcmds.sty (/usr/share/texmf-texlive/tex/generic/oberdiek/ifluatex.sty) (/usr/share/texmf-texlive/tex/generic/oberdiek/ltxcmds.sty)))) (/usr/share/texmf-texlive/tex/generic/oberdiek/atbegshi.sty)) *hyperref using default driver hpdftex* (/usr/share/texmf-texlive/tex/latex/hyperref/hpdftex.def) (/usr/share/texmf-texlive/tex/latex/algorithms/algorithm.sty) (/usr/share/texmf-texlive/tex/latex/algorithmicx/algpseudocode.sty (/usr/share/texmf-texlive/tex/latex/algorithmicx/algorithmicx.sty Document Style algorithmicx 1.2 - a greatly improvedalgorithmic' style
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) (./preambel/fonts.tex
(/usr/share/texmf-texlive/tex/latex/amsfonts/amssymb.sty
(/usr/share/texmf-texlive/tex/latex/amsfonts/amsfonts.sty))
(/usr/share/texmf-texlive/tex/latex/psnfss/helvet.sty)
(/usr/share/texmf-texlive/tex/latex/psnfss/mathpazo.sty)
(/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
(/usr/share/texmf-texlive/tex/latex/base/t1enc.def))
(/usr/share/texmf-texlive/tex/latex/microtype/microtype.sty
(/usr/share/texmf-texlive/tex/latex/microtype/microtype.cfg)))
(/usr/share/texmf-texlive/tex/latex/base/fixltx2e.sty) (./preambel/margins.tex
(/usr/share/texmf-texlive/tex/latex/psnfss/t1pplj.fd))
(./preambel/chapterheads.tex)
(/usr/share/texmf-texlive/tex/latex/listings/lstlang1.sty)
(/usr/share/texmf-texlive/tex/latex/listings/lstmisc.sty)
(/usr/share/texmf-texlive/tex/latex/hyperref/backref.sty))
Writing index file ausarbeitung.idx
! Undefined control sequence.
\set@color ...@pdfcolorstack push{\current@color
}\aftergroup \reset@color
l.175 \tableofcontents

?

List of Abbreviations is not displayed

The List of Abbreviations dose not display anything at my all updated MikTex 2.9 64-bit with pdfTex v3.14159265-2.6-1.40.17

As just tested option 1: \makenoidxglossaries with \printnoidxglossaries as the manual proposes works perfectly.

Is there any argument not to go with the standard List of Abbreviations? This would probably cause overall less errors.

Missing course

"Medieninformatik" is mission as a course type in the uni-stuttgart-cs-cover

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.