我想插入一张图片(或表格),如下面这个最小示例所示,但不与右侧列重叠。我尝试了使用 multicols 包的各种建议,但对我来说不起作用。
我希望图形居中,并且我希望能够在不破坏文档的情况下将其在顶部、此处和底部之间移动,并且我希望右侧列简单地移动到图像下方并继续位于左侧列旁边。
提前致谢!
\documentclass[jou]{apa6}
\usepackage{multicol}
\usepackage{lipsum}
\usepackage[danish]{babel}\renewcommand{\danishhyphenmins}{22}
\usepackage[utf8x]{inputenc}
\usepackage{textcomp}
\usepackage{lmodern}
\usepackage[natbibapa]{apacite}
\usepackage[T2A,T1]{fontenc}
\usepackage{blindtext}
\usepackage{cuted}
\usepackage{graphicx}
\title{Long Title}
\shorttitle{ShortTitle}
\twoauthors{1}{2}
\twoaffiliations{1}{2}
\abstract{}
\rightheader{Header}
\leftheader{Header}
\begin{document}
\maketitle
\section{title}
\lipsum
\begin{figure}
\centering
\includegraphics[width=14cm,height=5cm]{example-image.png}
\caption{A wide figure}
\end{figure}
\lipsum
\end{document}