[Latex] Change the line color of the table, the font color in the table, the header color, and add a wavy line

1 Table line color
Add array package

\usepackage{
    
    array}

Add below the form

\arrayrulecolor{
    
    yellow}

2 The font color in the table
is used for each content

{
    
    \color{
    
    yellow} text}

3 The header color
is used in front of the caption

{
    
    \color{
    
    yellow}text}

4 Add wavy lines above letters

\tilde{
    
    内容}
\widetilde{
    
    内容}
# 例子
$\tilde{
    
    CY_2}$ vs $\widetilde{
    
    CY_2}$ vs $\tilde{
    
    CY}_2$ vs $\widetilde{
    
    CY}_2$

exhibit

Guess you like

Origin blog.csdn.net/qq_40721108/article/details/129124118