1. 程式人生 > >TeXstudio 2.12.12釋出,如何在Ubuntu中安裝它

TeXstudio 2.12.12釋出,如何在Ubuntu中安裝它

TeXstudio 2.12.12釋出,如何在Ubuntu中安裝它

TeXstudio 2.12.12釋出亮點

  • 改進巨集處理,提供從github.com/texstudio-org/texstudio-macro直接下載巨集的gui
  • 新增模糊完成模式
  • 新增cwls
  • 修復角色出現逆序的罕見錯誤
  • bug修復

TeXstudio 2.12.12釋出,如何在Ubuntu中安裝它

通過PPA在Ubuntu中安裝TeXstudio 2.12.12:

有一個PPA儲存庫包含所有當前Ubuntu版本和衍生版的最新軟體包。

1.通過Ctrl + Alt + T鍵盤快捷鍵或通過軟體啟動器搜尋“終端”來開啟終端。 開啟時,執行命令:

sudo add-apt-repository ppa:sunderme/texstudio

從sudo提示符鍵入使用者密碼(沒有星號反饋),然後按Enter鍵新增PPA。

2.如果您已經從Ubuntu軟體安裝了TeXstudio,請在升級軟體之前刪除texstudio-doc軟體包:

sudo apt-get remove texstudio-d*

3.新增PPA後,您可以通過軟體更新程序升級編輯器或在終端中執行命令以安裝或升級軟體:

sudo apt-get update && sudo apt-get install texstudio

解除安裝:

要刪除LaTeX編輯器,請在終端中執行命令:

sudo apt-get remove --autoremove texstudio

並轉到軟體和更新 - >其他軟體以刪除PPA儲存庫。

texStudio學習

%表示後面這句話是註釋

被美元符包圍的是數學公式,其他是文字。$單dollar模式表示行內數學公式,$$雙dollar表示另起一行的數學公式。

%導言區

\documentclass{article}%book,report,letter

\title{My First Document}
\author{jie xie}
\date{\today}

%正文區(文稿區)
\begin{document}
\maketitle
hello world!
Let $f(x)$ be defined by the formula$f(x)=3x^2+x-1$

\end{document} 

  • 建立一個新命令\newcommand\degree{^\circ}
  • \begin{equation}
    AB^2=BC^2+AC^2
    \end{equation}          此處的equation用於產生帶編號的行間公式。
  • win+R開啟,輸入cmd,輸入texdoc ctex命令,可以檢視ctex的巨集包。
  • \title{\heiti 淺談勾股定理}
    \author{\kaishu  某某}      表明黑體字和楷書字型

texstudio 的配置檔案在~/.config/texstudio/texstudio.ini 
其中配置檔案包括如下幾部分

  [General]
  ……
  [texmaker]
  ……
  [version]
  ……
  [formats]
  ……

其中[texmaker]部分是具體的tex配置,可以看一下。而要更改的主題部分需要在[formats]部分進行修改。