Oliver Rümpelein
83116099e9
* (README) fixed fuckup with anchor * (wtfunctional.tex) Added shellesc to fix TeXLive2016-issue * (wtfunctional.tex) specified aspect ratio explicitly
66 lines
1.1 KiB
TeX
66 lines
1.1 KiB
TeX
\ProvidesFile{listings}[Configure listings with minted]
|
|
% Fix backticks
|
|
\usepackage{upquote}
|
|
\usepackage[section, cache=true,]{minted}
|
|
|
|
\renewcommand{\MintedPygmentize}{/usr/bin/pygmentize}
|
|
|
|
\usemintedstyle{manni}
|
|
|
|
\newminted[ccode]{c}%
|
|
{
|
|
linenos=true,
|
|
autogobble=true,
|
|
breaklines=true,
|
|
showspaces=false,
|
|
showtabs=false,
|
|
tabsize=2,
|
|
frame=single,
|
|
fontsize=\small,
|
|
}
|
|
|
|
\newminted[cppcode]{cpp}%
|
|
{
|
|
linenos=true,
|
|
autogobble=true,
|
|
breaklines=true,
|
|
showspaces=false,
|
|
showtabs=false,
|
|
tabsize=2,
|
|
frame=single,
|
|
fontsize=\small,
|
|
}
|
|
|
|
\newminted[haskell]{haskell}
|
|
{
|
|
linenos=true,
|
|
autogobble=true,
|
|
breaklines=true,
|
|
showspaces=false,
|
|
showtabs=false,
|
|
tabsize=2,
|
|
frame=single,
|
|
fontsize=\small,
|
|
}
|
|
|
|
\newminted[pycode]{python}%
|
|
{
|
|
linenos=true,
|
|
autogobble=true,
|
|
breaklines=true,
|
|
showspaces=false,
|
|
showtabs=false,
|
|
tabsize=2,
|
|
frame=single,
|
|
fontsize=\small,
|
|
}
|
|
|
|
\newmintinline[ccmd]{c}{}
|
|
\newmintinline[cppcmd]{cpp}{}
|
|
\newmintinline[haskellcmd]{haskell}{}
|
|
\newmintinline[pycmd]{python}{}
|
|
|
|
%%% Local Variables:
|
|
%%% mode: latex
|
|
%%% TeX-master: "../wtfunctional"
|
|
%%% End:
|