Search found 13 matches

by NoIdeaNickanme
Mon Mar 05, 2012 5:23 pm
Forum: Graphics, Figures & Tables
Topic: Side by Side Figures
Replies: 3
Views: 3247

Side by Side Figures

Try using the subfig package
by NoIdeaNickanme
Mon Feb 13, 2012 1:28 pm
Forum: Graphics, Figures & Tables
Topic: Footnotes for Table or Figure
Replies: 4
Views: 12445

Footnotes for Table or Figure

Use footnote command at the place you want your footnaote to appear, e.g.

Code: Select all

This is caption text.\footnote{Footnote text}
In the link above you'll also find a few tips on modifications of footnote numbering.

Hope it helps,
a.
by NoIdeaNickanme
Thu Feb 02, 2012 1:28 pm
Forum: LyX
Topic: Default Format for Citation Style
Replies: 2
Views: 6158

Default Format for Citation Style

Why do it manually and one by one?
You can use the ''replace all'' option in your editor and substitute all

Code: Select all

\citet{
with

Code: Select all

\citealp{
with a single click (see attached image).
by NoIdeaNickanme
Wed Jan 18, 2012 12:03 pm
Forum: Text Formatting
Topic: Text Flow in two-columned Document
Replies: 1
Views: 1322

Re: Text Flow in two-columned Document

Can you provide a sample of your code?
by NoIdeaNickanme
Thu Jan 12, 2012 4:36 pm
Forum: Texmaker and TeXstudio
Topic: Can I manually input commands?
Replies: 1
Views: 2314

Re: Can I manually input commands?

You can always (manualy) run LaTeX and/or BibTeX on a file directly from Command Prompt (Windows), Terminal (Linux), etc. Works nicely in cases with more bibliographies.
by NoIdeaNickanme
Thu Jan 05, 2012 4:42 pm
Forum: Page Layout
Topic: page size based on text height
Replies: 1
Views: 1232

page size based on text height

You can use the geometry package. It is one of the most versitile packages for page layouts.
by NoIdeaNickanme
Wed Jan 04, 2012 5:25 pm
Forum: New Members
Topic: hi ^^
Replies: 0
Views: 1305

hi ^^

Hi!

I'm not new to LaTeX - due to our Analysis Professors demands on paper formatting I've been using LaTeX for quite some time now ^^

Now I'm in my last year of PhD in Physics and in the 'spare' time I write document templates in LaTeX. Thanks to the help of this forum, I just finished preparing ...
by NoIdeaNickanme
Wed Jan 04, 2012 12:14 pm
Forum: Text Formatting
Topic: height of text using \makebox
Replies: 2
Views: 3734

height of text using \makebox

Hi!
This may not be a conventional solution, however using tabular environment and \hhline within a \makebox does the trick.


\documentclass{article}
\usepackage[version=3]{mhchem}
\usepackage{hhline}
\begin{document}

\makebox{
\begin{tabular}{|c|}
\hhline{-}
C\\
\hhline{-}
\end{tabular ...
by NoIdeaNickanme
Thu Dec 08, 2011 4:02 pm
Forum: Text Formatting
Topic: memoir | Move Chapter Heading to top of Page
Replies: 1
Views: 3675

memoir | Move Chapter Heading to top of Page

You had three errors in the code. This code now works perfectly in LaTeX:


\documentclass[11pt,a4paper,openany]{memoir}

%\usepackage{fontspec}
%\usepackage{xunicode}
%\usepackage{xltxtra}
\usepackage[usenames,dvipsnames]{color}

\makechapterstyle{combined}{
\setlength{\beforechapskip}{-2cm ...
by NoIdeaNickanme
Tue Nov 29, 2011 11:35 am
Forum: Text Formatting
Topic: Vertical space, newtheorem and list
Replies: 1
Views: 1602

Vertical space, newtheorem and list

Did you try inserting a proper caption? e.g.:

\begin{example}
\caption[Title of example for TOC]{Title of example}
\begin{enumerate}
\item This is a test
\end{enumerate}
\end{example}

You may need to add into your preamble (under the newfloat commands)
\floatname{example}{Example}
which ...