Wie kann man Figuren in ConTeXt schweben lassen/umbrechen?

Wie kann man Figuren in ConTeXt schweben lassen/umbrechen?

Ich habe ein einfaches zweispaltiges Dokument in ConTeXt. Ich habe versucht, die Zahlen mit `placefigure` im Text schweben zu lassen/umzubrechen, aber es fügt die Zahlen genau dort ein, wo sie sind. Dadurch bleibt in der vorherigen Spalte ein leerer Platz, wenn eine Zahl nicht eingepasst wird. Bildbeschreibung hier eingeben

Ignorieren Sie außerdem ConTeXtdie Befehle zum Positionieren von Abbildungen wie top, bottom, usw. Was sollte die Standardplatzierung von Abbildungen sein, damit diese innerhalb des Textes schweben/umbrochen werden?

\starttext
\startcolumns[n=2,tolerance=verytolerant]
\section{Introduction}
LaTeX is based on the idea that authors should be able to focus on the content of what they are writing without being distracted by its visual presentation. In preparing a LaTeX document, the author specifies the logical structure using familiar concepts such as chapter, section, table, figure, etc., and lets the LaTeX system worry about the presentation of these structures. It therefore encourages the separation of layout from content while still allowing manual typesetting adjustments where needed. This is similar to the mechanism by which many word processors allow styles to be defined globally for an entire document or the use of Cascading Style Sheets to style HTML.
\placefigure[top,bottom][fig:1]{LaTeX can be arbitrarily extended by using the underlying macro language to develop custom formats. Such macros are often collected into packages, which are available to address special formatting issues such as complicated mathematical content or graphics. Indeed, in the example below, the align environment is provided by the amsmath package.
}
{\externalfigure[1.png][width=\textwidth]}
LaTeX is based on the idea that authors should be able to focus on the content of what they are writing without being distracted by its visual presentation. In preparing a LaTeX document, the author specifies the logical structure using familiar concepts such as chapter, section, table, figure, etc., and lets the LaTeX system worry about the presentation of these structures.
\stopcolumns
\stoptext

Antwort1

Um Bilder schweben zu lassen,Verwenden von Grafikenbeschreibt zwei Möglichkeiten. Entweder verwenden Sie starthanging, wie:

\starttext
\starthanging[location=right,n=2,distance=1cm]{\externalfigure[cow][width=4cm]}
    \input tufte
\stophanging
\stoptext

oder mitSchwebende Objekte, die von ConTeXt nummeriert und platziert werden und eine Überschrift bekommen können, wie:

\placefigure[right]{My Caption}{\externalfigure[cow.jpg]}

verwandte Informationen