Re: Roman Section-Letter subsection numbering

2012-01-02 Thread Victor
BcBob  gmail.com> writes:

> 
> 
> I am writing a paper for a journal that wants the sections numbered in
> capital roman numerals and the subsections as capital letters. The
> subsubsections are numbers. As an example, II.B.3
> 
> I found a discussion on roman numbering and adding the following to the
> document Latex Preamble does change the section numbers to capital roman
> numerals:
> \usepackage{remreset}
> \renewcommand{\thesection}{\Roman{section}}
> 
> This produces, for example II.2.3
> 
> How can I change the subsections to letters so II.2.3 -> II.B.3?
> 
> TIA for any help.
> 
> Bob
> 


Hi Bob. As I had to do the same I ran into your question. I don't know if you 
solved it already but I added this:

\def\thesection{\Roman{section}}
\def\thesubsection{\thesection.\Alph{subsection}}

to the preamble and it worked.
Also I don't know if it's important but I am using the version LyX2.0.2 
(25/Nov/2012), and MiKTeX2.9. No funny packages installed, only the default 
ones 
from the bundle at MiKTeX website. =]



Re: Roman Section-Letter subsection numbering

2010-09-05 Thread Guenter Milde
On 2010-09-04, BcBob wrote:


> BcBob wrote:

>> I am writing a paper for a journal that wants the sections numbered in
>> capital roman numerals and the subsections as capital letters. The
>> subsubsections are numbers. As an example, II.B.3

>> 

>> Can someone provide a link to where this is documented? I assume it is
>> part of the "remreset" package??

Its part of TeX, the base of LaTeX and hence documented in any
comprehensive textbook about these two. Also, searching the latex faq
should bring some hints and links.

> Also, how can I get Lyx to use this format for the numbering in the editing
> pane? Now, it uses the 2.2.3 format.

You would need to create a LyX layout file. See the Customization manual
(Help>Customization).

Günter



Re: Roman Section-Letter subsection numbering

2010-09-04 Thread BcBob


BcBob wrote:
> 
> I am writing a paper for a journal that wants the sections numbered in
> capital roman numerals and the subsections as capital letters. The
> subsubsections are numbers. As an example, II.B.3
> 
> 
> 
> Can someone provide a link to where this is documented? I assume it is
> part of the "remreset" package??
> 

Also, how can I get Lyx to use this format for the numbering in the editing
pane? Now, it uses the 2.2.3 format.

Bob

-- 
View this message in context: 
http://lyx.475766.n2.nabble.com/Roman-Section-Letter-subsection-numbering-tp5497467p5498850.html
Sent from the LyX - Users mailing list archive at Nabble.com.


Re: Roman Section-Letter subsection numbering

2010-09-04 Thread BcBob


BcBob wrote:
> 
> I am writing a paper for a journal that wants the sections numbered in
> capital roman numerals and the subsections as capital letters. The
> subsubsections are numbers. As an example, II.B.3
> 

Adding these lines to the preamble seems to work (I do not seem to have to
specify the subsubsection format):

\usepackage{remreset}
\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\thesubsection}{\Roman{section}.\Alph{subsection}}

Can someone provide a link to where this is documented? I assume it is part
of the "remreset" package??
-- 
View this message in context: 
http://lyx.475766.n2.nabble.com/Roman-Section-Letter-subsection-numbering-tp5497467p5498831.html
Sent from the LyX - Users mailing list archive at Nabble.com.