Latex一些使用技巧总结

1. 文字颜色设置

头文件添加:

\usepackage{
    
    color}

内容添加:

#颜色依次为:红色/蓝色/绿色/黑色/白色/蓝绿色/品红色/黄色
\textcolor{
    
    red/blue/green/black/white/cyan/magenta/yellow}{
    
    text}

2. 文字形态设置

  • 文字加粗
\textbf{
    
    文本}
  • 文字斜体
\emph{
    
    文本}
  • 文字加下划线
\underline{
    
    文本}

3. 首行无缩进设置

\noindent

猜你喜欢

转载自blog.csdn.net/gaoqing_dream163/article/details/111831589