美文网首页Latex
Latex 常见错误

Latex 常见错误

作者: Yao_Fairytale | 来源:发表于2018-09-19 12:08 被阅读0次
  1. You might wish to put this between a pair of '{}'
    指代不明确的部分要用大括号括起来
    例如
\sum_if_i^{(n)}=0 %错误
{\sum_i}f_i^{(n)}=0 %正确 
\left( \frac{c-u}{a}\right)^2%错误
{\left( \frac{c-u}{a}\right)}^2%正确
  1. Non-breaking space ('~') should have been used.
    这种引用命令前使用~
Equation \eqref{eqn:1.1} %错误
Figure \ref{fig:1.1}%错误
said by ** \cite{paper:1.1}%错误
Equation~\eqref{eqn:1.1}%正确 
Figure~\ref{fig:1.1}%正确
said by **~\cite{paper:1.1}%正确
  1. Vertical rules in tables are ugly
    丑陋的表格,添加宏包 \usepackage{array,hhline},使用\hhline代替\hline。产生错误的原因是表格竖线在Tex里面不容易生成,且竖线在表格中越来越不流行。使用hline的竖线容易被隔断,不好看。
    或者使用 \usepackage{booktabs} ,这个生成的表格比较好看。里面严禁使用竖线

示例:

\documentclass[]{article}
\usepackage{booktabs} 
\usepackage{array,hhline}
\begin{document}
%----------------------------------------------
%错误1
%----------------------------------------------
\begin{table}
\begin{tabular}{|c|c|c|}
\hline
State&Remainder&Answer\\
\hline \hline
Start&000000&000000\\ \hline
2& & \\ \hline
1& & \\ \hline
0& & \\ \hline
\end{tabular}\end{table}
%----------------------------------------------
%错误2
%----------------------------------------------
\begin{table}
\begin{tabular}{|c|c|c|}
\hhline{|---|}
State&Remainder&Answer\\
\hhline{|===|}
Start&000000&000000\\ \hhline{|---|}
2& & \\ \hhline{|---|}
1& & \\ \hhline{|---|}
0& & \\ \hhline{|---|}
\end{tabular}\end{table}
%----------------------------------------------
%错误3
%----------------------------------------------

\begin{table}
\begin{tabular}{|c|c|c|}
\toprule  %添加表格头部粗线
State&Remainder&Answer\\
\midrule  %添加表格中横线
\midrule
Start&000000&000000\\\midrule
2& & \\ \midrule
1& & \\ \midrule
0& & \\ 
\bottomrule %添加表格底部粗线
\end{tabular}
\end{table}
%----------------------------------------------
%正确示范
%----------------------------------------------
\begin{table}
\begin{tabular}{ccc}
\toprule  %添加表格头部粗线
State&Remainder&Answer\\
\midrule\midrule  %添加表格中横线
Start&000000&000000\\\midrule
2& & \\ \midrule
1& & \\ \midrule
0& & \\ 
\bottomrule %添加表格底部粗线
\end{tabular}
\end{table}
\end{document}

效果图

效果图

相关文章

  • Latex 常见错误

    You might wish to put this between a pair of '{}'指代不明确的部分...

  • Latex错误集

    看到一种解决办法,是把除了tex文件的其他文件都删除再重新编译。试过无效,后来仔细查看,发现是两个\label的名...

  • Latex编译错误

    1、在Windows上可以运行的LaTeX文件放到Mac上报错,Package inputenc Error: U...

  • LaTex奇怪的错误

    突然有一天,LaTeX编译时总冒出以下错误: 即: 看命令提示是这样的: 百思不得其解!!!Google了好半天,...

  • LaTex常见公式总结

    LaTex常见公式总结 常用总结 下标 a_{ij} 上标 a^{ij} 根号 \sqrt{x} 三次根号 \...

  • 常见错误

    1、spring默认只会扫描resources下的属性文件,而对于java包下的属性文件会被忽略。如果想要编译ja...

  • 常见错误

    错误1 导致原因 解决办法 错误二: library not found for - 参考 解决方法:获取 库...

  • 常见错误

    微信自定义菜单 EasyWechat :4.0最新版本 1.微信公众号配置网页授权域名微信报无法访问xxx.com...

  • 常见错误

    Test is not an annotation type描述:在使用junit进行单元测试时,在方法前声明@T...

  • 常见错误

    1、phpmyadmin 登录失败#1045无法登录MySQL服务器解决:(两种情况) 配置文件权限错误:修改ph...

网友评论

    本文标题:Latex 常见错误

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