Tabstop in bei cite für quellen

Antwort erstellen


Diese Frage dient dazu, das automatisierte Versenden von Formularen durch Spam-Bots zu verhindern.
Smilies
:D :) :( :o :shock: :? 8) :lol: :-x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen:

BBCode ist eingeschaltet
[img] ist eingeschaltet
[flash] ist ausgeschaltet
[url] ist eingeschaltet
Smilies sind eingeschaltet

Die letzten Beiträge des Themas

Ich habe die Datenschutzerklärung gelesen und bin damit einverstanden.

   

Wenn du eine Datei oder mehrere Dateien anhängen möchtest, gib die Details unten ein.

Ansicht erweitern Die letzten Beiträge des Themas: Tabstop in bei cite für quellen

von Dave Miller » Mi 12. Aug 2015, 15:33

Super! Danke. Hat geklappt :)

von Johannes_B » Mi 12. Aug 2015, 15:27

Du hast Umlaute in deiner bibliographie, du musst also mit LuaTeX oder XeTeX kompilieren. Angezeigt werden diese dann im Output aber trotzdem nicht.
In deinem realen Dokument nutzt du aber wahrscheinlich das Paket inputenc mit der Option utf8.

von Dave Miller » Mi 12. Aug 2015, 15:23

Johannes_B hat geschrieben:Welchen Fehler erhältst du? Hängt es mit dem Fehlerteufelchen zusammen?
\documentclass{scrreprt}
\usepackage[style=authortitle]{biblatex}
\usepackage{blindtext}
\usepackage{calc}
%\usepackage{filecontents}
\usepackage{caption}
\captionsetup[figure]{labelfont=bf,labelfont=bf} %

\newcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~\parbox[tt]{\linewidth-\widthof{Quelle:~}}{#1}}\endgroup}
	\begin{filecontents*}{\jobname.bib}
		@book{TEST,
			year = {2000},
			shorttitle = {Vernetzte Absatzplanung Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung},
			title = {Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung},
			address = {München},
			edition = {1},
			publisher = {Grin Verlag},
			author = {Irgang, Thorsten}
		}
	\end{filecontents*}  
	\addbibresource{\jobname.bib}
	\addbibresource{biblatex-examples.bib}
	\begin{document}

	\begin{table}
		\rule{10cm}{6cm}
		\caption{Aktuelle Auftragslage}
		{\small \figuresource {Eigene Darstellung nach \cite{TEST}}}
	\end{table}

	\printbibliography
	\end{document} 

! Undefined control sequence.
\abx@field@shorttitle ...ung eines computergest\x
{fffd}\x {fffd}tzten Werkz...
l.42 \endentry
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

von Johannes_B » Mi 12. Aug 2015, 15:14

Welchen Fehler erhältst du? Hängt es mit dem Fehlerteufelchen zusammen?
\documentclass{scrreprt}
\usepackage[style=authortitle]{biblatex}
\usepackage{blindtext}
\usepackage{calc}
%\usepackage{filecontents}
\usepackage{caption}
\captionsetup[figure]{labelfont=bf,labelfont=bf} %

\newcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~\parbox[tt]{\linewidth-\widthof{Quelle:~}}{#1}}\endgroup}
	\begin{filecontents*}{\jobname.bib}
		@book{TEST,
			year = {2000},
			shorttitle = {Vernetzte Absatzplanung Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung},
			title = {Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung},
			address = {München},
			edition = {1},
			publisher = {Grin Verlag},
			author = {Irgang, Thorsten}
		}
	\end{filecontents*}  
	\addbibresource{\jobname.bib}
	\addbibresource{biblatex-examples.bib}
	\begin{document}

	\begin{table}
		\rule{10cm}{6cm}
		\caption{Aktuelle Auftragslage}
		{\small \figuresource {Eigene Darstellung nach \cite{TEST}}}
	\end{table}

	\printbibliography
	\end{document} 

von Dave Miller » Mi 12. Aug 2015, 15:03

So. Ist das jetzt ein Minimalbeispiel :?
\documentclass{scrreprt} 
\usepackage[style=authortitle]{biblatex} 
\usepackage{blindtext} 
\usepackage{calc} 
\usepackage{filecontents} 
\usepackage{caption} 
\captionsetup[figure]{labelfont=bf,labelfont=bf} %
\newcommand{\figuresource}[1]{{ 
   \parbox{\linewidth}{Quelle:~#1}}} 
   \renewcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~#1}\endgroup}
     
\begin{filecontents*}{\jobname.bib} 
@book{TEST, 
 year = {2000}, 
 shorttitle = {Vernetzte Absatzplanung Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung}, 
 title = {Entwicklung eines computergestützten Werkzeuges zur vernetzten Absatzplanung}, 
 address = {München}, 
 edition = {1}, 
 publisher = {Grin Verlag}, 
 author = {Irgang, Thorsten} 
} 
\end{filecontents*}   
\addbibresource{\jobname.bib} 
\addbibresource{biblatex-examples.bib}
\begin{document} 

\begin{table} 
   \rule{10cm}{6cm} 
\caption{Aktuelle Auftragslage} 
{\small \figuresource {Eigene Darstellung nach \cite{TEST}}} 
\end{table} 

\end{document} 
Danke für deine Geduld



Wenn ich das von Dir oben nehme, bekomme ich eine Fehlermeldung mit cite.... :/

von Johannes_B » Mi 12. Aug 2015, 14:45

Ich teste dein Beispiel erst gar nicht. Dafür ist mir die Zeit echt zu schade. Ich hoffe deine Arbeit liegt dir mehr am Herzen als den Helfern minimale Beispiele zu liefern. :-(
\documentclass{scrreprt}
\usepackage{blindtext}
\usepackage{calc}
\usepackage{showframe}
\usepackage{caption}
\renewcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~\parbox[tt]{\linewidth-\widthof{Quelle:~}}{#1}}\endgroup}%<-- Fehlerteufelchen
\KOMAoptions{captions=nooneline}
\begin{document}

\begin{table}
	\rule{10cm}{6cm}
\caption{Aktuelle Auftragslage}
{\small \figuresource {Eigene Darstellung nach \blindtext}}
\end{table}

\end{document}

von Dave Miller » Mi 12. Aug 2015, 14:40

%Dokumentklasse
\documentclass[a4paper,12pt,
toc=chapterentrywithdots,
listof=entryprefix,
headsepline,
plainheadsepline,
headings=normal,
captions=tableabove,
captions=nooneline]
{scrreprt}


% ============= Packages =============
\usepackage[ngerman]{babel} 													%Sprache
\usepackage[T1]{fontenc} 													
\usepackage{geometry} 														
\usepackage[utf8]{inputenc} 
\usepackage[scaled=0.92]{helvet} 
\usepackage{setspace} 
\usepackage{scrhack} 
\usepackage{tgheros}
\usepackage[demo]{graphicx}
\usepackage{tabularx} 
\usepackage{xpatch} 
\usepackage{colortbl}
%\usepackage{tocloft}
\usepackage{scrbase}
\usepackage[justification=RaggedRight, singlelinecheck=false]{caption}
\usepackage{lipsum}
\usepackage{float}
\usepackage{booktabs}
\addtokomafont{caption}{\bfseries\small} 
\addtokomafont{captionlabel}{\bfseries\small}
\renewcommand{\familydefault}{\sfdefault} 
\usepackage[automark]{scrlayer-scrpage} 
\usepackage{acronym} 														%Abkürzungen
\setlength{\parindent}{0pt} 													%Einrücken von Absätzen
\setlength{\parskip}{6pt} 													%Absatzabstand
\usepackage{chngcntr}  														%Counter (durchgängige Nummerierung) 
\counterwithout{figure}{chapter}                                                
\counterwithout{table}{chapter} 
\usepackage{scrhack} 


\KOMAoption{listof}{entryprefix} 
\AfterTOCHead[lof]{\renewcommand*\autodot{:}}      							% : nach lof (figures) 
\AfterTOCHead[lot]{\renewcommand*\autodot{:}}      							% : nach lot (tables) 

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=18pt
]{chapter}

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=14pt
]{section}

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=10pt
]{subsection}



% ============= Quellenverzeichnis =============
\usepackage[autocite=footnote,style=authortitle,alldates=short]{biblatex} 
\ExecuteBibliographyOptions{dashed=false}
\renewcommand*{\finentrypunct}{\addspace} 									%entfernt Punkt am Ende des Lit.Verz.
\renewcommand{\labelnamepunct}{\addspace} 									%entfernt ":" bzw. ","   Lit.Verz.
\DeclareFieldFormat{title}{#1}												%titel nicht kursiv (standard) fußnote
\DeclareFieldFormat*{citetitle}{#1}											%titel nicht kursiv (standard)
%\renewcommand*{\labelnamepunct}{\addcolon\addspace}							% ":" nach letztem namen

\renewcommand{\bibfootnotewrapper}[1]{% entfernt punkt nach fußnote
  \bibsentence#1}
\renewbibmacro*{prenote}{% 
  \iffieldundef{prenote} 
    {\printtext{Vgl.}% 
     \setunit{\prenotedelim}} 
    {\iffieldequalstr{prenote}{XX} %\footcite[xx]{key}
     {} 
    {\printfield{prenote}% 
      \setunit{\prenotedelim}}}}
\setlength{\bibitemsep}{2\itemsep}
\renewbibmacro*{prenote:nocf}{% 
  \iffieldundef{prenote} 
    {} 
    {\printfield{prenote}% 
     \setunit{\prenotedelim}}}
     \DeclareCiteCommand{\cite} 
  {\usebibmacro{prenote:nocf}} 
  {\usebibmacro{citeindex}% 
   \usebibmacro{cite}} 
  {\multicitedelim} 
  {\usebibmacro{postnote}}
\addbibresource{MeineLiteratur.bib} 
\renewcommand*{\newunitpunct}{\addcomma\space} 
\renewcommand*{\labelnamepunct}{\addspace} 
\renewcommand*{\nametitledelim}{\addcolon\space} 
\renewcommand*{\finentrypunct}{\addspace} 
\setlength{\bibhang}{1,25cm}
\DeclareNameAlias{sortname}{last-first} 

% Reihenfolge ändern und Standardtrenner 
\renewbibmacro*{publisher+location+date}{% 
  \printlist{publisher}% 
  \newunit 
  \printlist{location}% 
  \newunit 
  \usebibmacro{date}% 
  \newunit} 

% Kurztitel (shorttitle) hinzufügen 
\renewbibmacro*{title}{% 
  \ifboolexpr{ 
    test {\iffieldundef{title}} 
    and 
    test {\iffieldundef{subtitle}} 
  } 
    {} 
    {\printfield[brackets]{shorttitle}% 
     \setunit{\addspace}% 
     \ifentrytype{online} 
       {\printtext[brackets]{% 
          \printfield[titlecase]{title}% 
          \setunit{\subtitlepunct}% 
          \printfield[titlecase]{subtitle}}} 
       {\printtext[title]{% 
         \printfield[titlecase]{title}% 
         \setunit{\subtitlepunct}% 
         \printfield[titlecase]{subtitle}}}% 
     \newunit}% 
  \printfield{titleaddon}} 
  
\urlstyle{same}
\DeclareFieldFormat[online]{url}{\url{#1}} 
\DeclareFieldFormat{urldate}{Abrufdatum\addcolon\space#1} 

\xpatchbibdriver{online} 
  {\usebibmacro{date}} 
  {} 
  {}{} 

     
\newbibmacro*{url+urldate}{% 
  \setunit{\addspace}% 
  \usebibmacro{url}% 
  \ifentrytype{online} 
    {\setunit{\addcomma\space}% 
     \printtext{Stand\addcolon\addspace}% 
     \usebibmacro{date}} 
    {} 
  \iffieldundef{urlyear} 
    {} 
    {\setunit*{\addcomma\space}% 
     \usebibmacro{urldate}}}
     
% Jahr hinzufügen 
\renewbibmacro*{cite}{% 
  \iffieldundef{shorthand} 
    {\ifnameundef{labelname} 
       {} 
       {\printnames{labelname}% 
        \setunit{\nametitledelim}}% 
     \usebibmacro{cite:title}% 
     \newunit 
     \printfield{year}}% 
    {\usebibmacro{cite:shorthand}}} 




\renewcommand{\chaptermarkformat}{} 

\geometry{paper=a4paper,left=35mm,right=25mm,top=30mm,bottom=25mm} 

\clearpairofpagestyles 
\ihead*{\headmark} 
\ohead*{\pagemark} 


\usepackage{xcolor} 
\usepackage[automark]{scrlayer-scrpage} 
\addtokomafont{pagehead}{\upshape\color{gray!100}\footnotesize} 
\addtokomafont{pagenumber}{\upshape\color{gray!100}\footnotesize}
\clearpairofpagestyles 
\ihead*{\headmark} 
\ohead*{\pagemark} 


\captionsetup[figure]{labelfont=bf,labelfont=bf} %
\newcommand{\figuresource}[1]{{ 
   \parbox{\linewidth}{Quelle:~#1}}} 
   \renewcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~#1}\endgroup}


\addtokomafont{caption}{\bfseries} 
\newcommand{\tableemph}[1]{\textbf{#1}} 


%\renewcommand*{\chapterheadstartvskip}{\vspace*{.5\baselineskip}}% 
%\RedeclareSectionCommand[beforeskip=.5\baselineskip]{chapter} 

%============Zeilenabstand===========
\makeatletter
\newcommand{\MSonehalfspacing}{%
  \setstretch{1.44}%  default
  \ifcase \@ptsize \relax % 10pt
    \setstretch {1.448}%
  \or % 11pt
    \setstretch {1.399}%
  \or % 12pt
    \setstretch {1.433}%
  \fi
}
\newcommand{\MSdoublespacing}{%
  \setstretch {1.92}%  default
  \ifcase \@ptsize \relax % 10pt
    \setstretch {1.936}%
  \or % 11pt
    \setstretch {1.866}%
  \or % 12pt
    \setstretch {1.902}%
  \fi
}
\MSonehalfspacing
\makeatother



% ============= Dokumentbeginn =============
\begin{document}

\begin{figure}[H]
	\includegraphics[width=15cm]{plank}
	\caption{Arbeitsverteilung}
	\label{Arbeitsverteilung}
	\figuresource{TESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTESTTEST} 
\end{figure}

\end{document}
Jetzt sollte es passen :)

von Johannes_B » Mi 12. Aug 2015, 14:27

Ich verstehe weder dein Problem, noch wird das am Beispiel verdeutlicht. Mach ein ordentliches Minimalbeispiel!

Tabstop in bei cite für quellen

von Dave Miller » Mi 12. Aug 2015, 14:20

Hi,

ich möchte gerne, dass wenn die Quelle bei Tabellen/Abbildung länger ist als eine Zeile, die zweite direkt unter dem Anfang von Zeile 1 steht.

Quelle:BLABLALAA
..........BLABALLA

Danke!
%Dokumentklasse
\documentclass[a4paper,12pt,
toc=chapterentrywithdots,
listof=entryprefix,
headsepline,
plainheadsepline,
headings=normal,
captions=tableabove,
captions=nooneline]
{scrreprt}


% ============= Packages =============
\usepackage[ngerman]{babel} 													%Sprache
\usepackage[T1]{fontenc} 													
\usepackage{geometry} 														
\usepackage[utf8]{inputenc} 
\usepackage{graphicx} 
\graphicspath{{img/}} 
\usepackage[scaled=0.92]{helvet} 
\usepackage{setspace} 
\usepackage{scrhack} 
\usepackage{tgheros}
\usepackage{tabularx} 
\usepackage{xpatch} 
\usepackage{colortbl}
%\usepackage{tocloft}
\usepackage{scrbase}
\usepackage[justification=RaggedRight, singlelinecheck=false]{caption}
\usepackage{lipsum}
\usepackage{float}
\usepackage{booktabs}
\addtokomafont{caption}{\bfseries\small} 
\addtokomafont{captionlabel}{\bfseries\small}
\renewcommand{\familydefault}{\sfdefault} 
\usepackage[automark]{scrlayer-scrpage} 
\usepackage{acronym} 														%Abkürzungen
\setlength{\parindent}{0pt} 													%Einrücken von Absätzen
\setlength{\parskip}{6pt} 													%Absatzabstand
\usepackage{chngcntr}  														%Counter (durchgängige Nummerierung) 
\counterwithout{figure}{chapter}                                                
\counterwithout{table}{chapter} 
\usepackage{scrhack} 


\KOMAoption{listof}{entryprefix} 
\AfterTOCHead[lof]{\renewcommand*\autodot{:}}      							% : nach lof (figures) 
\AfterTOCHead[lot]{\renewcommand*\autodot{:}}      							% : nach lot (tables) 

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=18pt
]{chapter}

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=14pt
]{section}

\RedeclareSectionCommand[%
  beforeskip=18pt,
  afterskip=10pt
]{subsection}



% ============= Quellenverzeichnis =============
\usepackage[autocite=footnote,style=authortitle,alldates=short]{biblatex} 
\ExecuteBibliographyOptions{dashed=false}
\renewcommand*{\finentrypunct}{\addspace} 									%entfernt Punkt am Ende des Lit.Verz.
\renewcommand{\labelnamepunct}{\addspace} 									%entfernt ":" bzw. ","   Lit.Verz.
\DeclareFieldFormat{title}{#1}												%titel nicht kursiv (standard) fußnote
\DeclareFieldFormat*{citetitle}{#1}											%titel nicht kursiv (standard)
%\renewcommand*{\labelnamepunct}{\addcolon\addspace}							% ":" nach letztem namen

\renewcommand{\bibfootnotewrapper}[1]{% entfernt punkt nach fußnote
  \bibsentence#1}
\renewbibmacro*{prenote}{% 
  \iffieldundef{prenote} 
    {\printtext{Vgl.}% 
     \setunit{\prenotedelim}} 
    {\iffieldequalstr{prenote}{XX} %\footcite[xx]{key}
     {} 
    {\printfield{prenote}% 
      \setunit{\prenotedelim}}}}
\setlength{\bibitemsep}{2\itemsep}
\renewbibmacro*{prenote:nocf}{% 
  \iffieldundef{prenote} 
    {} 
    {\printfield{prenote}% 
     \setunit{\prenotedelim}}}
     \DeclareCiteCommand{\cite} 
  {\usebibmacro{prenote:nocf}} 
  {\usebibmacro{citeindex}% 
   \usebibmacro{cite}} 
  {\multicitedelim} 
  {\usebibmacro{postnote}}
\addbibresource{MeineLiteratur.bib} 
\renewcommand*{\newunitpunct}{\addcomma\space} 
\renewcommand*{\labelnamepunct}{\addspace} 
\renewcommand*{\nametitledelim}{\addcolon\space} 
\renewcommand*{\finentrypunct}{\addspace} 
\setlength{\bibhang}{1,25cm}
\DeclareNameAlias{sortname}{last-first} 

% Reihenfolge ändern und Standardtrenner 
\renewbibmacro*{publisher+location+date}{% 
  \printlist{publisher}% 
  \newunit 
  \printlist{location}% 
  \newunit 
  \usebibmacro{date}% 
  \newunit} 

% Kurztitel (shorttitle) hinzufügen 
\renewbibmacro*{title}{% 
  \ifboolexpr{ 
    test {\iffieldundef{title}} 
    and 
    test {\iffieldundef{subtitle}} 
  } 
    {} 
    {\printfield[brackets]{shorttitle}% 
     \setunit{\addspace}% 
     \ifentrytype{online} 
       {\printtext[brackets]{% 
          \printfield[titlecase]{title}% 
          \setunit{\subtitlepunct}% 
          \printfield[titlecase]{subtitle}}} 
       {\printtext[title]{% 
         \printfield[titlecase]{title}% 
         \setunit{\subtitlepunct}% 
         \printfield[titlecase]{subtitle}}}% 
     \newunit}% 
  \printfield{titleaddon}} 
  
\urlstyle{same}
\DeclareFieldFormat[online]{url}{\url{#1}} 
\DeclareFieldFormat{urldate}{Abrufdatum\addcolon\space#1} 

\xpatchbibdriver{online} 
  {\usebibmacro{date}} 
  {} 
  {}{} 

     
\newbibmacro*{url+urldate}{% 
  \setunit{\addspace}% 
  \usebibmacro{url}% 
  \ifentrytype{online} 
    {\setunit{\addcomma\space}% 
     \printtext{Stand\addcolon\addspace}% 
     \usebibmacro{date}} 
    {} 
  \iffieldundef{urlyear} 
    {} 
    {\setunit*{\addcomma\space}% 
     \usebibmacro{urldate}}}
     
% Jahr hinzufügen 
\renewbibmacro*{cite}{% 
  \iffieldundef{shorthand} 
    {\ifnameundef{labelname} 
       {} 
       {\printnames{labelname}% 
        \setunit{\nametitledelim}}% 
     \usebibmacro{cite:title}% 
     \newunit 
     \printfield{year}}% 
    {\usebibmacro{cite:shorthand}}} 




\renewcommand{\chaptermarkformat}{} 

\geometry{paper=a4paper,left=35mm,right=25mm,top=30mm,bottom=25mm} 

\clearpairofpagestyles 
\ihead*{\headmark} 
\ohead*{\pagemark} 


\usepackage{xcolor} 
\usepackage[automark]{scrlayer-scrpage} 
\addtokomafont{pagehead}{\upshape\color{gray!100}\footnotesize} 
\addtokomafont{pagenumber}{\upshape\color{gray!100}\footnotesize}
\clearpairofpagestyles 
\ihead*{\headmark} 
\ohead*{\pagemark} 


\captionsetup[figure]{labelfont=bf,labelfont=bf} %
\newcommand{\figuresource}[1]{{ 
   \parbox{\linewidth}{Quelle:~#1}}} 
   \renewcommand{\figuresource}[1]{\begingroup\captionsetup{font=small,aboveskip=0.4\baselineskip}\caption*{Quelle:~#1}\endgroup}


%\renewcommand{\thefigure}{\arabic{figure}} 
%\renewcommand{\thetable}{\arabic{table}} 
%\renewcommand{\cfttabpresnum}{{Tabelle}  } 
%\renewcommand{\cftfigpresnum}{{Abbildung}  } 
%\renewcommand{\cftfigaftersnum}{{:}} 
%\renewcommand{\cfttabaftersnum}{{:}} 
%\setlength{\cftfignumwidth}{2,5cm}                     
%\setlength{\cfttabnumwidth}{2,0cm}                                           
%\setlength{\cftfigindent}{0cm}                                                     
%\setlength{\cfttabindent}{0cm} 

\addtokomafont{caption}{\bfseries} 
\newcommand{\tableemph}[1]{\textbf{#1}} 


%\renewcommand*{\chapterheadstartvskip}{\vspace*{.5\baselineskip}}% 
%\RedeclareSectionCommand[beforeskip=.5\baselineskip]{chapter} 

%============Zeilenabstand===========
\makeatletter
\newcommand{\MSonehalfspacing}{%
  \setstretch{1.44}%  default
  \ifcase \@ptsize \relax % 10pt
    \setstretch {1.448}%
  \or % 11pt
    \setstretch {1.399}%
  \or % 12pt
    \setstretch {1.433}%
  \fi
}
\newcommand{\MSdoublespacing}{%
  \setstretch {1.92}%  default
  \ifcase \@ptsize \relax % 10pt
    \setstretch {1.936}%
  \or % 11pt
    \setstretch {1.866}%
  \or % 12pt
    \setstretch {1.902}%
  \fi
}
\MSonehalfspacing
\makeatother



% ============= Dokumentbeginn =============
\begin{document}

\begin{table}[h!]\KOMAoptions{captions=nooneline} 
%\centering
\includegraphics[width=10cm]{Bestellung_Laender.png}
\caption{Aktuelle Auftragslage}
\label{Aktuelle_Auftragslage}
{\small \figuresource {Eigene Darstellung nach \cite{LANGER TEXT} }   }
\end{table}

\end{document}



Nach oben