我正在使用这里的 IEEE 格式乳胶文件:
http://mocha-java.uccs.edu/ieee/
我有以下代码:
\begin{center}
\begin{tabular}{|l|l|}
\hline
\multicolumn{2}{|c|}{UHF/VHF Antenna Specifications} \\
\hline
{\bf Model} & 2MCP22 \\
Frequency Range & 144-148 MHz \\
Gain @ 145.9 MHz & 12.25 dBdc \\
Front to back & 25 dB Typical \\
Beamwidth & 38° \\
Feed impedance & 50 Ohms Unbalanced \\
VSWR & 1.4: Max \\
Input Connector & ‘N’ Female \\
Power Handling & 1.5 KW \\
Stacking Distance & 9.5-10 ft \\
Boom length & 18’ 7” \\
Boom Diameter & 1-1/2”, Tapering to 1” \\
Elements/Type & 22 / 3/16” Aluminum Rod \\
Turning radius & 10 ft \\
Wind area & $2.5 ft^2$ \\
Weight / Ship Wt. & 12.5 lbs / 14 lbs UPS \\
\hline
{\bf Model} & 436CP42 U/G \\
Frequency Range & 430-438 MHz \\
Gain & 16.8 dBdc \\
Beamwidth & 21° circular \\
Polarity & Circular, RHC or LHC \\
Front to Back & 25 dB Typical \\
Ellipticity & 1.5 dB Typical \\
VSWR & 1.5:1 and better \\
Feed impedance & 50W, Unbalanced \\
Connector & ‘N’ Female \\
Power handling & 1 kW \\
Stacking Distance & E=68” H=68” \\
Turning radius & 95° \\
Wind Area & $2 ft^2$ \\
Mast Size & 1-1/2 to 2 Inches \\
Weight / Ship Wt. & 7.8 lbs / 10 lbs UPS \\
\hline
{\bf Model} & 2.4-15R \\
Frequency Range & 2.4-2.5 GHz \\
Gain & 15 dBi \\
Front to Back & 16 dB \\
VSWR & 1.5:1 Max \\
Polarity & Vertical / Horizontal \\
Feed Impedance & 50 Ohms \\
Feed Connector & ‘N’ Female \\
Power Handling & 500 W \\
Boom Length & 25” \\
Radome Diameter & 3.3” \\
Mast Size & 1-1/4 to 2 Inches \\
Wind Area & 1 $ft^2$ \\
Wind Rating & 100 mph \\
Weight & 1 lb \\
\hline
\end{tabular} \\
\end{center}
由于某种原因,表格与其后的文本直接重叠,我在这里发布了一张图片: https://docs.google.com/leaf?id=0BxtHMBPFxja0OTU4MTViNzItMjQ4ZS00MTgwLWE5OTktMWY3NGJkZjU1ZDQy&hl=en&authkey=CN_7j70D
我试过把它包裹起来
\begin{table}
...table here...
\end{table}
但这样做会出错
这会让我发疯,尝试 \\ 或 \newpage 或其他方法来单独解决它并没有帮助。
编辑:澄清重叠问题。
EDIT2:这是一个最小的例子
\documentclass[final]{ieee}
\begin{document}
\begin{center}
\begin{tabular}{|l|l|}
\hline
{\bf Model} & 2.4-15R \\
Frequency Range & 2.4-2.5 GHz \\
Gain & 15 dBi \\
Front to Back & 16 dB \\
VSWR & 1.5:1 Max \\
Polarity & Vertical / Horizontal \\
Feed Impedance & 50 Ohms \\
Feed Connector & ‘N’ Female \\
Power Handling & 500 W \\
\hline
\end{tabular} \\
\end{center}
\PARstart The GENSO network will consist of a MCC, GSS and AUS. Each satellite communicates with an individual MCC which acts as a server. All data and voice transmissions for the given satellite are downloaded by different GSS's throughout the world and routed to the correct MCC where it is retained for later dissemination. [...]
\end{document}
另一个ieee
课程来自我最初在顶部链接的网站。
答案1
这似乎是ieee
类中的一个错误。在环境后添加一个空框center
可以解决问题。
\documentclass[final]{ieee}
\begin{document}
\begin{center}
\begin{tabular}{|l|l|}
\hline
{\bf Model} & 2.4-15R \\
Frequency Range & 2.4-2.5 GHz \\
Gain & 15 dBi \\
Front to Back & 16 dB \\
VSWR & 1.5:1 Max \\
Polarity & Vertical / Horizontal \\
Feed Impedance & 50 Ohms \\
Feed Connector & ‘N’ Female \\
Power Handling & 500 W \\
\hline
\end{tabular}
\end{center}\mbox{} %note the \mbox here
\PARstart The GENSO network will consist of a MCC, GSS and AUS. Each satellite communicates with an individual MCC which acts as a server. All data and voice transmissions for the given satellite are downloaded by different GSS's throughout the world and routed to the correct MCC where it is retained for later dissemination. [...]
\end{document}