Latex个人使用笔记

由于是个人的一些使用心得没有进行系统性普适性的整理,但是我认为对于各位有碰到相同问题的还是有借鉴的意义。
1.改了tex文件pdf没改变
查看是否改成了宏文件
2.! Package inputenc Error: Unicode character , (U+FF0C)
(inputenc) not set up for use with LaTeX.
有不可见的或不可编译的错误字符,常常发生在外源的复制黏贴之后。
解决:把显示错误的该行删掉
3.怎么打出绝对值符号absolute value

\usepackage{mathtools}

\DeclarePairedDelimiter\abs{\lvert}{\rvert}%
\DeclarePairedDelimiter\norm{\lVert}{\rVert}%

% Swap the definition of \abs* and \norm*, so that \abs
% and \norm resizes the size of the brackets, and the 
% starred version does not.
\makeatletter
\let\oldabs\abs
\def\abs{\@ifstar{\oldabs}{\oldabs*}}
%
\let\oldnorm\norm
\def\norm{\@ifstar{\oldnorm}{\oldnorm*}}
\makeatother

4.belongs to符号:
\in is member of
\ni owns
\infty infinity
\leftarrow
5.垂直的和水平的空格

\vspace{5mm} %5mm vertical space
\hspace{1cm} 
%如果编译完没有效果,注意只有在\par里会生效

6.illegal unit of measure (pt inserted)
出现在引用文献的声明中,[1]的形式跟设置字体大小冲突了:
把[1]用$$声明
7.texstduio没有响应
有道词典和texstduio不兼容。运行texstudio时关闭有道词典或者使用texwork代替。
8.在文本中插入算法:

\usepackage{algorithmic} or
\usepackage[options ]{algorithm2e}

https://www.overleaf.com/learn/latex/algorithms
9.I can’t write on file DP.pdf'. \end{titlepage} 该pdf文件同时在其他的外部pdf阅读器中打开了,导致文件不可写入。 关闭外部阅读器解决 10. section 前面有数字编号标识如何去掉 section *{title}即可 11.Filealgoritmic.sty’ not found. \makeatletter
windows系统,找到MiKTex console->package->找到相应的宏包->安装
或者是MikTex package management应用里面找。
12.Something’s wrong–perhaps a missing \item. \end {algorithmic}
因为声明里面没有item出现的错误
在声明里面添加实际内容即可
13.使图片正好在文字下方:
\begin{figure}[h]
加[h]
14.插入code block:
\begin{lstlisting}
15.插入固定长度表格
\usepackage{array}
\begin{center}
\begin{tabular}{ | m{5em} | m{1cm}| m{1cm} | }
\hline
cell1 dummy text dummy text dummy text& cell2 & cell3 \
\hline
cell1 dummy text dummy text dummy text & cell5 & cell6 \
\hline
cell7 & cell8 & cell9 \
\hline
\end{tabular}
\end{center}
16.插入参考文献
\begin{thebibliography}{9}
\bibitem{CLRS}
Cormen, Thomas; Leiserson, Charles; Rivest, Ronald; Stein, Clifford
\textit{Introduction to Algorithms (Second ed.),}.
MIT Press and McGraw-Hill, 2001, pp. 589–623, ISBN 0-262-03293-7. Chapter 22: Elementary Graph algorithms.

\bibitem{Ajw} 
D. Ajwani.
\textit{implementation and experimental study of external memory BFS algorithms}. 

M.S thesis, Univ. Saarland. 2005.

\bibitem{knuthwebsite} 
Knuth: Computers and Typesetting,
\\\texttt{http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html}

\end{thebibliography}
17. line out of margin
在超出的那一行前面加上 \sloppy

18.Error:Paragraph ended before \Gin@iii was complete
Use \usepackage{graphicx} instead of \usepackage{graphics}.

你可能感兴趣的:(latex)