Problem with thesis class












0















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?










share|improve this question

























  • 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











  • 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
















0















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?










share|improve this question

























  • 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











  • 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














0












0








0


1






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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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











  • 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



















  • 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











  • 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

















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










1 Answer
1






active

oldest

votes


















3














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}





share|improve this answer


























  • 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 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












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
});


}
});














draft saved

draft discarded


















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









3














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}





share|improve this answer


























  • 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 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
















3














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}





share|improve this answer


























  • 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 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














3












3








3







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}





share|improve this answer















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}






share|improve this answer














share|improve this answer



share|improve this answer








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 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



















  • 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 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

















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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks