Latex 常常見到的問題和解決方法

Latex 常常見到的問題和解決方法html

2017-04-10  22:05:48 linux

【資源下載】git

1). Texlive 2019 下載地址:http://mirror.ctan.org/systems/texlive/Images/texlive2019.iso github

2). AweSome LaTex: https://github.com/egeerardyn/awesome-LaTeX bash

3). TexMaker (Free cross-platform LaTeX editor since 2003 (Windows, MacOsX, Linux)):  https://www.xm1math.net/texmaker/ ide

 

 

1. IEEE 模板添加 通訊做者的時候,老是沒法正常顯示(腳註沒法正常顯示):ui

  由於 IEEE默認是屏蔽了這個功能,須要在編輯的 .tex 文件中,添加這麼一句話:spa

  \IEEEoverridecommandlockouts .net

  

 

  而後就是:3d

  

  生成的 pdf文件就是正常的了:

  

 


2. 參考文獻引用過程當中,常常遇到 & 符號的問題,例如:

 

@article{Wang2016Person,
  title={Person Re-Identification by Discriminative Selection in Video Ranking},
  author={Wang, Taiqing and Gong, Shaogang and Zhu, Xiatian and Wang, Shengjin},
  journal={IEEE Transactions on Pattern Analysis & Machine Intelligence},
  volume={38},
  number={12},
  pages={1-1},
  year={2016},
}

 

  這裏面的 & 符號在latex 中是沒法直接編譯過去的,須要用轉義字符 \& 或者直接將其刪除

  另外一個須要注意的地方是:latex調用 .bib 參考文獻的時候,須要四個步驟: 

  ==>>  pdflatex, bibtex, pdflatex, pdflatex 

  這樣子,才能夠在生成的 pdf 文件中,獲得正確的參考文獻顯示。

 

3. The Textlive in linux operation, you  can install textlive 2017 and texmaker from software center. 

$ sudo mount -a /path/to/your/textlive/ /home/wangxiao/textlive/ 
$ cd /home/wangxiao/textlive/ 
$ sudo ./install-tl -gui 

  

## seting the environment: 

sudo gedit ~/.bashrc

and add the following lines into your file. 

export MANPATH=${MANPATH}:/usr/local/texlive/2016/texmf-dist/doc/man
export INFOPATH=${INFOPATH}:/usr/local/texlive/2016/texmf-dist/doc/info
export PATH=${PATH}:/usr/local/texlive/2016/bin/x86_64-linux

 

 

Configure your texmaker according to above figures. 

 

 4. Latex 排版帶有大括號 {} 公式的方法:

$$ f(x)=\left\{ \begin{aligned} x & = & \cos(t) \\ y & = & \sin(t) \\ z & = & \frac xy \end{aligned} \right. $$ $$ F^{HLLC}=\left\{ \begin{array}{rcl} F_L &      & {0      < S_L}\\ F^*_L     &      & {S_L \leq 0 < S_M}\\ F^*_R     &      & {S_M \leq 0 < S_R}\\ F_R &      & {S_R \leq 0} \end{array} \right. $$ $$f(x)= \begin{cases} 0& \text{x=0}\\ 1& \text{x!=0} \end{cases}$$ 

效果分別爲:

5. 左對齊:

 \begin{flushleft}...\end{flushleft}

6.  參考文獻中 做者的名字,變爲橫線(參考文獻 77):

這是由於:在 bib 文件中,引用了多篇同一個做者的文章,而且這些文獻在 LaTeX 文件中,處於很接近的位置,就很是會可能出現上述的狀況。

 

解決方法就是:把引用的文獻位置作相應的調整。

而後再看這個參考文獻,就變的正常額:

 

7. 多行公式的編輯:

\begin{flalign} &~~~~\hat{x_t} = W {x_t}& \\ &~~~~f'_t = \delta (W_f x_t + b_f)& \\ &~~~~r_t = \delta (W_r x_t + b_r) \\ &~~~~c_t = f_t \odot c_{t-1} + (1-f_t) \odot \hat{x_t} \\ &~~~~h_t = r_t \odot g(c_t) + (1-r_t) \odot x_t \end{flalign}

 

 

8. WinEdt 10.3 下載與激活:

WinEdt 10.3 註冊激活
下載安裝:http://www.winedt.com/download.html

選擇WinEdt 10.3 (64-bit) [Build: 20180507] (winedt103-64.exe 9.2 MB)下載,安裝。

安裝完成後,運行WinEdt ,依次打開Help >> Register WinEdt… 在彈出的對話框裏包含Name,Code,Date。對應填入如下信息:

Name:Cracker TeCHiScy
Code:1130140925535334280
Date:不用填
點擊OK保存

參考
一、http://www.52pojie.cn/thread-595351-1-1.html
二、https://blog.csdn.net/icp_09002463/article/details/80268387
---------------------
做者:Agzs
來源:CSDN
原文:https://blog.csdn.net/code_segment/article/details/82348626
版權聲明:本文爲博主原創文章,轉載請附上博文連接!

 

9. CTEX 添加 eps 圖像,而且正常執行的姿式是:https://blog.csdn.net/garfielder007/article/details/51628604 

\usepackage{graphicx}

\usepackage{epstopdf}

若是是eps的圖形, 編譯過程是  latex, dvips, ps2pdf.  
爲了可以讓參考文獻正常顯示,標準操做流程是:latex, bibtex, latex, dvips, ps2pdf

若是是pdf jpg png圖形, 編譯過程是  pdflatex .
 
 
10. ! LaTeX Error: File `newtxmath.sty' not found.

  ! LaTeX Error: File `newtxmath.sty' not found.

 

  Type X to quit or <RETURN> to proceed,

  or enter new name. (Default extension: sty) 

 

 

我當時貌似是從新安裝了一遍 LaTeX 才搞定這個問題的。

 

 

 

 

 

 

11. 參考文獻的添加和使用:

 

添加宏包:\usepackage{natbib}
{
\small
\bibliographystyle{plain} 
\bibliography{reference} 
}
 
 
12. arg max 編輯:
\begin{equation}
\label{trajSelection}
\hat{T_i} = \mathop{\arg\max}_{T_i^j} \sum_{j=1}^{N} S(T_0, T^j_i). 
\end{equation}
相關文章
相關標籤/搜索