使用流程图重叠文本和图形

使用流程图重叠文本和图形

我使用 flowfram 包来编写我的小册子。我想使用 staticcontents 在第 6 页添加一张图片,该图片不知何故与同一页上的文本重叠。我该如何解决这个问题?为了简单起见,我在代码中省略了一些文本。

\documentclass[a4paper]{report}

\usepackage[margin=1in]{geometry}
\usepackage{color}
\usepackage{flowfram}
\usepackage[colorlinks]{hyperref}
\usepackage{graphicx}

\onecolumninarea[1]{0.6\textwidth}{\textheight}{0.4\textwidth}{0pt}
\onecolumnStopinarea[>1]{0.1\textheight}{0.6\textwidth}{\textheight}{0.4\textwidth}{0pt}

\newstaticframe[6]{0.8\textwidth}{.4\textheight}{0.2\textwidth}{0.6\textheight}[statico]


\begin{document}

\chapter{Introduction}

The unanticipated epidemic outbreak of COVID-19 enforces many governments to adopt confinement policy, leading to a huge froze of economic activities. Except for the gigantic decrease in consumption, many non-essential industries also suffer from stagnation of production. Among reasons such as demand shocks and supply chain disruption, a new concern regarding the productivity of working from home (WFH) during the pandemic period comes into sight. This topic catches much attention not only because many discussants are, at the same time, now "remote-workers" but also due to the uncertain ending time of WFH. In this short article, I will try to give an academic discussion of the WFH efficiency issue.

\begin{staticcontents*}{statico}
    \includegraphics[width=0.8\textheight,height=0.4\textheight]{Figure_2.jpg}
\end{staticcontents*}


\section*{WFH efficiency and GDP}

While many recent working papers provide lights on one factor, the capital, that impact the forecast of GDP, I shall bring about interesting points on total factor productivity. Generally we believe the revolution of productivity is slow and steady during a short period, and technology innovations, such as electricity, the Internet, and AI, positively promote product development speed. The flourishing of modern science and technology has lasted for over a century, making people hard to imagine we may face a productivity decrease due to a pandemic.\\
\end{document}

在此处输入图片描述

答案1

帧通常会重叠,除非特别设置为不重叠。

我没有任何经验\onecolumninarea等。如果我需要一页上有两列,我只需使用两个流动框架。

\documentclass[a4paper]{report}

\usepackage[margin=1in]{geometry}
\usepackage{color}
\usepackage{flowfram}
\usepackage[colorlinks]{hyperref}
\usepackage{graphicx}

\newflowframe[1]{0.6\textwidth}{0.6\textheight}{0.4\textwidth}{0pt}
\newflowframe[>1]{0.6\textwidth}{\textheight}{0.4\textwidth}{0pt}

\newstaticframe[1]{0.8\textwidth}{.4\textheight}{0.2\textwidth}{0.6\textheight}[statico]

\begin{staticcontents*}{statico}
    \includegraphics[width=\linewidth,height=0.4\textheight]{example-image}
\end{staticcontents*}

\begin{document}

\chapter{Introduction}

The unanticipated epidemic outbreak of COVID-19 enforces many governments to adopt confinement policy, leading to a huge froze of economic activities. Except for the gigantic decrease in consumption, many non-essential industries also suffer from stagnation of production. Among reasons such as demand shocks and supply chain disruption, a new concern regarding the productivity of working from home (WFH) during the pandemic period comes into sight. This topic catches much attention not only because many discussants are, at the same time, now "remote-workers" but also due to the uncertain ending time of WFH. In this short article, I will try to give an academic discussion of the WFH efficiency issue.



\section*{WFH efficiency and GDP}

While many recent working papers provide lights on one factor, the capital, that impact the forecast of GDP, I shall bring about interesting points on total factor productivity. Generally we believe the revolution of productivity is slow and steady during a short period, and technology innovations, such as electricity, the Internet, and AI, positively promote product development speed. The flourishing of modern science and technology has lasted for over a century, making people hard to imagine we may face a productivity decrease due to a pandemic.\\
\end{document}

相关内容