在双栏纸的一栏中插入图形时,空白太多了。有什么顺序可以让纸排列得更好吗?下面的代码只是一个例子。如果您能告诉我为什么会出现意外的空白,或者为什么空白处无法输入文字,我将不胜感激。
另外一个问题是如何实现底部对齐,即两列的最底部的文本或标题、单词在一行中。
非常感谢!
\documentclass[a4paper]{article}
\usepackage{float}
\usepackage{subfloat}
\usepackage{caption,subcaption}
\usepackage{bicaption}
\usepackage{subfig}
\usepackage{lipsum}
\usepackage[top=2.5cm,bottom=2.5cm,left=2cm,right=2cm]{geometry}
\usepackage{graphicx}
\begin{document}
\twocolumn
\section{Haha}
\lipsum[1-5]
\begin{figure}[!hbtp]
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{hei}\label{fig:fig8a}
\end{subfigure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月10日散流器Bi各测点风速值图}\label{fig:fig8b}
\end{subfigure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月11日散流器Bi各测点风速值图}\label{fig:fig8c}
\end{subfigure}
\bicaption{不同测试日风口Bi各测点风速测试结果}{The test results of various measuring points wind speed of diffuser B$_i$}
\end{figure}
\begin{figure}[!hbtp]
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{hei}\label{fig:fig8a}
\end{subfigure}
\end{figure}
\begin{figure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月10日散流器Bi各测点风速值图}\label{fig:fig8b}
\end{subfigure}
\bicaption{不同测试日风口Bi各测点风速测试结果}{The test results of various measuring points wind speed of diffuser B$_i$}
\end{figure}
\section{Hi}
\lipsum[1-5]
\end{document}
答案1
我删除了不必要的环境和包。但是,我怀疑真正的问题在于图像本身的空白,或者图像的大小影响了放置。以下是我使用 选项得到的demo
结果graphicx
:
\documentclass[a4paper]{article}
\usepackage{subcaption}
\usepackage{bicaption}
\usepackage{lipsum}
\usepackage[top=2.5cm,bottom=2.5cm,left=2cm,right=2cm]{geometry}
\usepackage[demo]{graphicx}
\begin{document}
\twocolumn
\section{Haha}
\lipsum[1-5]
\begin{figure}[!hbtp]
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{hei}\label{fig:fig8a}
\end{subfigure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月10日散流器Bi各测点风速值图}\label{fig:fig8b}
\end{subfigure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月11日散流器Bi各测点风速值图}\label{fig:fig8c}
\end{subfigure}
\bicaption{不同测试日风口Bi各测点风速测试结果}{The test results of various measuring points wind speed of diffuser B$_i$}
\end{figure}
\begin{figure}[!hbtp]
\centering
\includegraphics[width=77mm]{fig9b}
\caption{hei}\label{fig:fig8a}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=77mm]{fig9b}
\caption{7月10日散流器Bi各测点风速值图}\label{fig:fig8b}
\bicaption{不同测试日风口Bi各测点风速测试结果}{The test results of various measuring points wind speed of diffuser B$_i$}
\end{figure}
\section{Hi}
\lipsum[1-5]
\end{document}