PDA

View Full Version : LaTeX output not copied to FILE ! Why?


JamesJames
Nov5-04, 06:23 AM
I am just getting started on LateX and here is what I have done

I typed in this trial file and saved it. Then at the prompt typed latex myfile where myfile is the name of the file......
\documentclass{article}
\begin{document}
psi\mapsto 1/2\,m{\omega}^{2}{x}^{2}\psi
\end{document}

A whole bunch of stuff came up and then it said "No output pages" and then "Transcript copied to myfile.log."

I am using XP.

What do I have to do to see the following output in a file?


H:=psi\mapsto \frac{1}{2}\,m{\omega}^{2}{x}^{2}\psi



I am getting the hang of the coding..


shro:=-\frac{1}{2}\,{\frac {{h}^{2}{\frac {d^{2}}{d{x}^{2}}}\psi \left( x \right) }{
m}}+\frac{1}{2}\,m{\omega}^{2}{x}^{2}\psi \left( x \right) =E\psi \left( x
\right)



-\frac{h \omega\}{2}\,left( {\frac {d^{2}}{d{y}^{2}}}\psi \left( y \right)
\right) +\frac{1}{2}\,\omega\,{y}^{2}h\psi \left( y \right) =E\psi
\left( y \right)


James

JamesJames
Nov5-04, 06:28 AM
WOW, that really does look nice eh ?

Man, I wish it would just work on my system :cry:

graphic7
Nov5-04, 06:46 AM
Try \documentclass[12pt, letterpaper]{article}

Just a shot in the dark.

Edit make sure you denote any math by $-delimiters.

