我有一个表格,其中有一个空白列无法删除。我试了很多方法,但都无法编译。代码如下:
\usepackage{tipa}
\let\ipa\textipa
\begin{center}
\begin{tabular}{|l|cc|cc|cc|cc|cc|cc|cc|cc|cc|cc|cc|}
\hline &
\multicolumn{2}{|c|}{\footnotesize{Bilibial}}&
\multicolumn{2}{|c|}{\footnotesize{Lab.dent}} &
\multicolumn{2}{|c|}{\footnotesize{Dental}} &
\multicolumn{2}{|c|}{\footnotesize{Alveolar}} &
\multicolumn{2}{|c|}{\footnotesize{P.Alvo}} &
\multicolumn{2}{|c|}{\footnotesize{Paltal}} &
\multicolumn{2}{|c|}{\footnotesize{Velar}} &
\multicolumn{2}{|c|}{\footnotesize{Uvular}} &
\multicolumn{2}{|c|}{\footnotesize{Phar}} &
\multicolumn{2}{|c|}{\footnotesize{Lar}}\\
\hline Plosive &
p & b &
&&
t & d &
&&
&&
&&
k & \textscriptg &
& q &
& \BlankCell & \ipa{P}
& \\
\hline Affricative &
& &
& &
& &
& &
\textteshlig&\textdyoghlig &
& &
& &
& &
& &
& &
\\
\hline Fricative &
& &
f & v&
& &
s &z&
\ipa{S} & \ipa{Z} &
&&
x & \textgamma &
& &
\textcrh & \ipa{Q}
& h &
\\
\hline Nasal&
& m &
& &
& n &
& &
& &
&&
& \ipa{N} &
& &
& &
& & \\
\hline Trill &
& &
& &
& &
& {r}&
& &
& &
& &
& &
& &
& &
\BlankCell \\
\hline Tap &
& &
& &
& &
& {\textfishhookr}&
& &
& &
& &
& &
& &
& &
\BlankCell \\
\hline Lateral &
& &
& &
& &
l & \textsuperimposetilde{l} &
& &
& &
& &
& &
& &
& & \\
\hline Glide &
& w &
& &
& &
& &
& j &
& &
& &
& &
& &
& & \\
\hline
\end{tabular}
\end{center}
答案1
嗯,只是一个分析。如果您的代码示例无法编译,那么在您引入表的所有细节之前,它无法编译。例如,不清楚为什么您需要包tipa
。有关语言特定的事情,请查看babel
,https://ctan.org/pkg/babel。有关基本表格设计,请参见此处:https://en.wikibooks.org/wiki/LaTeX/Tables。
编译问题使用 Texmaker (MikTex 发行版) 发布的代码
建议:
- 从小事做起,参见下面的代码
- 编译,查看是否通过
- 添加一小段新代码
- 重复,直到到达你想去的地方
- 不要一次做太多事情,希望得到最好的结果
例如从这里开始:
\documentclass[10pt, border=3mm]{standalone}
\begin{document}
hi
\end{document}
按照这种方法,下一步可能看起来像这样,省去一些中间的编辑和编译步骤,以安全的方式一步步朝着目标前进:
\documentclass[10pt, border=3mm]{standalone}
\begin{document}
\begin{tabular}{|l|lr|lr|}
\hline
Plosive &p&b & & \\\hline
Affricative & & & & \\\hline
Fricative & & &f &v \\\hline
\end{tabular}
\end{document}