General ⇒ Just a few things
Just a few things
I'm new to LateX and I have been fiddling around with TeXnicCenter. I think I've installed ProteX with it.
I just have a few question. I've searched documentation and I'm yet to find how to install packages. I'd like to install the polynom package but I have no clue.
Also, when I begin to type something like \documentclass{ ... it comes up with a suggestion below. Would I be able to press something that would type the suggestion out, without me having to type it out?
I don't quite understand LateX yet. Does it do calculations for me? How would I graph functions (both real functions and complex vectors on the argand diagram).
Finally, I'd like to achieve something like I've attached, the symbol underneath the brackets. How would I do this?
Thank you very much and I apologise if these have been answered somewhere, if they have then feel free to simply point me there.
Thank you again.
- Attachments
-
- untitled.JPG (23.72 KiB) Viewed 6502 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Just a few things
If you are using MikTeX, you can simple go to: Start ==> MikTeX ==> Package Manager (or settings). There you can look for the package you want, and simple press + to install it.
As far as I know (I use TeXnicCenter), pressing enter and getting the suggestion typed out for you does not work. I think it is only a guidance.
You can use TikZ and PGF http://sourceforge.net/projects/pgf/ to produce drawings and such. However, I am not sure about the calculation. As far as I know, you cannot do calculations in LaTeX, but somebody might know more. Maybe you want to check this later.
As for the image you uploaded, here is how you can do it:
\[
(\underbrace{1+1.01+1.01^2+\cdots+1.01^29}_{\textrm{30 terms}})
\]
I hope this helps,
Take care,
Hanibal
-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Just a few things
And speaking of PGF/Tikz, Geogebra will let you export to Tikz-code, so you can create drawings and plot graphs in Geogebra, generate the Tikz-code and copy that to your .tex-document.
Note that I've only tried this a couple of times, and found that I've had to modify the code slightly to get the desired result.
Just a few things
Hi, thanks for that. Is there a list of these things somewhere that I could refer to?renno wrote: As for the image you uploaded, here is how you can do it:
\[
(\underbrace{1+1.01+1.01^2+\cdots+1.01^29}_{\textrm{30 terms}})
\]
Thank you again!
EDIT: Just a few more questions... Does MiKTeX have all packages? If not how could I install ones that I may find on the net at a later stage?
How would I do diagrams for say, circle geometry, triangles for vector-force diagrams, and trajectory paths for projectile motion?
Thank you once again

Just a few things
I'm having trouble using pgf. I feel like such a noob, why does LaTeX have to be so hard =\
The code I'm using is:
Code: Select all
\documentclass[a4paper,12pt]\begin{document}\begin{tikzpicture}\draw (-1.5,0) -- (1.5,0)\draw (0,-1.5) -- (0,1.5)\end{tikzpicture}\end{document}
I installed pgf and xcolor using MiKTeX and all seemed well...

Thanks in advanced.
- Attachments
-
- LaTeX1.log
- (44.93 KiB) Downloaded 389 times
Re: Just a few things
Sorry for so many posts...
I have a feeling that I haven't installed the packages properly for pgf... *sigh* ... MiKTeX shows that xcolor and pgf are installed, so what could be wrong?
Thanks in advanced.
Re: Just a few things
Now, when I graph functions (real functions), I'd like to mark any stationary points, pts of inflexions and asymptotes. How would I do this?
Also, would this be covered in any tutorials?
Thanks again! =D
Just a few things
The correct code is below
Code: Select all
\documentclass[a4paper,12pt]{article}\usepackage{tikz}\begin{document}\begin{tikzpicture}\draw (-1.5,0) -- (1.5,0);\draw (0,-1.5) -- (0,1.5);\end{tikzpicture}\end{document}
Cheers,
Hanibal
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Just a few things
Please, do not mix several topics in one thread. Some of the issues belong to TeXnicCenter, others are related to your distribution (ProTeXt) or to graphics and should be placed in the according forum. Keep that in mind for future requests.Mini wrote:Hello there,
I'm new to LateX and I have been fiddling around with TeXnicCenter. I think I've installed ProteX with it.
I just have a few question. I've searched documentation and I'm yet to find how to install packages. I'd like to install the polynom package but I have no clue.
Also, when I begin to type something like \documentclass{ ... it comes up with a suggestion below. Would I be able to press something that would type the suggestion out, without me having to type it out?
I don't quite understand LateX yet. Does it do calculations for me? How would I graph functions (both real functions and complex vectors on the argand diagram).
Finally, I'd like to achieve something like I've attached, the symbol underneath the brackets. How would I do this?
Thank you very much and I apologise if these have been answered somewhere, if they have then feel free to simply point me there.
Thank you again.
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Just a few things
Thanks for that.renno wrote: You should always include the class you are using (article, book, report, letter, etc...). That's for one thing. The other issue is that when using TikZ, all the commands should be ended with a ";", and you need to declare before you start your document the packages you will be using. Now all should work...
I actually copied that from their own documentations. -_-;
Sorry, and thank youlocalghost wrote: Please, do not mix several topics in one thread. Some of the issues belong to TeXnicCenter, others are related to your distribution (ProTeXt) or to graphics and should be placed in the according forum. Keep that in mind for future requests.
Thorsten
