LaTeX 图片旁边放一张表格

2021/12/16 23:14:14

本文主要是介绍LaTeX 图片旁边放一张表格,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

做slide的时候想要在图片的右边放一张表格用作参数说明,直接上代码:

\begin{frame}
\begin{table}
  \begin{minipage}[p]{0.56\textwidth}
    \centering
    \resizebox{\linewidth}{!}{
        \includegraphics[width=60mm]{AirInterfaceEDProcess.png}
    }
  \end{minipage}
  \begin{minipage}[p]{0.4\textwidth}
    \centering
    \resizebox{\linewidth}{!}{
    \begin{tabular}{|l|l|}
    \hline
    {\bf Parameter} & {\bf Explain} \\
    \hline
    KEY & the encryption key\\
    \hline
    COUNT & The number of packets\\
    \hline
    BEARER & Bearer ID\\
    \hline
    LENGTH & Length of the keystream\\
    \hline
    DIRECTION & Indicates the uplink(0) or downlink(1) \\
    \hline
    {\bf \color{red} NEA} & {\bf \color{red} Encryption algorithm}\\
    \hline
    PLAINTEXTBLOCK & Plaintext before encryption\\
    \hline
    CIPHERTEXTBLOCK & Encrypted ciphertext\\
    \hline
    KEYSTREAMBLOCK & Keystream\\
    \hline
    \end{tabular}
    }
  \end{minipage}
  
  \caption{Air Interface Encryption and Decryption Process}
\end{table}

\end{frame}

效果如下:

按理说0.5和0.5就可以显示在左右,试了不行,就改成了0.56和0.4



这篇关于LaTeX 图片旁边放一张表格的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程