当前位置:   article > 正文

LaTex设置标题页、修改文字颜色和文字高亮_latex 标题

latex 标题

目录

一、标题页

1)常用的代码

2)添加脚注

二、修改文字颜色和文字高亮

1)设置文本的颜色

2)添加文本高亮

3)给文本添加有颜色的方框


一、标题页

主要的代码:

  1. \begin{titlepage}
  2. \noindent\fontsize{12}{15}\selectfont\textbf{Convolutional transformer attention network}
  3. \vspace{5mm} % 垂直间距
  4. \noindent\small{Liu xx\textsuperscript{a}, Yang xx\textsuperscript{a,$\ast$} and Huang xx\textsuperscript{a}}
  5. \vspace{2mm}
  6. \noindent\small{\textsuperscript{a}University, city, China}
  7. \vspace{5mm}\noindent
  8. Email addresses:\\
  9. Liu xx: xxx@163.com; ORCID: xxx\\
  10. Yang xx: xxx@163.com\\
  11. Huang xx: xxx@163.com
  12. \vspace{2mm}\noindent
  13. $\ast$ Corresponding author. \\
  14. $\dag$ Co-first author.
  15. \end{titlepage}
  • \noindent:取消首行缩进
  • \textbf{}:加粗
  • \fontsize{12}{15}:字体12,行间距15,但是需要配合使用\selectfont,否则行间距无效。即\fontsize{12}{15}\selectfont

1)常用的代码

  1. \documentclass[]{interact} % 导入自己的样式,如果没有可以使用\documentclass[]{article}
  2. \begin{document}
  3. \begin{titlepage}
  4. \noindent\fontsize{12}{15}\selectfont\textbf{Convolutional transformer attention network}
  5. \vspace{5mm} % 垂直间距
  6. \noindent\small{Liu xx\textsuperscript{a}, Yang xx\textsuperscript{a,$\ast$} and Huang xx\textsuperscript{a}}
  7. \vspace{2mm}
  8. \noindent\small{\textsuperscript{a}University, city, China}
  9. \vspace{5mm}\noindent
  10. Email addresses:\\
  11. Liu xx: xxx@163.com; ORCID: xxx\\
  12. Yang xx: xxx@163.com\\
  13. Huang xx: xxx@163.com
  14. \vspace{2mm}\noindent
  15. $\ast$ Corresponding author. \\
  16. $\dag$ Co-first author.
  17. \end{titlepage}
  18. \end{document}

添加居中:

  1. \documentclass[]{interact} % 导入自己的样式,如果没有可以使用\documentclass[]{article}
  2. \begin{document}
  3. \begin{titlepage}
  4. \begin{center}
  5. \noindent\fontsize{12}{15}\selectfont\textbf{Convolutional transformer attention network}
  6. \vspace{5mm} % 垂直间距
  7. \noindent\small{Liu xx\textsuperscript{a}, Yang xx\textsuperscript{a,$\ast$} and Huang xx\textsuperscript{a}}
  8. \vspace{2mm}
  9. \noindent\small{\textsuperscript{a}University, city, China}
  10. \vspace{5mm}\noindent
  11. Email addresses:\\
  12. Liu xx: xxx@163.com; ORCID: xxx\\
  13. Yang xx: xxx@163.com\\
  14. Huang xx: xxx@163.com
  15. \vspace{2mm}\noindent
  16. $\ast$ Corresponding author. \\
  17. $\dag$ Co-first author.
  18. \end{center}
  19. \end{titlepage}
  20. \end{document}

