Search found 13 matches

by itatitl
Tue Feb 18, 2014 7:49 am
Forum: Text Formatting
Topic: advanced use of enumerate
Replies: 12
Views: 20150

advanced use of enumerate

There is a problem with the counter while using nested enumeration.
\documentclass{article}

\newcommand\itemone{\stepcounter{enumi}\item[$\ast$\, \theenumi.]}
\newcommand\itemtwo{\stepcounter{enumi}\item[$\ast\ast$\, \theenumi.]}
\newcommand\itemthree{\stepcounter{enumi}\item[$\ast\ast\ast ...
by itatitl
Wed Feb 12, 2014 3:27 am
Forum: Text Formatting
Topic: advanced use of enumerate
Replies: 12
Views: 20150

Re: advanced use of enumerate

Thank you; that works.
by itatitl
Wed Jan 29, 2014 11:51 am
Forum: Text Formatting
Topic: advanced use of enumerate
Replies: 12
Views: 20150

advanced use of enumerate

Is it possible to modify this so that it works for various labelling styles?
For example, the current one fails when we try

Code: Select all

\begin{enumerate}[(i)]
\item One
\item Two
\itemone Three
\end{enumerate}
by itatitl
Mon Jan 06, 2014 7:53 am
Forum: Page Layout
Topic: Title sections as Lecture 1, Lecture 2 serially
Replies: 2
Views: 5037

Re: Title sections as Lecture 1, Lecture 2 serially

Thanks a lot Clemens,
That works perfect. I have the option to remove the lecture titles as well ( with \section{}).
Regards,
Itatitl.
by itatitl
Wed Jan 01, 2014 12:29 pm
Forum: Page Layout
Topic: Title sections as Lecture 1, Lecture 2 serially
Replies: 2
Views: 5037

Title sections as Lecture 1, Lecture 2 serially

I am preparing some lecture plan/notes. I just want to put \section for each lecture and get that section titled as Lecture 1, Lecture 2 serially. ( Not 0.1 Lecture 1, 0.2 Lecture 2 , etc.) What would be a simple method to achieve this.
Thanks
by itatitl
Tue Oct 23, 2012 2:51 pm
Forum: Page Layout
Topic: beamer | Display Frame Numbers instead of Page Numbers
Replies: 1
Views: 10500

beamer | Display Frame Numbers instead of Page Numbers

I am using the beamer class to prepare a presentation.

\documentclass{beamer}

\pagestyle{plain}

\setbeamertemplate{footline}[frame number]

\begin{document}
\begin{frame}
This is frame 1
\end{frame}
\begin{frame}
This is frame 2 \\
\pause
This also is frame 2
\pause
\end{frame}%
\end ...
by itatitl
Sat Sep 22, 2012 10:13 am
Forum: Math & Science
Topic: amsthm | Boldfaced Proof Label
Replies: 2
Views: 9472

amsthm | Boldfaced Proof Label

Thank you very much for the reply. It seems the problem is with the theoremref package.
\documentclass[12pt,twoside,a4paper]{report}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{theoremref}
\newtheorem{theo}{Theorem}
\makeatletter
\renewenvironment{proof}[1][\proofname]{%
\par\pushQED{\qed ...
by itatitl
Fri Sep 21, 2012 8:03 am
Forum: Math & Science
Topic: amsthm | Boldfaced Proof Label
Replies: 2
Views: 9472

amsthm | Boldfaced Proof Label

I am using the packages amsmath and amsthm for the document. I wanted the theorems and proofs (while using the environments thm , proof , etc) to be printed in the same bold font. I found a workaround at TeX.SX which suggested pasting the following to the preamble.
\makeatletter
\renewenvironment ...
by itatitl
Tue Jul 10, 2012 5:45 am
Forum: General
Topic: amsthm | Counters for Theorem Environments cause Problems
Replies: 4
Views: 7008

Re: amsthm | Counters for Theorem Environments cause Problem

Thanks for the reply. This clarifies it. I need not put [section] on lemma, prop, etc as I had already declared them to be [thm] and want to follow a common numbering scheme.
by itatitl
Mon Jul 09, 2012 12:14 pm
Forum: General
Topic: amsthm | Counters for Theorem Environments cause Problems
Replies: 4
Views: 7008

Re: amsthm | Counters for Theorem Environments cause Problem

Thanks for the reply. I see that the [section] and [thm] arguments are mutually exclusive. But is there any way to achieve this ( common numbering for theorems and lemmas but with section number prepended)? Is it possible to do this via running sections as different files of a single project.