Search found 14 matches

by N00bDaan
Wed Mar 12, 2008 8:39 am
Forum: General
Topic: different styles for citation and bibliography
Replies: 2
Views: 5867

different styles for citation and bibliography

Hi,

With natbib you can change the citation style and als the bibliography style. I included the natbib package pdf with this post and for different bibliography styles look at http://www.stat.psu.edu/~surajit/present/bib.htm . Also searching the web for these topics results in loads of results ...
by N00bDaan
Wed Mar 12, 2008 8:32 am
Forum: General
Topic: figure* at the bottom of the page
Replies: 6
Views: 66959

Re: figure* at the bottom of the page

I dont know exactly how you use the two column option, but the simpelest way is I think to end the two column enviroment somehow and then put the figure beneath that... This is just a wild guess though, with more info more can me said...
by N00bDaan
Mon Apr 23, 2007 4:17 pm
Forum: General
Topic: List of Figures, List of Tables, List of Abbreviations?
Replies: 4
Views: 12655

List of Figures, List of Tables, List of Abbreviations?

I got it working by fiddling around with spacings etc:

Code: Select all

Code, edit and compile here:
\newpage
\vspace*{2.52cm} \hspace*{-0.88cm}
\textbf{{\Huge List of Abbreviations}\\}
\vspace*{0.5cm}
\begin{tabbing}
...
...
...
\end{tabbing}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Always good to know this I think... :)
by N00bDaan
Thu Apr 19, 2007 10:30 am
Forum: General
Topic: List of Figures, List of Tables, List of Abbreviations?
Replies: 4
Views: 12655

List of Figures, List of Tables, List of Abbreviations?

Aloha,

Here is the thing... I have these lists in the following order:

List of Figures
List of Tables
List of Abbreviations


The first to are easilly made with
\listoffigures
\listoftables

The list of abbreviations I made myself... Just a new page, tabbing enviroment and there you go ...
by N00bDaan
Wed Apr 11, 2007 12:26 pm
Forum: General
Topic: An italic \Phi
Replies: 1
Views: 4610

An italic \Phi

Aloha,

So I want to get my \Phi italic and I tried several things, but none of them really worked (see the code). The subscript Ar part will go italic, but the Phi does not want to... :)

Code: Select all

$\Phi_{Ar}$
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Anyone knows how to handle this? I tried \mathit, \textsl, {\it ...}
I dunno anyway. :)
by N00bDaan
Thu Apr 05, 2007 10:28 am
Forum: General
Topic: Bibtex question: citing a range of sources
Replies: 6
Views: 15193

Bibtex question: citing a range of sources

I don't use bibtex myself, instead I use the bibliography command within my .tex file, but when you have a list of references like:


\bibitem{bib1} reference 1
\bibitem{bib2} reference 2
\bibitem{bib3} reference 3
\bibitem{bib4} reference 4


And you want to reference to all four you just can do ...
by N00bDaan
Thu Mar 22, 2007 1:45 pm
Forum: General
Topic: Placing figure in header with text using the fancyhdr packag
Replies: 4
Views: 17707

Placing figure in header with text using the fancyhdr packag

That works indeed.

Code: Select all

\rhead{\parbox[b]{10cm}{\raggedleft \bfseries\ffont Blabla\\Blabla2} \includegraphics[width=21pt]{ULB.jpg}}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
by N00bDaan
Tue Mar 20, 2007 2:56 pm
Forum: General
Topic: Placing figure in header with text using the fancyhdr packag
Replies: 4
Views: 17707

Placing figure in header with text using the fancyhdr packag


Perhaps you can insert an array or table into the header. This might allow text into one column of the array and the figure in the next

Something like
$\begin{array}{cc}
Some text here &
\includegraphics[height=.25in,width=.25in,angle=0]{./oim/axial_g2_cube2}
\end{array}$

Just an idea. I have ...
by N00bDaan
Tue Mar 20, 2007 1:10 pm
Forum: General
Topic: Placing figure in header with text using the fancyhdr packag
Replies: 4
Views: 17707

Placing figure in header with text using the fancyhdr packag

So here is the deal. I would like to have a figure in my header with to some text beside it.
I got the fancyhdr package and I have just this one last problem. With the following code, I can produce the header (see figure)

\usepackage{fancydhr}
...
...
...
\newpage
\pagestyle{fancy} \pagenumbering ...
by N00bDaan
Mon Mar 19, 2007 11:37 am
Forum: General
Topic: Too long lines with fancyvrb and Verbatim frame
Replies: 7
Views: 17609

Too long lines with fancyvrb and Verbatim frame

Ok, \hline is indeed used in tabular enviroments and you can use it without the tabular enviroment, but then you will get some stupid error when compiling... The solution is simple:
\hrule

Inserting \hrule anywhere in the text will draw a line as wide as the textwidth. I am also messing around ...