My problem is similar to this one:
Align by the top borders of figures when using subcaption
I want to align two pictures to the top. The solution given works fine for pictures with subcaptions. But my pictures should not have a subcaption, the two pictures shall only have one caption. So if I remove the subcaptions the pictures are not align to the top.
MWE:
documentclass[a4paper,11pt]{article}
\usepackage{subcaption}
\usepackage{tikz,pgf,pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks,shapes,positioning,fit}
\pgfkeys{/pgf/number format/.cd ,use comma ,set thousands separator={.}}
\usetikzlibrary{calc}
\usetikzlibrary{spy}
\usepgfplotslibrary{external}
\pgfkeys{/pgf/images/include external/.code=\includegraphics{#1}}
\tikzexternalize[prefix=tikzpdf/]% activate with a name prefix
\usepackage{filemod}
\newcommand{\includetikz}[2]{
\tikzsetnextfilename{#2}
\filemodCmp{tikzpictures/#1/#2.tex}{tikzpdf/#2.pdf}
{\tikzset{external/remake next}}{}
\input{tikzpictures/#1/#2.tex}
}
\begin{document}
\begin{figure}[htb]
\centering
\begin{subfigure}[t]{0.35\textwidth}
\centering
%\caption{}
\includegraphics[width=\textwidth]{ort_unten}
\label{fig:skizze_ort_unten}
\end{subfigure}
\begin{subfigure}[t]{0.55\textwidth}
\centering
%\caption{}
\setlength{\fwidth}{\textwidth}
\setlength{\fheight}{7cm}
\includetikz{ort}{ort_unten}
\end{subfigure}
\caption{one picture (left) and a graph (right)}
\label{fig:ort_unten}
\end{figure}
\end{document}
This is the result:

Is there a possibility to fix this?

