Search found 19 matches

by CDbile
Fri Nov 04, 2011 7:24 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 14242

Align Counters and Equations side-by-side


2. I don't know any Tex at all
3. i don't know the difference between TeX and LaTeX

LaTeX is a set of macros defined to simplify document creation in TeX, which is the typesetting language behind. LaTeX can be basically viewed as a layer over TeX.
And, I really think you should know a little ...
by CDbile
Thu Nov 03, 2011 10:28 pm
Forum: Text Formatting
Topic: Align Counters and Equations side-by-side
Replies: 17
Views: 14242

Align Counters and Equations side-by-side

Well, I can't give you the code, but I can give you some ideas...

If you know TeX a little you know that when it begins to build the second minipage, the first one is only a big box and what is inside is forgotten, so you can't ask TeX to align the right part with the left part this way.

So, what ...
by CDbile
Sun Apr 10, 2011 11:45 am
Forum: Math & Science
Topic: Problem with double subscript and accents
Replies: 3
Views: 7204

Problem with double subscript and accents

Hi,
I found a trick :

Code: Select all

${\hat{A}{}_a}_b$
Regards,
by CDbile
Wed Apr 06, 2011 6:23 pm
Forum: Fonts & Character Sets
Topic: listings | Accents in Comments
Replies: 2
Views: 6073

listings | Accents in Comments

Hi,

Could you provide a real Minimal Working Example which shows what the problem is ?

However, I still have a hint for you : read the log ! Babel is warning you that you should add \usepackage[T1]{fontenc} in your preamble when using the Babel french package.

If that doesn't solve the problem ...
by CDbile
Wed Apr 06, 2011 6:00 pm
Forum: Graphics, Figures & Tables
Topic: tikz - change default measuring units (from cm to em) ?
Replies: 2
Views: 11672

tikz - change default measuring units (from cm to em) ?

You can instead change the default length of the axis :

\draw[x=1em,y=1em] (0,0) -- ({sqrt(2)},1);

If you want to use this length in your whole picture, you can just put the option after the \begin{tikzpicture} :

\documentclass{minimal}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}[x ...
by CDbile
Thu Mar 31, 2011 11:48 pm
Forum: Text Formatting
Topic: Noindent section first paragraph
Replies: 7
Views: 14143

Noindent section first paragraph

Well, I identified the "guilty" lines in the xgreek.sty file :

\let\@afterindentfalse\@afterindenttrue
\@afterindenttrue

Of course if you comment them in this file, your code will work fine with no first-paragraph indentation, but this is not a good solution, because the result will be different ...
by CDbile
Tue Feb 01, 2011 7:34 pm
Forum: Fonts & Character Sets
Topic: mathptmx + math environment
Replies: 5
Views: 6756

mathptmx + math environment

Hmm, sorry for the log, didn't see I had to click on "Add the file"...

So, the only differences are the files :


ot1ztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OT1/ztmcm.
omlztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OML/ztmcm.
omsztmcm.fd 2000/01/03 Fontinst v1.801 ...
by CDbile
Tue Feb 01, 2011 6:41 pm
Forum: Fonts & Character Sets
Topic: mathptmx + math environment
Replies: 5
Views: 6756

mathptmx + math environment

Hi and thank you for your answer.

Here is the file list :


*File List*
article.cls 2005/09/16 v1.4f Standard LaTeX document class
size10.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
babel.sty 2008/07/06 v3.8l The Babel package
bblopts.cfg 2006/07/31 v1.0 MiKTeX 'babel ...
by CDbile
Tue Feb 01, 2011 12:57 pm
Forum: Fonts & Character Sets
Topic: mathptmx + math environment
Replies: 5
Views: 6756

mathptmx + math environment

Hello everybody,

Reading l2tabu, I found out that the package "times" I used was obsolete, and so I began to use mathpmx / helvet / courier.

But, any time I put a math env. in my document, pdflatex does not compile, and I get 0 pages, and no errors / warnings too.

Here is my sample code ...