How can I troubleshoot LaTeX errors without line numbers or specific locations?

  • Context: LaTeX 
  • Thread starter Thread starter abikutn
  • Start date Start date
  • Tags Tags
    Figure Latex
Click For Summary

Discussion Overview

The discussion revolves around troubleshooting LaTeX errors, particularly focusing on issues related to figure inclusion and error reporting without line numbers. Participants share their experiences and seek solutions for problems encountered while using LaTeX editors, specifically INLAGE and TeXworks.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Homework-related

Main Points Raised

  • One participant describes an issue with figures not displaying in the generated PDF, despite checking paths and whitespace, and questions why the editor does not include full paths for figures.
  • Another participant suggests that the problem might be related to pagination and recommends running LaTeX multiple times to resolve figure references.
  • A different participant expresses uncertainty about whether the issue lies with TeX or the INLAGE editor and provides a link to potential workarounds for directory issues in LaTeX.
  • One user shares their method of including figures using relative paths and suggests trying different path specifications relative to the master or included file.
  • A participant shares their own LaTeX error experience, specifically regarding a "there's no line here to end" error, and expresses frustration over the lack of line numbers in the editor.

Areas of Agreement / Disagreement

Participants do not reach a consensus on the source of the figure inclusion problem, as multiple viewpoints and experiences are shared. The discussion remains unresolved regarding the best approach to troubleshoot the errors mentioned.

Contextual Notes

Some participants note limitations in their understanding of the INLAGE editor and the specific configurations that may affect figure paths. There is also mention of the need for clarity on whether paths should be relative to the master file or the included subfile.

Who May Find This Useful

Individuals learning LaTeX, particularly those using INLAGE or TeXworks, and those encountering similar issues with figure inclusion and error reporting may find this discussion relevant.

abikutn
Messages
10
Reaction score
0
Hello guys,

I know this topic has been issued many times before. However I have an issue I can't find a solution for.

  1. I have a master file that calls another sub tex file using \include{}.
  2. This sub tex file has insert figures, I use insert figure options in the editor and the figures are in a sub folder where the this tex file resides.
  3. However when I compile the master file. I see no figure and also states that it cannot find the figure. I double checked the path name and white spaces too. Its not because of that.

Can someone help me how to go abt it. I use INLAGE 4.7.13 as my Latex editor. Please find the attached file to run the files if you have time.

docs.google.com/open?id=0B6yei5eTKtEsajd6T201bEpUOTA

[ sorry this is just my second post and PF won't let me insert links/URL'S ]
Thank you.

PS: When I use insert figure it doesn't include the full path of the figure. why is that. If I include the full path then it works perfect. I don't understand why my editor doesn't include the full path and only the sub folder path.
 
Physics news on Phys.org
I see figures in your generated pdf (thesis_master.pdf). Are you talking about the "fig ??" in your pdf file? That is a different problem. The solution is easy: Run latex again. And then run latex one more time because the pagination might be wrong (the figures and tables now have a title and this can change the pagination).
 
No thatz not what I meant. were you actually able to see the pictures ?

when I generated thesis_master.pdf I wasnt able to see any pictures that were added from my subfolder. Here have a look at the Pdf. This is what I meant. Unless I put in the whole path it won't display the picture. But the INLAGE editor I am using , when I use the insert figure option it just starts off the graphic path from the subfolder name : eg: subfolder/picture.jpg

docs.google.com/open?id=0B6yei5eTKtEsajd6T201bEpUOTA

Thanks for taking effort to see what is my problem.
 
Tex doesn't have any built in concept of "change the current directory" or "automatically search subdirectories" when looking for files, but there are some workrounds here: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=docotherdir

On the other hand, I'm not really sure whether your problem is about TeX or INLAGE, and I don't know anything about INLAGE. (And I don't trust google docs enough to go exploring your data on there - sorry!)
 
I usually have a subdirectory for figures. Then I use something like

\includegraphics[width=0.8\columnwidth]{./figures/fig_1}

Never had any problems with that, but I don't use INLAGE.

I am not sure if you have to specify the path relative to the master file or the included one. Just try both :-P
 
I am having the same problem with my latex error when I insert a picture can someone please help me?\documentclass[12pt]{article}\usepackage{amsfonts,amsmath, amsthm, amssymb, latexsym, epsfig}
\usepackage[all]{xy}
\usepackage{xspace, graphicx}
\usepackage[mathscr]{eucal}
\usepackage{caption}
\usepackage{graphics}
\usepackage{float}%%%%%%%% Wide Page 1%%%%%%%%%%
\topmargin -15pt
\advance \topmargin by -\headheight
\advance \topmargin by -\headsep

\textheight 9in

\oddsidemargin 0pt
\evensidemargin \oddsidemargin
\marginparwidth 0.5in

\textwidth 6.5in

\newcommand{\mat}[4]{\left( \begin{array}{cc} #1&#2\\#3&#4\\ \end{array} \right)}
\newcommand{\setof}[2]{\ensuremath{\left\{ #1 \: : \: #2 \right\}}}
\newcommand{\myeps}[1]{\epsfig{figure=#1.eps}}
\newcommand{\set}[1]{\mathbb #1}
\newcommand{\goth}[1]{\mathfrak #1}
\newcommand{\ftn}[3]{ #1 : #2 \rightarrow #3 }
\newcommand{\limit}[3]{ \lim_{ #1 \to #2 } #3 }
\newcommand{\summation}[4]{\sum_{ #1 = #2 }^{#3} #4 }
\newcommand{\innerprod}[2]{\left\langle #1,#2 \right\rangle}
\newcommand{\integral}[3]{ \int_{#1}^{#2} #3 \ dt}
\newcommand{\norm}[1]{\left\|#1\right\|}

\newcommand{\Z}{\ensuremath{\mathbb{Z}}\xspace}
\newcommand{\C}{\ensuremath{\mathbb{C}}\xspace}
\newcommand{\Q}{\ensuremath{\mathbb{Q}}\xspace}
\newcommand{\R}{\ensuremath{\mathbb{R}}\xspace}
\newcommand{\N}{\ensuremath{\mathbb{N}}\xspace}
\newcommand{\lcm}{\ensuremath{\mathrm{lcm}}\xspace}
\def\d{\displaystyle} % Acknowledgements is an environment
\newenvironment{acknowledgment}{\bigskip{\em Acknowledgement.}}

\newtheorem{thms}{Theorems}%[section]

\theoremstyle{plain}

\newtheorem{question}[thms]{Question}


\theoremstyle{plain}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{theorem}[thm]{Theorem}
\newtheorem{proposition}[thm]{Proposition}
\newtheorem{corollary}[thm]{Corollary}
\newtheorem{conjecture}[thm]{Conjecture}
\newtheorem{convention}[thm]{Convention}
\newtheorem{claim}[thm]{Claim}
\newtheorem{problem}[thm]{Problem}


\theoremstyle{definition}
\newtheorem{definition}[thm]{Definition}
\newtheorem{fact}[thm]{Fact}
\newtheorem{remark}[thm]{Remark}
\newtheorem{notation}[thm]{Notation}
\newtheorem{example}[thm]{Example}
\newtheorem{warning}[thm]{Warning}
\newtheorem{comments}[thm]{}
\numberwithin{equation}{section}
\numberwithin{figure}{section}

\begin{document}
\title{Speed Lab}
\author{Caroline Susanne Tillman}
\date{\today}
\maketitle%%%%%%%%%
\section{ Due Monday, June 10, 8:00 AM}

\begin{itemize}

\item[a.] {\bf Lab Purpose:}

The purpose in the speed lab was to observe the difference in speed while jogging and walking around the octagon shaped common area.

\item[b.] {\bf Lab Procedure:}

1. Take 8 meter sticks and place each meter stick at the corner of each vertices of the octagon shaped common area.

\begin{figure}[!h]
\begin{center}
\includegraphics{Diaspeed.jpg}
\caption{Diagram of Commons}
\end{center}
2. Take the 4 measuring tapes and measure 2 edges on the octagon starting at one vertex to
\end{itemize}

%%%%%%%%%

\end{document}
 
Well here we go, I'm learning LaTex!

Not too bad, gets more intuitive as you go along. If that makes sense.

Going through some tutorials and trying to type of some math for a paper. Some basic and very stupid questions. I am using the TeXworks editor.

When I get errors on attempting to typeset, I'm given a line number where the error occurred. That would be very helpful, if I knew where that line was. But it's not like they are numbered or anything, and I really don't want to count. Obviously I'm missing something here.

I'm getting a "there's no line here to end" error, but it doesn't say what line. Where is "here?"

That's all for now...

-Dave K
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
7K
  • · Replies 11 ·
Replies
11
Views
4K
Replies
1
Views
9K
  • · Replies 4 ·
Replies
4
Views
43K
  • · Replies 1 ·
Replies
1
Views
5K
Replies
10
Views
11K