参考资料:

  https://blog.csdn.net/yq_forever/article/details/84023896

  行距:

\begin{spacing}{1.5}
\end{spacing}

  通过调节中括号内数值来调节行距。

  

  字体大小:

Latex中的字体一共有这些种:

\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge

一般来说默认的是\normalsize.我们可以在开始重新定义默认字体大小:

\documnetclass[12pt]{article}

修改12pt的值即可,Latex提供了三种大小:10/11/12pt

或者直接定义文字字号:

\fontsize{5.0pt}{\baselineskip}\selectfont 文字

修改0.5至你想要的数字。

   

  字体:

\setmainfont{Times New Roman}
\setCJKmainfont{Songti SC}
\setCJKfamilyfont{song}{Songti SC}

  使用中文一般需要导入XeCJK包,并且使用电脑已经安装的字体。(注意:选择系统内有粗体的字体为佳)

 

  页边距:

  使用geometry这个包

\usepackage[left=3cm, right=3cm, lines=45, top=0.8in, bottom=1.0in]{geometry}

相关文章:

  • 2022-01-02
  • 2021-05-22
  • 2021-08-29
  • 2022-02-07
  • 2021-10-07
  • 2022-12-23
  • 2021-06-24
  • 2021-06-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
  • 2021-09-20
  • 2021-08-05
  • 2021-04-03
相关资源
相似解决方案