The graphs are:
1.- Variation of ionization cross-sections (left)
2.- Townsend first ionization coefficient (right)
Help pls... Ty

Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
pgfplots
we can easily design the axes. Then we can draw the points with experimental data. The smooth
option gives a smoother connection, like interpolated. Here is an example:Code: Select all
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{width = 6cm, compat = newest}
\usepackage{sansmath}
\pgfplotsset{
tick label style = { font=\tiny\sansmath\sffamily},
label style = { font=\small\sansmath\sffamily}
}
\begin{document}
\begin{tikzpicture}
\begin{axis} [
domain = 0:100,
xlabel = Electron energy,
ylabel = Ionization,
axis lines = left,
clip = false,
xmin = 0, xmax = 100,
ymin = 0, ymax = 100,
xtick={32,65},
xticklabels={$10^1$,$10^2$},
ytick={40,80},
yticklabels={$10^1$,$10^2$},
]
\addplot [smooth, dashed]
coordinates { (5,4) (7,40) (10,60) (14,74) (20,84) (30,90)
(40,90) (50,87) (60,81) (65,76)};
\addplot [smooth]
coordinates { (8,10) (9,44) (12,64) (14,72) (20,82) (30,87)
(40,88) (50,85) (60,79) (65,74)};
\addplot [smooth]
coordinates { (10,5) (9,20) (9.3,40) (12,61) (15,69.5) (20,75) (30,77)
(40,73) (50,66) (60,58) (65,54)};
\end{axis}
\end{tikzpicture}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis