-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcross_section.tex
More file actions
38 lines (35 loc) · 829 Bytes
/
cross_section.tex
File metadata and controls
38 lines (35 loc) · 829 Bytes
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
37
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\begin{document}
\begin{tikzpicture}
%\begin{semilogyaxis} [
\begin{axis} [
xmin = 1.8,
xmax = 4,
% %ymin = 0,
restrict y to domain=0:5,
xlabel=$\mathrm{E_{\nu} \left\lbrack MeV \right\rbrack}$,
ylabel=$\sigma \left\lbrack 10^{-42} \mathrm{cm}^2 \right\rbrack$,
legend pos=south east,
]
\addplot [
smooth,
very thin,
black,
] table [header=false, y expr=\thisrowno{1}*1e+4] {cs_cvc.txt}
;
\addlegendentry{CVC}
\addplot [
smooth,
thin,
blue,
very thin,
] table [header=false, y expr=\thisrowno{1}*1e+4] {cs_no_cvc.txt}
;
\addlegendentry{No CVC}
\end{axis}
%\end{semilogyaxis} [
\end{tikzpicture}
\end{document}