Texmaker and TeXstudio ⇒ Generate a PDF
Generate a PDF
I have a problem concerning generating a PDF from my Latex-code.
I use Texmaker 3.5.2 and my settings under (now I'm translating this from my German prog) "Options" "Texmaker Configurations" are as in the attached file.
What I noticed is that the directories for "Asymptote", "GhostScript" and "R Seave" are none existent onmy PC.
These are all still the original settings. I wouldn't know, what to change and to what to change it.
------------------------------
When I compile my code ("Quick build"), I can see that there aren't any mistakes in it. But when I click on "View PDF" I get a pop-up saying "ERROR: File not found.".
"Quick Build" is set to "PDFLatex + View PDF".
------------------------------
Texmaker directory: C:\Program Files (x86)\Texmaker
Directory of file I'm trying to compile and generate: C:\Users\Julian\Desktop\LTD_Tex-Files_v1.2\Tex-Files_v1.2
------------------------------
Can somebody help me out? Hope I've given enough information on the problem.
Thank you
GooNaH
- Attachments
-
- just in case some have Texmaker in German
- Commands-800.jpg (48.45 KiB) Viewed 43406 times
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
Re: Generate a PDF
i assume you are using TexLive, but on what operating system?
In your example there are windows paths and Mac paths visible.
Please take a look, if all path are given correctly to Texmaker.
Regards
Re: Generate a PDF
I'm on a Win7 operating system.
TexLive is the distribution right?
All I did was install the current Texmaker from their official website.
I'm assuming that as you are already asking for a distribution, I'm now missing necessary installations?!
Which paths are in Mac-Style? Should I change these and to what?
Thanks for help
GooNaH
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Generate a PDF
http://www.latex-community.org/componen ... crossposts Please read what our admin thinks about mulitposts.
I guess your first uploaded picture was a screenshot from somewhere else. So never mind.
Asymptote, Sweave and Ghostscript are additional gimmicks, you won`t need them right now, as a beginner.
Please try to compile/build/tex the following minimal example and take a look in your project folder (the one with your example_forum.tex, or whatever your call it) if the example_forum.pdf is there.
If Texmaker can`t open the pdf, either with its internal reader, or with an external one like the acrobat reader (see the options menu), something seems to be wrong with your paths and you should check them.
Code: Select all
\documentclass{article}
\begin{document}
Hello, the answer is 42.
\end{document}
Re: Generate a PDF
---Sorry to you,too, about the cross-postings.I didn't give it any thought, because the second one was in a German forum. I wasen't aware I could reach you there as well as here. I'll stick to the rules from now and use a hyperlink such purposes. Thanks for the info
Generate a PDF
It doens't come out correctly though.
The chapter that I got from my workgroup comes out normally.
The chapter I wrote myself doesn't cope with the Umlauts ö,ü,ä,ß.
This occurs eventhough I \include both chapters into the same PDF.
I have this problem when compiling both with UTF-8 and ISO-8859-1 under the settings "Options"->"configure Texmaker"->"Editor".
I use:
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
Does somebody know what I'm doing wrong?
Regards,
GooNaH
for more detail:
http://www.golatex.de/zeichencodierung- ... 10181.html
Generate a PDF
I'll from now on restrict myself to the "goLatex" discussion.
I didn't mean to be disrespectful to anyone and I don't mean to take your kind help for granted. I'll cancel my ordered pizza from this server

http://www.golatex.de/zeichencodierung- ... 10181.html
Thanks nevertheless to you all,
Bye bye
GooNaH
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Generate a PDF
babel
with ngerman
option:Code: Select all
\usepackage[ngerman]{babel}
inputenc
as well. But ensure, that all input encoding match, i.e.
-
inputenc
option (such asutf8
orlatin1
) - editor encoding (Texmaker setting)
- actual file encoding
Differences can occur if you work on different operating systems (Linux uses usually utf8, Windows latin1, but modern editors also utf8) or with different editors. If you would already have a mix, such as a chapter from a colleague with different encoding, you have to fix it - there are tools (recode, iconv) but you could for example open as latin1 in the editor and save as utf8.
Stefan
Generate a PDF
will get to work on your suggestions.
(I have babel with ngerman as option in my code.)
Thank you
GooNaH
ps: As I was taught good behaviour between foren I'd like to invete further helpers to this parallel discussion to avoid crosspostings:
http://www.golatex.de/zeichencodierung- ... 10181.html
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Generate a PDF

Stefan