-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
33 lines (24 loc) · 778 Bytes
/
main.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
\documentclass{article}
\usepackage{fullpage}
% Uncomment the config file you want
\input{codeListingConfig.tex}
\input{juliaMintedConfig.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%% FUN STARTS HERE!!! %%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\section{Experiment}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This is the experiment. The first is Listing, the second is Minted.
% Listing Output
\juliaFile{leastSquares}
% Minted Output
\begin{listing}[h!]
\caption{Script \emph{leastSquares}}
\label{code:myLabel}
\juliaFileMinted{leastSquares.jl}
\end{listing}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%% WE ARE DONE !!! %%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}