如何防止图片标题超出页面范围

如何防止图片标题超出页面范围

我在处理一些 latex 格式时遇到了问题。具体来说,我的一个图形上的图形标题超出了页边距。我希望我的图像能够扩展到它们之外,但现在这可能会导致我的图形出现问题。我提供了 .tex 文档和 .cls 文档的链接,.tx 需要这些文档来生成我的论文

ubcthesis.cls

主文本

该图的代码在这里:

\begin{figure}[htbp]
\centerline{\includegraphics[scale=0.8]{introduction_figures/MemStagesV2.png}}
\caption[Stages of memory formation]
{Stages of memory formation, boundary of different stages and necessity of transcription and synaptic plasticity for each. a) Shows the approximate timeline of the various stages of memory formation.  ~\textbf{Encoding} is the initial learning which can occur in milliseconds or over a few minutes or hours.  ~\textbf{Consolidation} involves passive processes which strengthen and weaken synapses on the activated neurons.  During resting periods after encoding, offline reactivation takes place within the first few hours, and during sleep, it contributes to consolidation. After consolidating memories enter~\textbf{long-term maintenance} and become ~\textbf{remote memory}. b)  Synaptic plasticity and transcription have been established to be necessary in different brain regions at different times for each process.  Synaptic blockade during encoding prevents encoding but not consolidation, blockage in hippocampus during sleep prevents later retrieval possibly through inhibition of offline replay during sleep.  Inhibiting transcription at any point during consolidation will prevent altered memory retrieval.  Transcription is hypothesized by the NGS engram literature to be required for long term maintenance for retrieval at remote time points weeks and months later.}
\label{fig:stageofmemoryformationandmaintenance}
\end{figure}

由此产生的问题是这样的...

在此处输入图片描述

如您所见,标题超出了页边距,靠近页面边缘,如果超出了页边距,标题就不会打印在下一页上,而是会被页面截断。如果知道如何扩展页边距,那也很好,我不清楚如何在本文档中做到这一点。

相关内容