How to install miktex for latex in ubuntu 17.04?
How do I Install miktex package in ubuntu 17.04?
I had downloaded a file of miktex but i don't know how to install with it..
I am new to ubuntu and i have a project to complete in latex for which miktex packages are needed.
So please help me with any suggestion to install it.
software-installation
add a comment |
How do I Install miktex package in ubuntu 17.04?
I had downloaded a file of miktex but i don't know how to install with it..
I am new to ubuntu and i have a project to complete in latex for which miktex packages are needed.
So please help me with any suggestion to install it.
software-installation
1
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06
add a comment |
How do I Install miktex package in ubuntu 17.04?
I had downloaded a file of miktex but i don't know how to install with it..
I am new to ubuntu and i have a project to complete in latex for which miktex packages are needed.
So please help me with any suggestion to install it.
software-installation
How do I Install miktex package in ubuntu 17.04?
I had downloaded a file of miktex but i don't know how to install with it..
I am new to ubuntu and i have a project to complete in latex for which miktex packages are needed.
So please help me with any suggestion to install it.
software-installation
software-installation
asked Jul 3 '17 at 7:47
SAMSAM
112
112
1
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06
add a comment |
1
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06
1
1
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06
add a comment |
2 Answers
2
active
oldest
votes
You need to first register the repository which contains the MiKTeX installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
there are some dependencies issues(This problem occurs only in ubuntu 17.04) when you try to install directly. Hence you have to manually download the libraries (deb files) after you download them from the following sites (in my case libhunspell-1.3, libpng12-0) if you have more dependencies you can search and install from this link
https://packages.ubuntu.com/xenial/amd64/libhunspell-1.3-0/download
https://packages.ubuntu.com/xenial/amd64/libpng12-0/download
then use dpkg -i "path to the file" to manually install all the files
then apt install miktex
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
add a comment |
From the MiKTeX website:
How to install MiKTeX
Ubuntu 16.04, Linux Mint 18 or higher (64-bit)
You need to first register the repository which contains the MiKTeX
installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
Then you can install MiKTeX:
sudo apt-get install miktex
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f931485%2fhow-to-install-miktex-for-latex-in-ubuntu-17-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to first register the repository which contains the MiKTeX installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
there are some dependencies issues(This problem occurs only in ubuntu 17.04) when you try to install directly. Hence you have to manually download the libraries (deb files) after you download them from the following sites (in my case libhunspell-1.3, libpng12-0) if you have more dependencies you can search and install from this link
https://packages.ubuntu.com/xenial/amd64/libhunspell-1.3-0/download
https://packages.ubuntu.com/xenial/amd64/libpng12-0/download
then use dpkg -i "path to the file" to manually install all the files
then apt install miktex
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
add a comment |
You need to first register the repository which contains the MiKTeX installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
there are some dependencies issues(This problem occurs only in ubuntu 17.04) when you try to install directly. Hence you have to manually download the libraries (deb files) after you download them from the following sites (in my case libhunspell-1.3, libpng12-0) if you have more dependencies you can search and install from this link
https://packages.ubuntu.com/xenial/amd64/libhunspell-1.3-0/download
https://packages.ubuntu.com/xenial/amd64/libpng12-0/download
then use dpkg -i "path to the file" to manually install all the files
then apt install miktex
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
add a comment |
You need to first register the repository which contains the MiKTeX installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
there are some dependencies issues(This problem occurs only in ubuntu 17.04) when you try to install directly. Hence you have to manually download the libraries (deb files) after you download them from the following sites (in my case libhunspell-1.3, libpng12-0) if you have more dependencies you can search and install from this link
https://packages.ubuntu.com/xenial/amd64/libhunspell-1.3-0/download
https://packages.ubuntu.com/xenial/amd64/libpng12-0/download
then use dpkg -i "path to the file" to manually install all the files
then apt install miktex
You need to first register the repository which contains the MiKTeX installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
there are some dependencies issues(This problem occurs only in ubuntu 17.04) when you try to install directly. Hence you have to manually download the libraries (deb files) after you download them from the following sites (in my case libhunspell-1.3, libpng12-0) if you have more dependencies you can search and install from this link
https://packages.ubuntu.com/xenial/amd64/libhunspell-1.3-0/download
https://packages.ubuntu.com/xenial/amd64/libpng12-0/download
then use dpkg -i "path to the file" to manually install all the files
then apt install miktex
edited Mar 15 '18 at 22:53
answered Mar 15 '18 at 22:02
Hemanth KumarHemanth Kumar
11
11
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
add a comment |
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
I would try to explain a little more of what you're trying to accomplish with the code part...
– NerdOfCode
Mar 15 '18 at 22:30
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
added comments..
– Hemanth Kumar
Mar 16 '18 at 0:05
add a comment |
From the MiKTeX website:
How to install MiKTeX
Ubuntu 16.04, Linux Mint 18 or higher (64-bit)
You need to first register the repository which contains the MiKTeX
installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
Then you can install MiKTeX:
sudo apt-get install miktex
add a comment |
From the MiKTeX website:
How to install MiKTeX
Ubuntu 16.04, Linux Mint 18 or higher (64-bit)
You need to first register the repository which contains the MiKTeX
installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
Then you can install MiKTeX:
sudo apt-get install miktex
add a comment |
From the MiKTeX website:
How to install MiKTeX
Ubuntu 16.04, Linux Mint 18 or higher (64-bit)
You need to first register the repository which contains the MiKTeX
installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
Then you can install MiKTeX:
sudo apt-get install miktex
From the MiKTeX website:
How to install MiKTeX
Ubuntu 16.04, Linux Mint 18 or higher (64-bit)
You need to first register the repository which contains the MiKTeX
installation package(s):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889
echo "deb http://miktex.org/download/ubuntu xenial universe" | sudo tee /etc/apt/sources.list.d/miktex.list
sudo apt-get update
Then you can install MiKTeX:
sudo apt-get install miktex
edited Sep 26 '17 at 18:56
answered Sep 18 '17 at 20:04
BiluxBilux
114
114
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f931485%2fhow-to-install-miktex-for-latex-in-ubuntu-17-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Why miktex? It's normaly for Windows and MAC not for Linux. I would rather suggest TexLive... Anyway you could try to open it using wine. What are miktex packages? LaTex only requires LaTex packages usually ;) ... could you tell us what file format you downloaded and from where?
– derHugo
Jul 3 '17 at 10:49
sudo apt-get install texlive-full; sudo apt-get install texmaker ; I used this command and installed texlive but I could not find all the packages like picture packege, so my friend suggessted me to install miktex for additional packages.
– SAM
Jul 8 '17 at 14:56
Someone may correct me but as far as I know miktex is nothing more than a package manager for LaTex .. and you never need texlive full ... Rather install only texlive and texmaker. There's than an option to automatically download packages on the fly wherever needed while compiling a Latex document
– derHugo
Jul 8 '17 at 17:06