Search found 13 matches

by avoyance
Sat Dec 31, 2016 2:00 pm
Forum: Text Formatting
Topic: Rotate a footnote marker
Replies: 2
Views: 2726

Rotate a footnote marker

I tried

\renewcommand{\thefootnote}{\rotatebox[origin=cc]{-90}{footnote}}

but got an error message....so what is the correct way to rotate the footnote marker?
by avoyance
Tue Mar 17, 2015 10:39 am
Forum: Graphics, Figures & Tables
Topic: arranging a lot of pictures
Replies: 4
Views: 8359

Re: arranging a lot of pictures

I tried the suggestion by igbasi using tcolorbox.
But did not got what I want. Completely different.
Perhaps you mis-understood what I want.
I want somehow the system can automatically make small adjustment for the size of my picture so that they can fit into one page or so.

I am arranging many ...
by avoyance
Sat Oct 11, 2014 7:21 am
Forum: Graphics, Figures & Tables
Topic: arranging a lot of pictures
Replies: 4
Views: 8359

arranging a lot of pictures

The principal of TeX is box arrangement, and there are glue/sping between boxes...etc.

Now I have a lot of pictures. Specifically, they looks like:
\noindent\includegraphics[width=\textwidth, angle=0]{K11-6-1}
\noindent\includegraphics[width=\textwidth, angle=0]{K11-6-2}
\noindent\includegraphics ...
by avoyance
Fri May 20, 2011 12:03 am
Forum: Text Formatting
Topic: T{\acute{}} VS T'
Replies: 7
Views: 5324

T{\acute{}} VS T'

This code:


\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\Huge
$T'$ and $T^\prime$ and $T^{\acute{}}$
\end{document}


Yields this:
ts.png

Surely you can see the difference between the first two on one hand, and the last one, on the other?[/quote]


so...which one is the ...
by avoyance
Thu May 19, 2011 7:13 am
Forum: Text Formatting
Topic: T{\acute{}} VS T'
Replies: 7
Views: 5324

T{\acute{}} VS T'

frabjous wrote:Yes, that's what I wrote. ' gives a prime symbol. \acute{} does not. Anyway, there's nothing easier than checking it yourself.

I concluded that there is no difference using T^\prime and T^{\acute{}}
but it is actually best to use T'
by avoyance
Thu May 19, 2011 2:40 am
Forum: Text Formatting
Topic: T{\acute{}} VS T'
Replies: 7
Views: 5324

T{\acute{}} VS T'

frabjous wrote:I assume you mean with both in math mode? Yes, they're different. Try it and see. \acute{} inserts an accent mark, and ' indicates a "prime" symbol (same as ^\prime, I believe).
' also gave a prime symbol
by avoyance
Thu May 19, 2011 1:13 am
Forum: Text Formatting
Topic: T{\acute{}} VS T'
Replies: 7
Views: 5324

T{\acute{}} VS T'

Is there any difference between typing

Code: Select all

T{\acute{}}
and

Code: Select all

T'
?
by avoyance
Mon Apr 04, 2011 2:18 pm
Forum: Graphics, Figures & Tables
Topic: how to delete a counter?
Replies: 0
Views: 2260

how to delete a counter?

LaTex has command to set a counter. But there seems to have no command to delete a counter.

The problem happens when I use a TiKz program
http://www.texample.net/tikz/examples/fibonacci-spiral/
to plot a fibonacci-spiral.
It uses three counter a,b,temp.
I use \include{chapter number} to include a ...
by avoyance
Mon Apr 04, 2011 9:14 am
Forum: General
Topic: conditional new page
Replies: 6
Views: 6034

Re: conditional new page

I tried the new one. But it is the same if I use book class, i.e. it is good only for the first chapter. Sorry I do not know how to modify it.
by avoyance
Sat Apr 02, 2011 2:40 pm
Forum: General
Topic: conditional new page
Replies: 6
Views: 6034

conditional new page

Hallo,
I'm trying to renew the section command: I'd like to create a new page for each section, but not for the first one! That's because I also use \part, and after every "part title" should begin the first section, but now I have a black page because of the command \newpage.

Do you know ho to ...