-
Notifications
You must be signed in to change notification settings - Fork 0
/
juliaMintedConfig.tex
36 lines (33 loc) · 1.13 KB
/
juliaMintedConfig.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% MINTED APPEARANCE CONFIG %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%% nicolas igor %%%%%%
%%%%%%%%%%%%%%%%% README %%%%%%%%%%%%%%%%%%%%
% This is a config file to set:
% 1. Style for minted package, using Julia language as a default.
% 2. A command to insert julia code. Note that to have caption, a floating environment is needed.
% Example without caption:
% \juliaFileMinted{randomForest.jl}
% Example with float environment:
%
% \begin{listing}[h!]
% \caption{My Caption}
% \label{code:myLabel}
% \juliaFileMinted{randomForest.jl}
% \end{listing}
\usepackage[newfloat]{minted}
\newmintedfile[juliaFileMinted]{julia}{
frame=lines,
framesep=2mm,
fontsize=\small,
breaklines=true,
tabsize = 4,
numbersep=5pt,
linenos}