GeneralError: automatic jump to error line in source code

General information and discussion about TeXnicCenter
Post Reply
totalnewbi
Posts: 11
Joined: Wed Sep 15, 2010 2:44 pm

Error: automatic jump to error line in source code

Post by totalnewbi »

Dear forum,


I have a problem debugging my source code. When I scroll the list of errors and warnings after compiling and I click on some warnings I am not directly referred to the line in the source code. This works fine for any errors and also most warnings. I have not found any systematic for which warnings it works and for which not.

I am using several separate files and \include{} them into one master file. Could that be the reason? Do I have to use \input{}? Do I need any particular packages? Do I have to configure Texniccenter in a special way?

Browsing the forum I have only found other people reporting such problems but no one with a solution. What would be a good point to start looking for a solution?


Cheers
Newbi

I am using Tecxniccenter 1 Beta 7.50 and Miktex 2.8.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Error: automatic jump to error line in source code

Post by localghost »

totalnewbi wrote:[…] I am using several separate files and \include{} them into one master file. Could that be the reason? Do I have to use \input{}? Do I need any particular packages? Do I have to configure Texniccenter in a special way? […]
That can be the reason and using the other command won't help. TXC1 is known to have difficulties in this regard. And there are no alternative settings.
totalnewbi wrote:[…] I am using Tecxniccenter 1 Beta 7.50 and Miktex 2.8.
At least use TXC1 RC1 or try TXC2 alpha 3 (Build 1118). The alpha version might not have this problem. Although it's already pretty stable, it probably causes other problems.


Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
vaman
Posts: 17
Joined: Wed Oct 09, 2019 5:51 am

Error: automatic jump to error line in source code

Post by vaman »

Code: Select all

\documentclass{article}

\begin{document}
	This is my answer.
	\input{ask1} 
	\input{ask2} 
	
	to get the final answer. Save input file by removing begin and end document end documentclass in the same folder.
\end{document}
.

ask1 contains just a line I am asking this question
ask2 contains a line whether I should use include or input all are saved as .tex
I tried to include them but that fails. Please do not put them as include files. Open all those files and remove above three preambles and save them as some other name as tex files. I hope it will work for you.
Last edited by cgnieder on Thu Jan 06, 2022 5:11 pm, edited 1 time in total.
Reason: added code markup
Post Reply