Problem with thesis class
When I am trying to use the thesis
class file for my thesis I am getting this error:
File `thesis.cls' not found. usepackage
My codes
documentclass[12pt]{thesis}
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to correct this error?
errors thesis
add a comment |
When I am trying to use the thesis
class file for my thesis I am getting this error:
File `thesis.cls' not found. usepackage
My codes
documentclass[12pt]{thesis}
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to correct this error?
errors thesis
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
that would bethesis.cls
not.sty
there are dozens if not hundreds of different classes calledthesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found
– David Carlisle
Oct 20 '15 at 11:52
TryThesis
. If that works, replaceThesis
bybook
.
– Johannes_B
Oct 20 '15 at 11:53
Otherwise just start your document usingdocumentclass{report}
until you get any local instructions that mandate the use of a particular class.
– David Carlisle
Oct 20 '15 at 11:53
add a comment |
When I am trying to use the thesis
class file for my thesis I am getting this error:
File `thesis.cls' not found. usepackage
My codes
documentclass[12pt]{thesis}
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to correct this error?
errors thesis
When I am trying to use the thesis
class file for my thesis I am getting this error:
File `thesis.cls' not found. usepackage
My codes
documentclass[12pt]{thesis}
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to correct this error?
errors thesis
errors thesis
edited Oct 20 '15 at 15:42
Christian Lindig
11.5k54365
11.5k54365
asked Oct 20 '15 at 11:48
DavidDavid
9531020
9531020
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
that would bethesis.cls
not.sty
there are dozens if not hundreds of different classes calledthesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found
– David Carlisle
Oct 20 '15 at 11:52
TryThesis
. If that works, replaceThesis
bybook
.
– Johannes_B
Oct 20 '15 at 11:53
Otherwise just start your document usingdocumentclass{report}
until you get any local instructions that mandate the use of a particular class.
– David Carlisle
Oct 20 '15 at 11:53
add a comment |
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
that would bethesis.cls
not.sty
there are dozens if not hundreds of different classes calledthesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found
– David Carlisle
Oct 20 '15 at 11:52
TryThesis
. If that works, replaceThesis
bybook
.
– Johannes_B
Oct 20 '15 at 11:53
Otherwise just start your document usingdocumentclass{report}
until you get any local instructions that mandate the use of a particular class.
– David Carlisle
Oct 20 '15 at 11:53
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
that would be
thesis.cls
not .sty
there are dozens if not hundreds of different classes called thesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found– David Carlisle
Oct 20 '15 at 11:52
that would be
thesis.cls
not .sty
there are dozens if not hundreds of different classes called thesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found– David Carlisle
Oct 20 '15 at 11:52
Try
Thesis
. If that works, replace Thesis
by book
.– Johannes_B
Oct 20 '15 at 11:53
Try
Thesis
. If that works, replace Thesis
by book
.– Johannes_B
Oct 20 '15 at 11:53
Otherwise just start your document using
documentclass{report}
until you get any local instructions that mandate the use of a particular class.– David Carlisle
Oct 20 '15 at 11:53
Otherwise just start your document using
documentclass{report}
until you get any local instructions that mandate the use of a particular class.– David Carlisle
Oct 20 '15 at 11:53
add a comment |
1 Answer
1
active
oldest
votes
If you have access to thesis.cls
:
Most of the time an error File foo.cls not found
leads to two possible problems:
First, the cls
file is a "classic" file that is part of TeXlive or other TeX distribution. In this case, you should update it. The way to do it depends if you are using TeXlive, MikTeX, macTeX or other system.
If your file comes from internet, or from another source as an University, you should have a copy of the file in your folder.
If the problem is still present, you should verify typo (thesis
, Thesis
or THESIS
). The name depends on the file name.
If you don't have any thesis.cls
file:
In this case you should use another document class as book
or report
:
documentclass[12pt]{report} %you can modifies report with book
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
1
@David then do not usedocumentclass{thesis}
usedocumentclass{report}
and it will work.
– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2ftex.stackexchange.com%2fquestions%2f273988%2fproblem-with-thesis-class%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you have access to thesis.cls
:
Most of the time an error File foo.cls not found
leads to two possible problems:
First, the cls
file is a "classic" file that is part of TeXlive or other TeX distribution. In this case, you should update it. The way to do it depends if you are using TeXlive, MikTeX, macTeX or other system.
If your file comes from internet, or from another source as an University, you should have a copy of the file in your folder.
If the problem is still present, you should verify typo (thesis
, Thesis
or THESIS
). The name depends on the file name.
If you don't have any thesis.cls
file:
In this case you should use another document class as book
or report
:
documentclass[12pt]{report} %you can modifies report with book
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
1
@David then do not usedocumentclass{thesis}
usedocumentclass{report}
and it will work.
– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
add a comment |
If you have access to thesis.cls
:
Most of the time an error File foo.cls not found
leads to two possible problems:
First, the cls
file is a "classic" file that is part of TeXlive or other TeX distribution. In this case, you should update it. The way to do it depends if you are using TeXlive, MikTeX, macTeX or other system.
If your file comes from internet, or from another source as an University, you should have a copy of the file in your folder.
If the problem is still present, you should verify typo (thesis
, Thesis
or THESIS
). The name depends on the file name.
If you don't have any thesis.cls
file:
In this case you should use another document class as book
or report
:
documentclass[12pt]{report} %you can modifies report with book
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
1
@David then do not usedocumentclass{thesis}
usedocumentclass{report}
and it will work.
– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
add a comment |
If you have access to thesis.cls
:
Most of the time an error File foo.cls not found
leads to two possible problems:
First, the cls
file is a "classic" file that is part of TeXlive or other TeX distribution. In this case, you should update it. The way to do it depends if you are using TeXlive, MikTeX, macTeX or other system.
If your file comes from internet, or from another source as an University, you should have a copy of the file in your folder.
If the problem is still present, you should verify typo (thesis
, Thesis
or THESIS
). The name depends on the file name.
If you don't have any thesis.cls
file:
In this case you should use another document class as book
or report
:
documentclass[12pt]{report} %you can modifies report with book
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
If you have access to thesis.cls
:
Most of the time an error File foo.cls not found
leads to two possible problems:
First, the cls
file is a "classic" file that is part of TeXlive or other TeX distribution. In this case, you should update it. The way to do it depends if you are using TeXlive, MikTeX, macTeX or other system.
If your file comes from internet, or from another source as an University, you should have a copy of the file in your folder.
If the problem is still present, you should verify typo (thesis
, Thesis
or THESIS
). The name depends on the file name.
If you don't have any thesis.cls
file:
In this case you should use another document class as book
or report
:
documentclass[12pt]{report} %you can modifies report with book
usepackage{blkarray}
usepackage{amsmath}
begin{document}
chapter{How long you want the title }
end{document}
edited Oct 20 '15 at 12:20
answered Oct 20 '15 at 11:55
Romain PicotRomain Picot
4,50931952
4,50931952
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
1
@David then do not usedocumentclass{thesis}
usedocumentclass{report}
and it will work.
– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
add a comment |
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
1
@David then do not usedocumentclass{thesis}
usedocumentclass{report}
and it will work.
– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
How to fix this in linux..means i am using texstudio as an editor..
– David
Oct 20 '15 at 12:05
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà
;-)
– Romain Picot
Oct 20 '15 at 12:09
@David have you the thesis.cls file? If it's the case, just put it in the same folder as your tex document and voilà
;-)
– Romain Picot
Oct 20 '15 at 12:09
no i am not having
– David
Oct 20 '15 at 12:15
no i am not having
– David
Oct 20 '15 at 12:15
1
1
@David then do not use
documentclass{thesis}
use documentclass{report}
and it will work.– David Carlisle
Oct 20 '15 at 12:18
@David then do not use
documentclass{thesis}
use documentclass{report}
and it will work.– David Carlisle
Oct 20 '15 at 12:18
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
@David I've modified my answer. The comment by David Carlisle is what you have to do
– Romain Picot
Oct 20 '15 at 12:22
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- 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%2ftex.stackexchange.com%2fquestions%2f273988%2fproblem-with-thesis-class%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
have you put thesis.cls file in the same folder as your .tex?
– Romain Picot
Oct 20 '15 at 11:49
that would be
thesis.cls
not.sty
there are dozens if not hundreds of different classes calledthesis.cls
from every university department ever. presumably you had some documentation that said to use some particular local class and that documentation should have said where it could be found– David Carlisle
Oct 20 '15 at 11:52
Try
Thesis
. If that works, replaceThesis
bybook
.– Johannes_B
Oct 20 '15 at 11:53
Otherwise just start your document using
documentclass{report}
until you get any local instructions that mandate the use of a particular class.– David Carlisle
Oct 20 '15 at 11:53