latex中的表格如何取消小写字母大写

在IEEE的latex模版中,表格的标题都是默认小写字母大写的,即word中的“small caps”功能。

如:

\documentclass[journal]{IEEEtran}

\begin{document}

\begin{table}[!t]
% increase table row spacing, adjust to taste
\renewcommand{\arraystretch}{1.3}
\caption{Diagnosis of Rotor Faults in a DRFOC Drive Using the VCT (Flux Loop Bandwidth (FLB) = 10 Hz; 75\% Load; 1450 r/min) }
\label{DiagnosisResults}
\centering
\begin{tabular}{c||c|c|c|c|c|c}
\hline
A & B & C & D & E & F & G\\
\hline
0 & 0 & 0 & 0 & 0& 0 & 0\\
\hline
1 & 0 & 0 & 0 & 0& 0 & 0\\
\hline
2 & 0 & 0 & 0 & 0& 0 & 0\\
\hline 
\end{tabular}
\end{table}

\end{document}


上述latex代码可得到如下表格,

latex中的表格如何取消小写字母大写_第1张图片

如果需要将表格表头中的 r/min显示成常规的小写字母,该如何实现呢?


很简单,只要把上述代码中的r/min改为

1450 {\upshape r/min})

就可以了。运行后得到的结果如下:
 
  
 
  
可以看到,r/min成功的实现了常规小写显示。

你可能感兴趣的:(论文写作与排版)