| 17-11-2009, 19:10 | #16 |
|
custodiam ipsos custodes
![]() |
|
|
|
|
Advertisement
|
|
|
| 17-11-2009, 19:29 | #17 | ||
|
Registered User
![]() |
Quote:
Not at all. Have a gander at this, for example. Quote:
|
||
|
|
| 17-11-2009, 19:48 | #19 |
|
Registered User
![]() |
I don't like the continual process of building your pdf's to make sure they look as you would like, I'm sure confidence comes with time and this becomes less of a necessity.
Also resizing images to make sure they fit where you want them is quite annoying but, I can see why it's done like that. I'm currently using TeXnicCenter which is quite nice but, I was using LyX and that drove me insane. Just there I read about a plugin for gedit and I installed it using the package manager but, it doesn't seem to be working. |
|
|
| 17-11-2009, 19:53 | #20 | |||
|
Registered User
![]() |
Quote:
If it's mostly text, then forget about formatting etc. Just type away and fix anything that might come up later. I do bunches of equations at a time for maths, about 6 lines at a go, then PDF to make sure I didn't make mistakes. Quote:
Quote:
|
|||
|
|
|
Advertisement
|
|
|
| 17-11-2009, 19:59 | #21 |
|
Registered User
![]() |
Doing my first serious bit of work with LaTeX at the moment, a report on a statistics project. Using LyX (don't laugh
) but the whole thing just looks delicious.
|
|
|
| Thanks from: |
| 17-11-2009, 20:06 | #22 | |
|
Registered User
![]() |
Quote:
\begin{figure}[h] \centering \includegraphics[width=0.48\textwidth]{D:/Project/google_query.png} \end{figure} |
|
|
|
| 17-11-2009, 20:10 | #23 |
|
Registered User
![]() |
Great idea, a lecturer of mine was a huge proponent of Latex and as a result I think nearly half of our graduating year wrote up their final year projects in Latex.
Unfortunately I have my undergrad and postgrad days behind me, but I'll let those who are finishing up their PhDs know about the forum. Best of luck with it! |
|
|
| 17-11-2009, 20:20 | #24 | ||
|
Registered User
![]() |
Quote:
Quote:
![]() The code I suggest for graphics is: Code:
\begin{figure}[h]
\centering
\caption{Irish GDP, 1990-2000}
\includegraphics[width=5in]{gdp.png} \label{omg}
\end{figure}
"As can be seen in Figure \ref{omg}, Irish GDP rose considerably during the 1990s." Then the \ref{omg} command will return a number, resulting in (something like): "As can be seen in Figure 4, Irish GDP rose considerably during the 1990s." When you have commands like that, it doesn't matter if Figure 4 goes onto the next page or whatever. Just roll with it and don't be worrying
|
||
|
|
|
Advertisement
|
|
|
| 17-11-2009, 20:29 | #25 | |
|
Registered User
![]() |
Quote:
|
|
|
|
| 17-11-2009, 20:51 | #26 | ||
|
custodiam ipsos custodes
![]() |
Quote:
Quote:
|
||
|
|
| 17-11-2009, 23:57 | #27 |
|
Registered User
![]() |
Placing images in LaTeX is surprisingly frustrating, another thing you can change is to declare it as
\begin{figure}[ht] or \begin{figure}[hb] where "ht" means LaTeX will try to position the picture either here or at the top of the page, and "hb" means here or the bottom of the page. Generally though resizing the picture and then possibly moving it forward or back a paragraph so it turns up roughly where you want it is the only thing to do... If you're writing something lengthy you should definitely leave doing this to the very end when you have all the text you want. |
|
|