zoukankan      html  css  js  c++  java
  • 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}

  • 相关阅读:
    [转载]memcached完全剖析--1. memcached的基础
    I/O多路复用
    How to install the zsh shell in Linux && how to set it as a default login shell
    深入理解计算机中的 csapp.h和csapp.c
    (一)网络编程基础之套接字入门
    crx
    t
    武汉第一例肺炎病例
    C语言 ## __VA_ARGS__ 宏
    NLP之中文分词cppjieba
  • 原文地址:https://www.cnblogs.com/PiaYie/p/15700135.html
Copyright © 2011-2022 走看看