You can open a new split within Vim with the following commands, in normal mode:
Horizontally:
:split <file name>
:new
Vertically:
:vsplit <file name>
:vnew
split will open the file in a new split at the top or left of your screen (or current split.) :sp
and :vs
are convenient shortcuts.
new will open an empty split