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🐔

 

並排圖

\begin{figure}[htbp]
\centering
\begin{minipage}[p]{0.4\textwidth}
\centering
\includegraphics[width=1\textwidth]{AirInterfaceEDProcess.png}
\caption{NEA}
\end{minipage}
\qquad
\begin{minipage}[p]{0.4\textwidth}
\centering
\includegraphics[width=1\textwidth]{AirInterfaceIntegritytProcess.png}
\caption{NIA}
\end{minipage}
\end{figure}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM