“额外 },或忘记 \endgroup”错误

“额外 },或忘记 \endgroup”错误
\documentclass[a4paper,12pt]{article}
\usepackage[dutch]{babel} % Quotes won't work without babel
\usepackage[utf8]{inputenc}  % This is very important!
\usepackage[T1]{fontenc}

\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage[pdfborder={0 0 0}, breaklinks=true, pdftex=true, raiselinks=true]{hyperref}
\usepackage{tabularx}

\newcolumntype{Y}{>{\raggedright}X}

\begin{document}

\subsection{subsection}
\begin{tabularx}{\linewidth}{YY}\hline

\textbf{Plugin}
&\begin{wrapfigure}{r}{0.5\linewidth} \vspace{-10pt} \begin{center}         \includegraphics[width=1\linewidth]{pic.png} \end{center} \vspace{-10pt} \caption{some     caption name} \vspace{-10pt} \end{wrapfigure}
\tabularnewline \hline

See section \textit{section text} for further information\tabularnewline \hline

\textbf{Source Settings}\tabularnewline \hline

\textit{Source:} Choose the Source Type:
\begin{itemize}
\item  Separate 
\item  Side-by-Side 
\item  Top-Bottom \tabularnewline \hline
\end{itemize}

\end{tabularx}
\end{document}

我找不到错误,也许有人可以帮我解决一下,好吗?我认为这与 itemize 环境有关,但我不知道原因。

答案1

在表格环境中逐项列出

您已经发现这itemize就是问题所在,并且通过谷歌搜索就可以找到该问题。

我将相关单元格编码为

\begin{parbox}{5cm}
\textit{Source:} Choose the Source Type:
\begin{itemize}
\item  Separate 
\item  Side-by-Side 
\item  Top-Bottom
\end{itemize}
\end{parbox}

并且它成功了。

没有你的 png 文件,我把一个不合适的文件放在那里,这凸显了使用wrapfigure在表格中使用的怪异之处(我的 png 似乎偏向右边);什么你打算在那里做什么?我猜是也会有所parbox帮助——就像

\begin{parbox}{5cm}
\includegraphics{pic.png}
\captionof{figure}{my picture}
\end{parbox}

可以完成工作(但需要\usepackage{caption}\usepackage{capt-of}

相关内容