Empty Page - Wie kann die leere Seite löschen?
Hallo,
Anscheinend fügt Latex eine leere Seite beim Übergang von Querformat auf Hochformat hinzu. Wie kann ich diese leere Seite löschen/unterdrücken? Gibt es dafür einen Standard-Befehl?
    \clearpage?
DAS BEISPIEL FUNKTIONIERT NICHT DA ICH ES ANSCHEINEND FALSCH AUSGELAGERT HABE.... ICH HOFFE IHR KÖNNT WENIGSTENS DIE UNGEÄHRE STRUKTUR SEHEN DANKE TROTZDEM LG
Danke Meli
    \documentclass[11pt,a4paper, titlepage,bibliography=totoc,numbers=noenddot,abstract=on]{scrreprt} 
    \usepackage{longtable} %Large tables (longtable)
    \usepackage{tikz,booktabs}
    \usetikzlibrary{positioning}
    \usepackage{caption}
    \usepackage{tabularx}
    
    
    \begin{document}
    
    \begin{landscape}  % Querformat
    \begin{flushleft} % Linksbündig
    \begin{minipage}{\linewidth}
    \newpage
    \noindent 
    \begin{tikzpicture}
    
    % Überschrift:
    \begin{scope}[x=23.02cm,y=16.02cm]
    \node[above right] at (0,1) {
    \begin{large}
    \noindent
    Result 
    \end{large}}; 
    \end{scope}
    
    %blabalabala
    
    \end{tikzpicture}
    \end{minipage}
    \end{flushleft}
    \end{landscape}
    
    
    \renewcommand{\arraystretch}{1.0} 
    \begin{minipage}{\textwidth}
    \renewcommand{\arraystretch}{1}
    \fontsize{6pt}{8pt}\selectfont
    \captionsetup{type=table}
    \captionof{table}{ Result Spot 3} 
    \label{Task102:ResLabel3} 
    \noindent
    \begin{tabular}
    \end{tabular}
    \renewcommand{\arraystretch}{1.2}
    \end{minipage}
    %\vspace{\baselineskip}
    \end{document}