LNCS format has a run in style for subsubsection. I followed some instructions to modify the class file for LNCS, then there are newlines after each subsubsection, however, the header is missing. How to make the subsubsection looks like this:
1.1.1 example
example, example, example
now it lookes like this
example
example, example, example
The modified class file:
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
{-18\p@ \@plus -4\p@ \@minus -4\p@}%
{4\p@ \@plus 2\p@ \@minus 2\p@}%
{\normalfont\normalsize\bfseries\boldmath
\rightskip=\z@ \@plus 8em\pretolerance=10000 }}
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{-12\p@ \@plus -4\p@ \@minus -4\p@}%
{2\p@ \@plus 1\p@ \@minus 1\p@}%
{\normalfont\normalsize\itshape
\rightskip=\z@ \@plus 8em\pretolerance=10000 }}
Besides, I'm using lncs.cls, a working example should look like this:
\documentclass[runningheads,a4paper]{llncs}
%\documentclass{article}
\usepackage{listings}
\usepackage{graphicx}
\usepackage{float}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\title{xxxxxxxxxxxxxxxxxxxxxxxxxxxx}
\author{xxxxxxxxxxxxxxxxxxxxxx}
\institute{ xxxx \\ xxxxxxxxxxxxxxx}
\maketitle
\begin{xx}
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
\end{xx}
\section{xxxx}~\label{xxxx}
xxxxxx
\subsection{xxxx}\label{xxx}
xxxxxxxxxxxxxxxxxxxxxx
\subsubsection{xxxx}
xxxxxxxxxxxxxxx
\bibliography{kk}
\bibliographystyle{splncs}
\end{document}
where subsubsection doesn't have a head like this:
1.1.1 example subsubsection
instead, the numbers are missing.

\documentclasscommand, have a minimal preamble and then\begin{document}...\end{document}. The code should compile and be as small as possible to demonstrate your problem. This makes it much easier for people to help you --- and much more likely that they will! – Sep 15 '16 at 02:09