如何确保图像在部分

如何确保图像在部分

以下片段显示了我的问题。我有三张大图(两张半页,一张全页横向),需要保留在标题为“原理图和模型”的部分中。我以为 [H] 可以做到这一点,但它只是将所有三张图片移动到文档末尾。

A:为什么图像不像我期望的那样紧跟在节标题后面?B:如何确保图像在节内?

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx} % Required for the inclusion of images
\usepackage{cite}
\usepackage{wrapfig} %allows wrapping text around figures
\newpage
\section{Schematics and Models}

\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth,height=\textheight,keepaspectratio]{1_bit_ALU.png}
\caption{Gate level implementation of a 1 bit ALU. C\_o is the carry/borrow out and Q is the result. Inputs are A,B,C\_in, F0 and F1.}
\label{fig:1BSlice}
\end{figure}

\begin{figure}[H]
\centering
\includegraphics[width=\textwidth,height=\textheight,keepaspectratio]{3_bit_test_bench.png}
\caption{Block level implementation of 3 bit ALU consisting of 3 1 Bit ALUs joined in series.}
\label{fig:3BSchematic}
\end{figure}

\begin{figure}[H]
\centering
\includegraphics[angle=270, width=\textwidth, keepaspectratio]{3_bit_result.png}
\caption{Result of running simulation on 3 bit ALU test bench. }
\label{fig:3BResult}
\end{figure}

\section{Simulation Results}
\section{Analyses and Explanations}
\section{Conclusions}

\section{Answers to Questions}
\paragraph{Discuss what is a heirarchical design}
\paragraph{Discuss the advantages of a hierarchical design such as what was accomplished in this lab.}

\end{document}

答案1

\clearpage如果在下一部分之前添加,所有浮点数都将从内存中删除。

但是如果你只在环境中使用H选项figure,浮点数可能就不需要了。你可以考虑只添加标题。例如,参见无浮动的标签和标题

相关内容