1. ホーム
  2. latex

[解決済み] 行の段落にある(幅1.38991pt)いっぱいの????ボックスで、PDFが生成されているのにLatexの警告が出る。

2022-02-09 10:37:59

質問

以下のLatexコードは、次のような警告が表示されます。 Overfull \hbox (1.38991pt too wide) in paragraph at lines pdfは問題なく生成されていますが、この警告が表示されるのはどこで間違えているのかを調べています。

Latexのコード1。

\begin{document}
\setbeamertemplate{caption}[numbered]
\begin{frame}
\titlepage
\end{frame}

Latex code2です。

%\section{Literature Review}%
\begin{frame}{OBJECTIVE}
\begin{table}[h!]
    \centering
   
    \begin{tabular}{ p{3cm}|p{7cm}}
     \hline
     \vspace{1pt}
    Title & “CompaRob:The shopping cart assistance robot"  \textit{’ Int. J. Distrib. Sensor Netw., vol. 12,no. 2, Feb. 2016, Art. no. 4781280.} \\
     \hline
     \vspace{6mm}
     Methodology & 
     \begin{itemize}
         \item Radio and ultrasound signals
         \item Provide freedom of movements for elderly people
     \end{itemize}\\
     \hline
     \vspace{1pt}
    Demerit & 
    \begin{itemize}
        \item  Not able to show how to find a product
       
    \end{itemize}\\
     \hline
    \end{tabular}
    \end{table}
\end{frame} 

 

解決方法は?

10cm分の柱が入るスペースがない は、列の前後にあるデフォルトのパディングです。パディングを取り除くには @{}p{2.9cm}|p{7cm}@{} または、列を少し小さくする。

\documentclass{beamer}

\begin{document}
\setbeamertemplate{caption}[numbered]
\begin{frame}
\titlepage
\end{frame}


%\section{Literature Review}%
\begin{frame}{OBJECTIVE}
\begin{table}[h!]
    \centering
   
    \begin{tabular}{ p{2.9cm}|p{7cm}}
     \hline
     \vspace{1pt}
    Title & “CompaRob:The shopping cart assistance robot"  \textit{’ Int. J. Distrib. Sensor Netw., vol. 12,no. 2, Feb. 2016, Art. no. 4781280.} \\
     \hline
     \vspace{6mm}
     Methodology & 
     \begin{itemize}
         \item Radio and ultrasound signals
         \item Provide freedom of movements for elderly people
     \end{itemize}\\
     \hline
     \vspace{1pt}
    Demerit & 
    \begin{itemize}
        \item  Not able to show how to find a product
       
    \end{itemize}\\
     \hline
    \end{tabular}
    \end{table}
\end{frame}

 


\end{document}