MiKTeX and proTeXt ⇒ Newbie Question(s): Packages (classes?) needed for PhD thesis template
-
- Posts: 1
- Joined: Sun Jun 03, 2018 6:59 pm
Newbie Question(s): Packages (classes?) needed for PhD thesis template
I would like to apologize right away if these questions are very obvious to many of you. I'm writing my PhD thesis, and I've decided to give LaTex a try. I've always used Word for everything (e.g., publications, assignments, etc.), but LaTex dissertations - I think - look very sharp.
I've never used LaTeX (or any of its related software, so hopefully I have my terminology correct), but I'm usually pretty good at picking up new software packages as long as I can make changes and see the results (trial and error).
I would like to use a dissertation template (https://www.overleaf.com/latex/template ... xQgnUgvy70), but I will need to make some slight adjustments for my department requirements.
I downloaded the template from Overleaf so I can work on it offline, and I downloaded MiKTeX (https://miktex.org/). I tried to compile (ctrl+t) the as-downloaded template, but received the following output:
"Sorry, but 'MiKTeX Compiler Driver' did not succeed.
The log file hopefully contains the information to get MiKTeX going again.
You may want to visit the MiKTeX project page, if you need help."
Is the issue that I need to download particular "packages" ("classes"?)? If so, do I need to do anything special with them, or just place the downloaded file(s) in the MiKTeX folder? Or, am I missing something even more basic and fundamental?
Thank you in advance for any help you can offer.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Newbie Question(s): Packages (classes?) needed for PhD thesis template
But, do you need a template? -> https://en.wikibooks.org/wiki/LaTeX/Scientific_Reports
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Newbie Question(s): Packages (classes?) needed for PhD thesis template
Take a look at that .log file. As the error message said, it may contain the reason. The message should have printed the file name and location, such as
C:/Users/.../AppData/Local/MiKTeX/2.9/miktex/log/texify.log
. Read that file. You can post it here, as text or as attachment.Stefan
Newbie Question(s): Packages (classes?) needed for PhD thesis template
I'd run a simple test first, to see if it's a problem with your TeX installation.
Code: Select all
\documentclass{article}
\begin{document}
Hello, world!
\end{document}
KR
Rainer