You have a few choices: (I'll list a few)

$x^2$
\begin{displaymath}x^2\end{displaymath}


Make sure your read some of the LaTeX documentation, plenty of it on the internet. Any TeX distribution will come with a short introduction to LaTeX (it's a PDF file), along with the AMS Math documentation (very well written).

JamesJames
Nov5-04, 06:53 AM
Where would I put this?

$x^2$
\begin{displaymath}x^2\end{displaymath}

why? and what does it do?

master_coda
Nov5-04, 07:16 AM
Where would I put this?

$x^2$
\begin{displaymath}x^2\end{displaymath}

why? and what does it do?

In order to have text formatted as math, you have to put LaTeX into either math or displaymath mode. $ ... $ puts LaTeX into math mode (it's actually the same as \begin{math} ... \end{math}). This mode is used when you want the math to be placed inline into text.

The other mode is \begin{displaymath} ... \end{displaymath}, which I think can also be written in shorthand as \[ ... \]. This mode places the math onto a separate line.

When writing LaTeX on this board, these modes are implicitly already in use; math mode produces the same formatting as using "itex" tags here, and displaymath mode produces the same formatting as using "tex" tags.

If you aren't in either of these modes then a lot of the math symbols are not defined and so will generate errors when you try to compile the document. This would explain why you aren't getting any output.

JamesJames
Nov5-04, 07:27 AM
I am trying to get the output on more than one line...how do I split it up?


\\shro1:=-1/2\,{\frac {{h}^{2}{\frac {d^{2}}{d{x}^{2}}}\psi \left( x \right) }{
m}}=E\psi \left( x \right)\\1/2\,{\frac {{h}^{2}{k_{{1}}}^{2}}{m}}



-1/2\,{\frac {{h}^{2}{\frac {d^{2}}{d{x}^{2}}}\psi \left( x \right) }{
m}}+{\it V0}\,\psi \left( x \right) =E\psi \left( x \right)


I can do it on here but in latex, separating the lines using \\ does not seem to work

\documentclass{article}
\begin{document}
\begin{displaymath}
\\shro1:=-1/2\,{\frac {{h}^{2}{\frac {d^{2}}{d{x}^{2}}}\psi \left( x \right) }{
m}}=E\psi \left( x \right)\\1/2\,{\frac {{h}^{2}{k_{{1}}}^{2}}{m}}\\-1/2\,{\frac {{h}^{2}{\frac {d^{2}}{d{x}^{2}}}\psi \left( x \right) }{
m}}+{\it V0}\,\psi \left( x \right) =E\psi \left( x \right)
\end{displaymath}
\end{document}

JamesJames
Nov6-04, 07:31 AM
I am trying to produce equations one line after another rather than side by side but it won't work. Is the class type wrong? AM I giving the wrong begin and end commands?

This is really frustrating !


\begin{eqnarray}
f(x) & = & \cos x \\
f’(x) & = & -\sin x \\
\int_{0}^{x} f(y)dy &
= & \sin x
\end{eqnarray}

master_coda
Nov6-04, 11:33 AM
Put the equations you want on two different lines into two separate displaymath sections.

JamesJames
Nov6-04, 09:43 PM
Got it..thanks again !

JamesJames
Nov6-04, 09:45 PM
One last question for now...how do I put tables into latex. Here is what I got...I would want the actual table to be left aligned but the table itself(not the columns) are center aligned on the page...ALL of THE TABLES ! :confused:

Here is what I am using
\begin{center}
\begin{tabular}{|c|c|c|}
\hline
Biased Voltage & \multicolumn{2}{c|}{Recorded data}\\
\cline{2-3}
& Voltage drop across diode(mV) & Voltage drop across resistor(mV)\\
\hline
0.00 & 0.006432 & -0.006394\\
5.01 & 4.5550 & 0.691\\
10.01 & 9.0899 & 1.023\\
15.03 & 13.648 & 1.744\\
20.00 & 18.166 & 1.939\\
25.06 & 22.752 & 1.984\\
30.00 & 27.235 & 3.813\\
35.04 & 31.810 & 2.979\\
40.00 & 36.353 & 3.859\\
\hline
\end{tabular}
\end{center}

Also, once I haev created a .dvi file is there some special way to print or can it be done just by file print?

JamesJames
Nov6-04, 10:10 PM
It won' t print a .dvi file! :cry: :cry: How do I print? This is urgent.

graphic7
Nov7-04, 12:47 AM
If you're using MiKTeX, it comes with a DVI previewer called Yap. If you're not, then get Yap. Another option that you should be aware of is you can render to PDF files by using pdflatex. Depending on the TeX editor you are using, it should be easy to choose how you would like to render.

Orion1
Nov7-04, 05:57 AM
James, your sourcecode is good!, however the command:
\begin{tabular}{|c|c|c|}

means three columns that are center 'c' aligned. I believe you want to substitute this command:
\begin{tabular}{|l|l|l|}

'l' for left aligned, instead of 'c' centered.

Reference:
http://www.astro.ku.dk/help/LaTeX/ltx-68.html

JamesJames
Nov7-04, 06:15 AM
GOT it....PDF LATEX works ! That is one big relief !

Now, I have tried the |l|l|l rather than |c|c|c| but this not only moves the table to the left as I want but it ALSO realigns the headings thus MOVING them also to the left which is what I don' t want.

JamesJames
Nov7-04, 06:42 AM
Is there some way to remove the center "indent" that seems to exit for the tables?

And also, the first line of page 1 seems to start with two or three blank spaces before the first word appears. Is that customary?

Orion1
Nov7-04, 07:26 AM
James, try these substituted commands:
\begin{tabular}{|l|l|l|}

& \multicolumn{1}{c|}{Voltage drop across diode(mV)} & \multicolumn{1}{c|}{Voltage drop across resistor(mV)}\\

Let me know if these commands work.

Reference:
http://www.informatica.us.es/~calvo/prog/in/p4.htm#C%F3digo%20ejemplo%203.-

JamesJames
Nov7-04, 08:44 AM
I played around with the l(left) and the c(center) and it worked for this one.

\begin{tabular}{|c|c|c|}

& \multicolumn{1}{l|}{Voltage drop across diode(mV)} & \multicolumn{1}{c|}{Voltage drop across resistor(mV)}\\

JamesJames
Nov10-04, 05:58 AM
Ok, I am trying to type up a math document but the font is incredibly small. Is there some way to enlarge it..I tried [25pt] but it does not change a thing. Even {\Large and then the math stuff} does not change a thing.

I need help please :cry: !