我正在使用 floatrow 环境并排显示图形和表格。这是我的 latex 代码:
\documentclass[a4paper,11pt,twoside]{article}
\usepackage{floatrow}
\usepackage[export]{adjustbox}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\CenterFloatBoxes
\begin{floatrow}
\ffigbox
{\includegraphics[width=0.6\textwidth, inner]{sc_topo.jpeg}}
{\caption{Example of figure}\label{fig:test}}
\ttabbox
{\begin{tabular}{cccc}
\hline
A& B& C& D\\
1& 2& 2 & 3 \\
1& 2& 2 & 3 \\
\hline
\end{tabular}
}
{\caption{An example of plan}}
\end{floatrow}
\end{figure}
\end{document}
我得到的是:
*******FIG******** *******TABLE CAPTION ********
****FIG CAPTION*** ***********TABLE ************
但我想将标题与图形和表格对齐,而不是一个在上一个在下:
*******FIG******** *******TABLE ********
****FIG CAPTION*** ***TABLE CAPTION ****
谢谢 !