如何将所有Latex软件包下载到我的ubuntu系统?

时间:2017-04-18 06:53:27

标签: latex

我在我的系统上安装了LaTeX python包,并且能够编译小的latex文件。如何自动将CTAN中的所有现有软件包安装到我的电脑上?

其他在线Latex编辑器如何编译任何类型的乳胶文件?他们如何获得所需的包裹?

请提出任何建议......

1 个答案:

答案 0 :(得分:1)

在ubuntu本地计算机上安装了followig命令

var pushingViewController = false

//...

func pushProfileController(of: String) {
    if self.pushingViewController == false {
        self.pushingViewController = true
        DispatchQueue.main.async {
            let newController = NewController()
            newController.passedData = of //passedData is a string
            self.navigationController?.pushViewController(newController, animated: true)
        }

        self.pushingViewController = false
    }
}

let description: ActiveLabel = {

    let entireDescView = ActiveLabel()

    //set properties of controls container view

    //recognize (@hotel_x) and be able to push controller of 'hotel_x'
    entireDescView.customize({ (entireDescView) in
        entireDescView.enabledTypes = [.mention]
        entireDescView.mentionColor = UIColor(red: 25/255, green: 153/255, blue: 1, alpha: 1)
        entireDescView.handleMentionTap { username in
            self.pushProfileController(of: username) //also tried ThisClass().pushProfileController(of: username) which didn't push the controller either
        }
    })

    return entireDescView

}()

同样适用于在线安装,您可以这样做

sudo apt-get install texlive texstudio # for latex 
sudo apt-get install texlive-full  # for full texlive packages
sudo apt-get install xzdec        # for tlmgr

这将在您的服务器上安装latex包