I have a little question regarding the decimal precision of certain single ticks in a plot generated by tikzpicture. Minimal example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmin=0,xmax=1,
xtick={0, 0.196,0.514,1},
ymin=350,ymax=510,
ytick={350,390,430,470,510},
xlabel={$\tilde{L}$},
ylabel= {$T$},
minor tick num=1,
]
\end{axis}
\end{tikzpicture}
\end{document}
How can I have the ticks on the x-axis appear with the exact decimal precision I specified in the code (0, 0.196, 0.514, 1)? I know how to set the precision for the entire x-axis, but haven't found out how to do it for single ticks.
Thank you :)

