5 Comments

  1. sarvesh

    Dear Bob, I want to put different logo in thesis provided by iisc banglore. But i could not able to do the desired changes in the style file(iisclogo.sty) of it which i found on http://http://etd.ncsi.iisc.ernet.in/instructions/templates.htm (in Style Files for LATEX template)
    How do i make changes in it so that i replaced the existing logo with another one.
    i would be very thankful to you if you help me in that.

    with regards
    sarvesh

    • Hi Sarvesh,

      As you already pointed out, the logo is in the style file “iisclogo.sty” in text form. Just remove the command \iisclogotrue or change it to false. Then add your own logo.

      Good luck,
      Tom.

  2. Siempre Indeciso

    Hi,

    I’ve 3 depths of nesting, and I want it to look as
    1. —
    1.1 —
    1.1.1 — label{XX}

    my problem is that when I make reference to 1.1.1 (label XXX) I get the label “1(1)1”. I mean I write ref{XX} and I get “1(1)1”

    It must be really easy, but I do not know how to do it.

    Thanks.

    • Hi!

      I suggest using the enumitem package rather than the enumerate package, as it provides more flexibility. Here is an example:

      \documentclass{article}
      \usepackage{enumitem}
      \setlist[enumerate]{label*=\arabic*.}
      \begin{document}
      \begin{enumerate}
      \item First level
      \begin{enumerate}
      \item Second level
      \begin{enumerate}
      \item Third level \label{itm:thirdlvl}
      \end{enumerate}
      \end{enumerate}
      \end{enumerate}
      Reference to item \ref{itm:thirdlvl}
      \end{document}

      Best, Tom.

Leave a Reply