字体篇:

\usepackage{color}
{\color{red}{Hello World!}}

 

表格篇:

1.resizebox

\begin{table*}[!htb]
\centering
\caption{Instruction of User Study in RQ1 \textcolor{red}{consider cutting this table if need space}}
\label{tab:instruction}
\resizebox{17.6cm}{!}{
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{1}{|c|}{Relevance} & \multicolumn{1}{c|}{Usefulness} & \multicolumn{1}{c|}{Diversity} \\ \hline
\begin{tabular}[c]{@{}l@{}}How relevant is the generated summary to \\ the query?\\ Options:\\ (1) Highly Irrelevant\\ the participant finds that there is absolutely \\ nothing in common between the query and summary.\\ (2) Irrelevant\\ the participant finds that the query and \\ summary have little in common.\\ (3) Neutral\\ the participant finds that the query and \\ summary are marginally relevant.\\ (4) Relevant\\ the participant finds that parts of the\\ summary are relevant with the query.\\ (5) Highly Relevant\\ the participant finds that most of thesummary are\\ relevant with the query.\end{tabular} & \begin{tabular}[c]{@{}l@{}}How useful is the generated summary for \\ follow-up search?\\ Options:\\ (1) Highly Useless\\ the participant finds that the generated \\ summary does not help with follow-up search.\\ (2) Useless\\ the participant finds that the generated summary\\ does little help with follow-up search.\\ (3) Neutral\\ the participant finds that the generated summary\\ is marginally useful for follow-up search.\\ (4) Useful\\ the participant finds that the generated summary\\ provides a few of useful clues for follow-up \\ search.\\ (5) Highly Useful\\ the participant finds that the generated summary\\ provides many useful clues for follow-up search.\end{tabular} & \begin{tabular}[c]{@{}l@{}}How diverse is the generated summary? \\ Options:\\ (1) Highly Identical\\ the participant finds that the generated summary\\ talks about only one minor aspect.\\ (2) Identical\\ the participant finds that the generated summary\\ talks about only one main aspect.\\ (3) Neutral\\ the participant finds that there is no need to\\ consider diversity for the generated summary.\\ (4) Diverse\\ the participant finds that the generated summary\\ talks about at least two minor aspect but main\\ aspects are not mentioned.\\ (5) Highly Diverse\\ the participant finds that the generated summary\\ talks about most of main aspects.\end{tabular} \\ \hline
\end{tabular}
}
\end{table*}

插入超链接:

\usepackage[colorlinks,linkcolor=red]{hyperref}
\href{input link here}{text}

公式篇:

$offer = surface \times force(now)$

$\mathit{offer = surface \times force(now)}$

【Latex】常用工具包的更多相关文章

  1. CTEX - 在线文档 - TeX/LaTeX 常用宏包

    CTEX - 在线文档 - TeX/LaTeX 常用宏包       页面与章节标题式样   浮动对象及标题设计   生成与插入图形   表格与列表   目录与索引   参考文献   数学与化学公式 ...

  2. latex 常用小结

    在写论文,甚至有些课程的报告的时候,latex是常用的工具.这篇博文简单的记录了latex常用的一些内容. 1 基本模块 没用过latex的读者,最想问的问题莫过于latex的 “hello worl ...

  3. Rudiments 0.42 发布,C++ 常用工具包 - 开源中国社区

    Rudiments 0.42 发布,C++ 常用工具包 - 开源中国社区 Rudiments 0.42 发布,C++ 常用工具包

  4. Latex常用数学符号(转)

    http://blog.sina.com.cn/s/blog_642075770100u0np.html Latex常用数学符号(转) 1.指数和下标可以用^和_后加相应字符来实现.比如: 2.平方根 ...

  5. LaTeX技巧24:LaTeX常用命令集锦

    \hyphenation{word list} %断字命令:\showthe\topmargin %显示某个参数的数值或者内容: 在tex编译过程中出现行溢出(overflow hbox)是由于断字程 ...

  6. LaTeX常用数学符号表示方法

    转自:http://www.mohu.org/info/symbols/symbols.htm 常用数学符号的 LaTeX 表示方法 (以下内容主要摘自“一份不太简短的 LATEX2e 介绍”) 1. ...

  7. LaTeX常用数学符号

    之前在写博客做笔记时经常会在Word或WPS里写好数学公式再截图上传,一直觉得这样很low.现在实在是不想再去截图上传了,于是决定开始学一下LaTeX.在博客园中使用数学公式的设置可以参考在博客园使用 ...

  8. latex常用符号

    希腊字母 字母名称 大写 小写 大写latex 小写latex alpha A \(\alpha\) \alpha beta B \(\beta\) \beta gamma \(\Gamma\) \( ...

  9. latex常用命令

    首行不缩进:在顶格的段落前面加上 \noindent 增加空格:\vspace{长度}:精确增加垂直距离,\hspace{长度} 与 \addvspace{长度}:增加高度长度的垂直空间 在公式的上. ...

随机推荐

  1. c++以代理的方式来实现接口化编程

      假如你项目代码本身已经实现了很多的实体类,但并未采用接口,可以考虑以这种方式来实现接口化编程 struct ITest { virtual void Test()=0; }; class CTes ...

  2. 【docker】docker限制日志文件大小的方法+查看日志文件的方法

    一.docker日志文件的方法 除了 docker logs -f 容器ID/容器名 这个方法以外. 在linux上,一般docker的日志文件存储在/var/lib/docker/container ...

  3. maven 引入外部jar包的几种方式(转)

    原文链接: maven 引入外部jar包的几种方式 方式1:dependency 本地jar包 <dependency> <groupId>com.hope.cloud< ...

  4. HTML:Browser 对象

    ylbtech-HTML:Browser 对象 1.返回顶部 1. Window 对象 Window 对象表示浏览器中打开的窗口. 如果文档包含框架(frame 或 iframe 标签),浏览器会为 ...

  5. 独热编码和dummy编码的作用

    参考这篇文章: https://www.cnblogs.com/lianyingteng/p/7792693.html 总结:我们使用one-hot编码时,通常我们的模型不加bias项 或者 加上bi ...

  6. JavaScript变量作用域(Variable Scope)和闭包(closure)的基础知识

    在这篇文章中,我会试图讲解JavaScript变量的作用域和声明提升,以及许多隐隐藏的陷阱.为了确保我们不会碰到不可预见的问题,我们必须真正理解这些概念. 基本定义 作用范围是个“木桶”,里面装着变量 ...

  7. 常见的机器学习&数据挖掘知识点

    原文:http://blog.csdn.net/heyongluoyao8/article/details/47840255 常见的机器学习&数据挖掘知识点 转载请说明出处 Basis(基础) ...

  8. [JS]两个常用的取随机整数的函数

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/ ...

  9. PL/SQL学习笔记之存储过程

    一:PL/SQL的两种子程序 子程序:子程序是执行一个特定功能.任务的程序模块.PL/SQL中有两种子程序:函数  和  过程. 函数:主要用于计算并返回一个值. 过程:没有直接返回值,主要用于执行操 ...

  10. HTML中input type="text"和type="password" 显示的长度不一样

    在CSS里边加上input {width:100px;}能把所有input标签的控件宽度改为相同! 加上这个属性 style="width:180px;"