美文网首页
6-7 添加注释 设置粗体,斜体和下划线

6-7 添加注释 设置粗体,斜体和下划线

作者: 亦是旅人呐 | 来源:发表于2021-10-04 10:26 被阅读0次

    添加注释

    与您正在编写的任何代码一样,包含注释通常是有用的。注释是可以包含在文档中的文本片段,不会被打印出来,不会以任何方式影响文档。它们对于组织工作、做笔记或在调试时注释 行/节 很有用。要在LaTeX中进行注释,只需在一行的开头写一个%符号,如下图所示:

    \begin{document}
    
    \maketitle
    
    We have now added a title, author and date to our first \LaTeX{} document!
    
    % This line here is a comment. It will not be printed in the document.
    
    \end{document}
    

    粗体、斜体和下划线

    现在我们将看一些简单的文本格式化命令。

    • 粗体:在LaTeX中粗体文本是用\textbf{…}命令。
    • 斜体:在LaTeX中斜体文本是用\ texttit{…}命令。
    • 下划线:在LaTeX中,带下划线的文本用\underline{…}命令。

    下面是这些方法的一个例子:

    Some of the \textbf{greatest}
    discoveries in \underline{science} 
    were made by \textbf{\textit{accident}}.
    

    另一个非常有用的命令是\emph{…}命令。实际上,\emph命令对其参数的作用取决于上下文--在正常文本中,强调的文本是斜体的,但如果在斜体文本中使用,这种行为是相反的--参见下面的示例:

    Some of the greatest \emph{discoveries} 
    in science 
    were made by accident.
    
    \textit{Some of the greatest \emph{discoveries} 
    in science 
    were made by accident.}
    
    \textbf{Some of the greatest \emph{discoveries} 
    in science 
    were made by accident.}
    

    相关文章

      网友评论

          本文标题:6-7 添加注释 设置粗体,斜体和下划线

          本文链接:https://www.haomeiwen.com/subject/ebqzgltx.html