强制图片和文字在同一页上

强制图片和文字在同一页上

我目前正在写一篇生物技术论文,对 LaTeX 还不是很熟悉。如何强制此图像保持在同一页上?图形必须保持相同的大小。我要删除页码,因为图形与页边距重叠。

先感谢您。样本

\begin{figure}[!h]
\begin{widepage}
    \begin{minipage}[c]{\textwidth}
    \includegraphics[width=\textwidth,set height=18cm]{Autocrine_Signal_Loop.png}
    \end{minipage}
   \captionsetup{width=\textwidth}
   \caption{\textbf{PD-1/PD-L mechanism of action.} Binding of PD-1 and PD-L1 crosslinked with TCR/MHC-II antigen presentation between a T cell and an APC leads to altered T cell metabolism and subsequent T cell differentiation. Simultaneous TCR and PD-1 stimulation lead to phosphorylation of the ITIM and ITSM motifs of PD-1 recruiting SHP-1 and SHP-2. SHP-1 and SHP-2 dephosphorylate downstream signalling molecules of TCR leading to the impairment of PI3K/Akt and Ras/MEK/ERK pathways and change of cell metabolism from oxidative phosphorylation to fatty acid beta-oxidation. Consequently, the number of regulatory T cells and exhausted T cells are increased while the amount of effector T cells and memory T cells are decreased, resulting in overall less proliferation, cytotoxic secretion, and T cell survival.}
   \label{fig2}
\end{widepage}
\end{figure}

宽页定义为

\newlength{\offsetpage}
\setlength{\offsetpage}{1.2cm}
\newenvironment{widepage}{\begin{adjustwidth}{-\offsetpage}{-\offsetpage}%
    \addtolength{\textwidth}{2\offsetpage}}%
{\end{adjustwidth}}

相关内容