表格中的文本垂直居中

表格中的文本垂直居中

现存的

在此图像中,由于没有像g,y第一个单元格中的字符,圆括号和文本之间似乎存在错位CBSE。 有没有办法像下图一样自动将文本居中? 我在 GIMP 中编辑了以下内容,并将文本CBSE稍微向下移动,使其垂直对齐。 有没有办法在 LaTeX 中执行相同操作?

要求

来自我的类​​文件的代码片段

\begin{tabular}{|M{0.295\textwidth}|c|c|c|} 
    \hline
    Program & Institute & Percent/CGPA & Year of Completion \\
    \hline
    #1 & #2 & #3 & #4
    \hline
\end{tabular}

答案1

这不是一个错误。这是预期的行为。括号说明了可能的下降部分。

\documentclass{article}
\begin{document}
(CBSE)
\end{document}

在此处输入图片描述

如果您想调整垂直对齐,请使用\raisebox

\documentclass{article}
\begin{document}
\raisebox{.1333ex}{(}CBSE\raisebox{.1333ex}{)}
\end{document}

在此处输入图片描述

答案2

您可以使用较大字体中的小型大写字母来获得此结果,如果您是完美主义者,请添加一些负字距调整:

\documentclass{article}

\begin{document}

XII (CBSE)

 \large\textsc{xii \kern-0.1em(\kern-0.07em cbse\kern-0.05em)}

 \Large\textsc{xii (cbse)}

\end{document} 

在此处输入图片描述

相关内容