设置标题与上部页边距增大:

  1. \documentclass[]{interact} % 导入自己的样式,如果没有可以使用\documentclass[]{article}
  2. \begin{document}
  3. \begin{titlepage}
  4. \vspace*{\fill} % \vspace上下段落之间空的距离,{}可填写pt,cm,mm,in等单位
  5. % \vsapce*{}中*表示在一页开始就空距离
  6. \begin{center}
  7. \noindent\fontsize{12}{15}\selectfont\textbf{Convolutional transformer attention network}
  8. \vspace{5mm} % 垂直间距
  9. \noindent\small{Liu xx\textsuperscript{a}, Yang xx\textsuperscript{a,$\ast$} and Huang xx\textsuperscript{a}}
  10. \vspace{2mm}
  11. \noindent\small{\textsuperscript{a}University, city, China}
  12. \vspace{5mm}\noindent
  13. Email addresses:\\
  14. Liu xx: xxx@163.com; ORCID: xxx\\
  15. Yang xx: xxx@163.com\\
  16. Huang xx: xxx@163.com
  17. \vspace{2mm}\noindent
  18. $\ast$ Corresponding author. \\
  19. $\dag$ Co-first author.
  20. \end{center}
  21. \end{titlepage}
  22. \end{document}

2)添加脚注

使用该命令:\footnote[1]{This is the explanation.} ,其中[]中可以自定义标注数(只能是数字),不自定义则默认逐个加1显示。

下面示例是自定义其他字符的:

  1. \documentclass[]{interact} % 导入自己的样式,如果没有可以使用\documentclass[]{article}
  2. \begin{document}
  3. \begin{titlepage}
  4. \begin{center}
  5. \noindent\fontsize{12}{15}\selectfont\textbf{Convolutional transformer attention network}
  6. \vspace{5mm} % 垂直间距
  7. \noindent\small{Liu xx\textsuperscript{a}, Yang xx\textsuperscript{a,$\ast$} and Huang xx\textsuperscript{a,}\renewcommand*{\thefootnote}{\dag}\footnote{This is the explanation.}}
  8. \vspace{2mm}
  9. \noindent\small{\textsuperscript{a}University, city, China}
  10. \vspace{5mm}\noindent
  11. Email addresses:\\
  12. Liu xx: xxx@163.com; ORCID: xxx\\
  13. Yang xx: xxx@163.com\\
  14. Huang xx: xxx@163.com
  15. \end{center}
  16. \end{titlepage}
  17. \end{document}

二、修改文字颜色和文字高亮

首先导入必要的宏包:

\usepackage{xcolor}  %也可以使用{color}宏包,但是颜色库里面颜色较少,使用xcolor会更好

1)设置文本的颜色

一般文本颜色选用黑色和红色,标红采用red

  1. \textcolor{red}{abcd} %1.{}里面的文字颜色
  2. {\color{blue} abcd} %2.整体需要打括号,若不打大括号的话,{blue}后面均为蓝色

2)添加文本高亮

  1. \colorbox{-blue}{abcd}
  2. \colorbox{yellow}{abcd}
  3. \colorbox{green}{\color{red} abcd} % 底色+字体颜色
  4. \colorbox{green}{\color{black} abcd} % 底色+字体颜色

3)给文本添加有颜色的方框

  1. \fcolorbox{red}{yellow}{\color{red}abcd} %框色+底色+红色文本
  2. \fcolorbox{red}{white}{abcd} %框色+底色+默认文本颜色为黑色

整体效果

  1. \documentclass[]{article}
  2. \usepackage{xcolor}
  3. \begin{document}
  4. \textcolor{red}{abcd} %1.{}里面的文字颜色 (方法一)
  5. {\color{blue} abcd} %2.整体需要打括号,若不打大括号的话,{blue}后面均为蓝色 (方法二)
  6. \colorbox{-blue}{abcd}
  7. \colorbox{yellow}{abcd}
  8. \colorbox{green}{\color{red} abcd} % 底色+字体颜色
  9. \colorbox{green}{\color{black} abcd} % 底色+字体颜色
  10. \fcolorbox{red}{yellow}{\color{red}abcd} %框色+底色+红色文本
  11. \fcolorbox{red}{white}{abcd} %框色+底色+默认文本颜色为黑色
  12. \end{document}

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号