Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-12 Thread Andrei Popov
Hello Banibrata,

Sunday, December 11, 2005, 10:30:10 AM, you wrote:

 Q-1) How do I leave a page Intetionally Blank, after the title page,
 and before the abstract page, if I am using..

smth like \thispagestyle{empty} should do the trick, if I remember
correctly.

-- 
WBR,
Andrei Popov

Using LyX 1.3.6 on Debian GNU/Linux



Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-12 Thread Andrei Popov
Hello Banibrata,

Sunday, December 11, 2005, 10:30:10 AM, you wrote:

 Q-1) How do I leave a page Intetionally Blank, after the title page,
 and before the abstract page, if I am using..

smth like \thispagestyle{empty} should do the trick, if I remember
correctly.

-- 
WBR,
Andrei Popov

Using LyX 1.3.6 on Debian GNU/Linux



Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-12 Thread Andrei Popov
Hello Banibrata,

Sunday, December 11, 2005, 10:30:10 AM, you wrote:

> Q-1) How do I leave a page "Intetionally Blank", after the title page,
> and before the abstract page, if I am using..

smth like \thispagestyle{empty} should do the trick, if I remember
correctly.

-- 
WBR,
Andrei Popov

Using LyX 1.3.6 on Debian GNU/Linux



Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Banibrata Dutta
Hi,

Hoping that some LaTeX experts here may be able to help me with a book
project which I am doing in LaTeX (instead of LyX).

Q-1) How do I leave a page Intetionally Blank, after the title page,
and before the abstract page, if I am using...

\documentclass[11pt,a4paper,titlepage]{article}
\usepackage{fullpage}
\usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
\usepackage{graphicx}

Note that, the following didn't work...

\begin{document}
\maketitle
\newpage
This page is intentionally left blank.
\newpage
\begin{abstract}


Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
my hyperlinks get a blue or red bounding-box. How do I do away with the
bounding-box (or say a white bounding-box) ? I am more interested in the
way which works for dvipdfm.

Q-3) I use MicroSoft Visio to create some network diagrams, and converted
them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
image quality in the document (.dvi or the generated final .pdf) seems much
lower quality than the JPEG itself. Any way to get high quality image in my
final PDF ?

Q-4) How do I solve this footnote problem ? I reference a footnote in the
main text as follows... SomeText\footnotemark{1}. The footnote definition
is done as follows..
\footnotetext[1]{SomeDescriptiveText}
... but the problem is that in the generated .dvi / .pdf, I find that in the
main body the text appears with the superscript 1 after SomeText (as
expected), but also an additional regular-size _1 after the subscript,
which is unexpected and undesired.

Q-5) How to include some text in the document that is not part of any
section ? For example, I want to put some text into a Copyright section at
the end of my document, in a separate page, with a Heading, but can't
figure out how to get the heading, and ensure that it is not listed in the
table of contents.

Q-6) How do I get a References section, which also is included in table
of contents ? My current usage:-
\newpage
\bibliographystyle{alpha}
\bibliography{id-bilog}
\nocite{Alan2005}
... puts a References heading automatically, (i.e. without the \section
directive), but doesn't include it in the table of contents either.

Q-7) How to limit float feature ? I want to ensure that my two figures (on
a single page), are separated by some text. Overall, for the document, I
want to retain the float feature. Without the ability to control, my 2
figures appear one after the other, although they are logically for two
different paragraphs.

thanks  best regards,
b.dutta


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Karsten Heymann

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Barnibrata,

Banibrata Dutta schrieb:
| Hoping that some LaTeX experts here may be able to help me with a book
| project which I am doing in LaTeX (instead of LyX).

Personally, if I was you I would ask those questions in a TeX-Newsgroup
like comp.text.tex, there are *far* more experts there (not that I would
count myself as one ... ;-) )

| Q-1) How do I leave a page Intetionally Blank, after the title page,
| and before the abstract page, if I am using...
|
| \documentclass[11pt,a4paper,titlepage]{article}

Don't use article for a book. Use book or better scrbook for it. article
is for articles. scrbook is the book class from KOMA-Script, which is
much improved compared to standard classes. Its very nice documented,
look after scrguien.pdf on your system or CTAN (ctan.org).

| \usepackage{fullpage}

Better use \usepackage{geometry} or typearea (documented in the
KOMA-Script manual but can be used independently too).

| \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
| \usepackage{graphicx}
|
| Note that, the following didn't work...
|
| \begin{document}
| \maketitle
| \newpage
| This page is intentionally left blank.
| \newpage
| \begin{abstract}

Yepp, LaTeX inserts pages with pagestyle empty after \maketitle. You
somehow have to add the intentionally blank-Text to the
empty-pagestyle (don't know how atm).


| Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
| my hyperlinks get a blue or red bounding-box. How do I do away with the
| bounding-box (or say a white bounding-box) ? I am more interested in the
| way which works for dvipdfm.

Read the documentation to the hyperref package which you are using.

| Q-3) I use MicroSoft Visio to create some network diagrams, and converted
| them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
| compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
| image quality in the document (.dvi or the generated final .pdf) seems
much
| lower quality than the JPEG itself. Any way to get high quality image
in my
| final PDF ?

pdflatex can eat jpgs directly. No need for conversion (although I'd try
hard to get pngs from Visio which pdflatex can use as well and which are
much better for non-photos).

| Q-4) How do I solve this footnote problem ? I reference a footnote in the
| main text as follows... SomeText\footnotemark{1}. The footnote
definition
| is done as follows..

why don't you use \footnote{} ?

| Q-5) How to include some text in the document that is not part of any
| section ? For example, I want to put some text into a Copyright
section at
| the end of my document, in a separate page, with a Heading, but can't
| figure out how to get the heading, and ensure that it is not listed in the
| table of contents.

\chapter* (or \section* if you keep with article) or \addchap rsp.
\addsec if you use scrbook and want them into the TOC.

| Q-6) How do I get a References section, which also is included in table
| of contents ? My current usage:-

Use scrbook ( ;-) ) and the bibtotoc document option.

| Q-7) How to limit float feature ? I want to ensure that my two
figures (on
| a single page), are separated by some text. Overall, for the document, I
| want to retain the float feature. Without the ability to control, my 2
| figures appear one after the other, although they are logically for two
| different paragraphs.

Did you use \begin{figure}[htbp]? Have a look at placeins.sty, there is
a command \FloatBarrier which might be helpful.

Yours,
Karsten
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDm/H3KLkXHxOeP2ERAiyoAJsHStRHXHA7XwL4cjmKX8T3oZRJVwCcDrcQ
//+fLXSISlWs5CxEi/L3aAU=
=vIyy
-END PGP SIGNATURE-


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Helge Hafting
On Sun, Dec 11, 2005 at 02:00:10PM +0530, Banibrata Dutta wrote:
 Hi,
 
 Hoping that some LaTeX experts here may be able to help me with a book
 project which I am doing in LaTeX (instead of LyX).
 
 Q-1) How do I leave a page Intetionally Blank, after the title page,
 and before the abstract page, if I am using...
 
 \documentclass[11pt,a4paper,titlepage]{article}
 \usepackage{fullpage}
 \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
 \usepackage{graphicx}
 
 Note that, the following didn't work...
 
 \begin{document}
 \maketitle
 \newpage
 This page is intentionally left blank.
 \newpage
 \begin{abstract}
 
 
 Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
 my hyperlinks get a blue or red bounding-box. How do I do away with the
 bounding-box (or say a white bounding-box) ? I am more interested in the
 way which works for dvipdfm.

Are you using the hyperref package to make hyperlinks?  Read the
documentation, there are plenty of options for controlling these things.
 
 Q-3) I use MicroSoft Visio to create some network diagrams, and converted
 them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
There is no chance of using a vector ized format instead of a bitmap
format for this?  Postscript is a good one.  A trick for windows users
might be to install a postscript printer driver and then print to file.

 compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
 image quality in the document (.dvi or the generated final .pdf) seems much
 lower quality than the JPEG itself. Any way to get high quality image in my
 final PDF ?
 
Try the pdflatex way of generating latex.  Jpegs should go in unchanged
this way, so no quality loss.

 Q-4) How do I solve this footnote problem ? I reference a footnote in the
 main text as follows... SomeText\footnotemark{1}. The footnote definition
 is done as follows..
 \footnotetext[1]{SomeDescriptiveText}
 ... but the problem is that in the generated .dvi / .pdf, I find that in the
 main body the text appears with the superscript 1 after SomeText (as
 expected), but also an additional regular-size _1 after the subscript,
 which is unexpected and undesired.
 
 Q-5) How to include some text in the document that is not part of any
 section ? For example, I want to put some text into a Copyright section at
 the end of my document, in a separate page, 
Use a page break...
 with a Heading, but can't
 figure out how to get the heading, and ensure that it is not listed in the
 table of contents.

Use a section* instead of a section.  No section number, and no
table of contents.
 
 Q-6) How do I get a References section, which also is included in table
 of contents ? My current usage:-
 \newpage
 \bibliographystyle{alpha}
 \bibliography{id-bilog}
 \nocite{Alan2005}
 ... puts a References heading automatically, (i.e. without the \section
 directive), but doesn't include it in the table of contents either.

\addcontentsline{toc}{section}{References} on that page.

Or, some document classes support a bibtotoc option.

 Q-7) How to limit float feature ? I want to ensure that my two figures (on
 a single page), are separated by some text. Overall, for the document, I
 want to retain the float feature. Without the ability to control, my 2
 figures appear one after the other, although they are logically for two
 different paragraphs.

Make sure there actually is text between them.  Then, experiment with
the settings for float positioning.  Sometimes what you want can't be done
because it'll produce too ugly output.  Mainly, the problem is
that a float doesn't fit on the bottom of the page, so it is moved
to the next.  To fill the gap, text is pulled in from that next page.
That might move all the text you wanted to go between the float, and when
the next page opens up there are two floats queued up.  Moving text
around so the paragraphs with floats ends up elsewhere on the page
might help.

Consider setting the first float to top of page, and the second one
to bottom.

Helge Hafting


Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Banibrata Dutta
Hi,

Hoping that some LaTeX experts here may be able to help me with a book
project which I am doing in LaTeX (instead of LyX).

Q-1) How do I leave a page Intetionally Blank, after the title page,
and before the abstract page, if I am using...

\documentclass[11pt,a4paper,titlepage]{article}
\usepackage{fullpage}
\usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
\usepackage{graphicx}

Note that, the following didn't work...

\begin{document}
\maketitle
\newpage
This page is intentionally left blank.
\newpage
\begin{abstract}


Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
my hyperlinks get a blue or red bounding-box. How do I do away with the
bounding-box (or say a white bounding-box) ? I am more interested in the
way which works for dvipdfm.

Q-3) I use MicroSoft Visio to create some network diagrams, and converted
them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
image quality in the document (.dvi or the generated final .pdf) seems much
lower quality than the JPEG itself. Any way to get high quality image in my
final PDF ?

Q-4) How do I solve this footnote problem ? I reference a footnote in the
main text as follows... SomeText\footnotemark{1}. The footnote definition
is done as follows..
\footnotetext[1]{SomeDescriptiveText}
... but the problem is that in the generated .dvi / .pdf, I find that in the
main body the text appears with the superscript 1 after SomeText (as
expected), but also an additional regular-size _1 after the subscript,
which is unexpected and undesired.

Q-5) How to include some text in the document that is not part of any
section ? For example, I want to put some text into a Copyright section at
the end of my document, in a separate page, with a Heading, but can't
figure out how to get the heading, and ensure that it is not listed in the
table of contents.

Q-6) How do I get a References section, which also is included in table
of contents ? My current usage:-
\newpage
\bibliographystyle{alpha}
\bibliography{id-bilog}
\nocite{Alan2005}
... puts a References heading automatically, (i.e. without the \section
directive), but doesn't include it in the table of contents either.

Q-7) How to limit float feature ? I want to ensure that my two figures (on
a single page), are separated by some text. Overall, for the document, I
want to retain the float feature. Without the ability to control, my 2
figures appear one after the other, although they are logically for two
different paragraphs.

thanks  best regards,
b.dutta


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Karsten Heymann

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Barnibrata,

Banibrata Dutta schrieb:
| Hoping that some LaTeX experts here may be able to help me with a book
| project which I am doing in LaTeX (instead of LyX).

Personally, if I was you I would ask those questions in a TeX-Newsgroup
like comp.text.tex, there are *far* more experts there (not that I would
count myself as one ... ;-) )

| Q-1) How do I leave a page Intetionally Blank, after the title page,
| and before the abstract page, if I am using...
|
| \documentclass[11pt,a4paper,titlepage]{article}

Don't use article for a book. Use book or better scrbook for it. article
is for articles. scrbook is the book class from KOMA-Script, which is
much improved compared to standard classes. Its very nice documented,
look after scrguien.pdf on your system or CTAN (ctan.org).

| \usepackage{fullpage}

Better use \usepackage{geometry} or typearea (documented in the
KOMA-Script manual but can be used independently too).

| \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
| \usepackage{graphicx}
|
| Note that, the following didn't work...
|
| \begin{document}
| \maketitle
| \newpage
| This page is intentionally left blank.
| \newpage
| \begin{abstract}

Yepp, LaTeX inserts pages with pagestyle empty after \maketitle. You
somehow have to add the intentionally blank-Text to the
empty-pagestyle (don't know how atm).


| Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
| my hyperlinks get a blue or red bounding-box. How do I do away with the
| bounding-box (or say a white bounding-box) ? I am more interested in the
| way which works for dvipdfm.

Read the documentation to the hyperref package which you are using.

| Q-3) I use MicroSoft Visio to create some network diagrams, and converted
| them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
| compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
| image quality in the document (.dvi or the generated final .pdf) seems
much
| lower quality than the JPEG itself. Any way to get high quality image
in my
| final PDF ?

pdflatex can eat jpgs directly. No need for conversion (although I'd try
hard to get pngs from Visio which pdflatex can use as well and which are
much better for non-photos).

| Q-4) How do I solve this footnote problem ? I reference a footnote in the
| main text as follows... SomeText\footnotemark{1}. The footnote
definition
| is done as follows..

why don't you use \footnote{} ?

| Q-5) How to include some text in the document that is not part of any
| section ? For example, I want to put some text into a Copyright
section at
| the end of my document, in a separate page, with a Heading, but can't
| figure out how to get the heading, and ensure that it is not listed in the
| table of contents.

\chapter* (or \section* if you keep with article) or \addchap rsp.
\addsec if you use scrbook and want them into the TOC.

| Q-6) How do I get a References section, which also is included in table
| of contents ? My current usage:-

Use scrbook ( ;-) ) and the bibtotoc document option.

| Q-7) How to limit float feature ? I want to ensure that my two
figures (on
| a single page), are separated by some text. Overall, for the document, I
| want to retain the float feature. Without the ability to control, my 2
| figures appear one after the other, although they are logically for two
| different paragraphs.

Did you use \begin{figure}[htbp]? Have a look at placeins.sty, there is
a command \FloatBarrier which might be helpful.

Yours,
Karsten
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDm/H3KLkXHxOeP2ERAiyoAJsHStRHXHA7XwL4cjmKX8T3oZRJVwCcDrcQ
//+fLXSISlWs5CxEi/L3aAU=
=vIyy
-END PGP SIGNATURE-


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Helge Hafting
On Sun, Dec 11, 2005 at 02:00:10PM +0530, Banibrata Dutta wrote:
 Hi,
 
 Hoping that some LaTeX experts here may be able to help me with a book
 project which I am doing in LaTeX (instead of LyX).
 
 Q-1) How do I leave a page Intetionally Blank, after the title page,
 and before the abstract page, if I am using...
 
 \documentclass[11pt,a4paper,titlepage]{article}
 \usepackage{fullpage}
 \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
 \usepackage{graphicx}
 
 Note that, the following didn't work...
 
 \begin{document}
 \maketitle
 \newpage
 This page is intentionally left blank.
 \newpage
 \begin{abstract}
 
 
 Q-2) When I use dvipdfm or pdflatex tool to convert to PDF, all of
 my hyperlinks get a blue or red bounding-box. How do I do away with the
 bounding-box (or say a white bounding-box) ? I am more interested in the
 way which works for dvipdfm.

Are you using the hyperref package to make hyperlinks?  Read the
documentation, there are plenty of options for controlling these things.
 
 Q-3) I use MicroSoft Visio to create some network diagrams, and converted
 them to JPEG at high quality (i.e. Print-Quality 600dpi, and very low
There is no chance of using a vector ized format instead of a bitmap
format for this?  Postscript is a good one.  A trick for windows users
might be to install a postscript printer driver and then print to file.

 compression). Then I used jpeg2ps -p a4 command to convert to .EPS. The
 image quality in the document (.dvi or the generated final .pdf) seems much
 lower quality than the JPEG itself. Any way to get high quality image in my
 final PDF ?
 
Try the pdflatex way of generating latex.  Jpegs should go in unchanged
this way, so no quality loss.

 Q-4) How do I solve this footnote problem ? I reference a footnote in the
 main text as follows... SomeText\footnotemark{1}. The footnote definition
 is done as follows..
 \footnotetext[1]{SomeDescriptiveText}
 ... but the problem is that in the generated .dvi / .pdf, I find that in the
 main body the text appears with the superscript 1 after SomeText (as
 expected), but also an additional regular-size _1 after the subscript,
 which is unexpected and undesired.
 
 Q-5) How to include some text in the document that is not part of any
 section ? For example, I want to put some text into a Copyright section at
 the end of my document, in a separate page, 
Use a page break...
 with a Heading, but can't
 figure out how to get the heading, and ensure that it is not listed in the
 table of contents.

Use a section* instead of a section.  No section number, and no
table of contents.
 
 Q-6) How do I get a References section, which also is included in table
 of contents ? My current usage:-
 \newpage
 \bibliographystyle{alpha}
 \bibliography{id-bilog}
 \nocite{Alan2005}
 ... puts a References heading automatically, (i.e. without the \section
 directive), but doesn't include it in the table of contents either.

\addcontentsline{toc}{section}{References} on that page.

Or, some document classes support a bibtotoc option.

 Q-7) How to limit float feature ? I want to ensure that my two figures (on
 a single page), are separated by some text. Overall, for the document, I
 want to retain the float feature. Without the ability to control, my 2
 figures appear one after the other, although they are logically for two
 different paragraphs.

Make sure there actually is text between them.  Then, experiment with
the settings for float positioning.  Sometimes what you want can't be done
because it'll produce too ugly output.  Mainly, the problem is
that a float doesn't fit on the bottom of the page, so it is moved
to the next.  To fill the gap, text is pulled in from that next page.
That might move all the text you wanted to go between the float, and when
the next page opens up there are two floats queued up.  Moving text
around so the paragraphs with floats ends up elsewhere on the page
might help.

Consider setting the first float to top of page, and the second one
to bottom.

Helge Hafting


Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Banibrata Dutta
Hi,

Hoping that some LaTeX experts here may be able to help me with a book
project which I am doing in LaTeX (instead of LyX).

Q-1) How do I leave a page "Intetionally Blank", after the title page,
and before the abstract page, if I am using...

\documentclass[11pt,a4paper,titlepage]{article}
\usepackage{fullpage}
\usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
\usepackage{graphicx}

Note that, the following didn't work...

\begin{document}
\maketitle
\newpage
This page is intentionally left blank.
\newpage
\begin{abstract}


Q-2) When I use "dvipdfm" or "pdflatex" tool to convert to PDF, all of
my hyperlinks get a blue or red bounding-box. How do I do away with the
bounding-box (or say a white bounding-box) ? I am more interested in the
way which works for "dvipdfm".

Q-3) I use MicroSoft Visio to create some network diagrams, and converted
them to JPEG at high quality (i.e. "Print-Quality" 600dpi, and very low
compression). Then I used "jpeg2ps -p a4" command to convert to .EPS. The
image quality in the document (.dvi or the generated final .pdf) seems much
lower quality than the JPEG itself. Any way to get high quality image in my
final PDF ?

Q-4) How do I solve this footnote problem ? I reference a footnote in the
main text as follows... "SomeText\footnotemark{1}". The footnote definition
is done as follows..
\footnotetext[1]{SomeDescriptiveText}
... but the problem is that in the generated .dvi / .pdf, I find that in the
main body the text appears with the superscript "1" after "SomeText" (as
expected), but also an additional regular-size "_1" after the subscript,
which is unexpected and undesired.

Q-5) How to include some text in the document that is not part of any
section ? For example, I want to put some text into a "Copyright" section at
the end of my document, in a separate page, with a Heading, but can't
figure out how to get the heading, and ensure that it is not listed in the
table of contents.

Q-6) How do I get a "References" section, which also is included in table
of contents ? My current usage:-
\newpage
\bibliographystyle{alpha}
\bibliography{id-bilog}
\nocite{Alan2005}
... puts a "References" heading automatically, (i.e. without the \section
directive), but doesn't include it in the table of contents either.

Q-7) How to limit "float" feature ? I want to ensure that my two figures (on
a single page), are separated by some text. Overall, for the document, I
want to retain the "float" feature. Without the ability to control, my 2
figures appear one after the other, although they are logically for two
different paragraphs.

thanks & best regards,
b.dutta


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Karsten Heymann

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Barnibrata,

Banibrata Dutta schrieb:
| Hoping that some LaTeX experts here may be able to help me with a book
| project which I am doing in LaTeX (instead of LyX).

Personally, if I was you I would ask those questions in a TeX-Newsgroup
like comp.text.tex, there are *far* more experts there (not that I would
count myself as one ... ;-) )

| Q-1) How do I leave a page "Intetionally Blank", after the title page,
| and before the abstract page, if I am using...
|
| \documentclass[11pt,a4paper,titlepage]{article}

Don't use article for a book. Use book or better scrbook for it. article
is for articles. scrbook is the book class from KOMA-Script, which is
much improved compared to standard classes. Its very nice documented,
look after scrguien.pdf on your system or CTAN (ctan.org).

| \usepackage{fullpage}

Better use \usepackage{geometry} or typearea (documented in the
KOMA-Script manual but can be used independently too).

| \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
| \usepackage{graphicx}
|
| Note that, the following didn't work...
|
| \begin{document}
| \maketitle
| \newpage
| This page is intentionally left blank.
| \newpage
| \begin{abstract}

Yepp, LaTeX inserts pages with pagestyle empty after \maketitle. You
somehow have to add the "intentionally blank"-Text to the
"empty"-pagestyle (don't know how atm).


| Q-2) When I use "dvipdfm" or "pdflatex" tool to convert to PDF, all of
| my hyperlinks get a blue or red bounding-box. How do I do away with the
| bounding-box (or say a white bounding-box) ? I am more interested in the
| way which works for "dvipdfm".

Read the documentation to the hyperref package which you are using.

| Q-3) I use MicroSoft Visio to create some network diagrams, and converted
| them to JPEG at high quality (i.e. "Print-Quality" 600dpi, and very low
| compression). Then I used "jpeg2ps -p a4" command to convert to .EPS. The
| image quality in the document (.dvi or the generated final .pdf) seems
much
| lower quality than the JPEG itself. Any way to get high quality image
in my
| final PDF ?

pdflatex can eat jpgs directly. No need for conversion (although I'd try
hard to get pngs from Visio which pdflatex can use as well and which are
much better for non-photos).

| Q-4) How do I solve this footnote problem ? I reference a footnote in the
| main text as follows... "SomeText\footnotemark{1}". The footnote
definition
| is done as follows..

why don't you use \footnote{} ?

| Q-5) How to include some text in the document that is not part of any
| section ? For example, I want to put some text into a "Copyright"
section at
| the end of my document, in a separate page, with a Heading, but can't
| figure out how to get the heading, and ensure that it is not listed in the
| table of contents.

\chapter* (or \section* if you keep with article) or \addchap rsp.
\addsec if you use scrbook and want them into the TOC.

| Q-6) How do I get a "References" section, which also is included in table
| of contents ? My current usage:-

Use scrbook ( ;-) ) and the bibtotoc document option.

| Q-7) How to limit "float" feature ? I want to ensure that my two
figures (on
| a single page), are separated by some text. Overall, for the document, I
| want to retain the "float" feature. Without the ability to control, my 2
| figures appear one after the other, although they are logically for two
| different paragraphs.

Did you use \begin{figure}[htbp]? Have a look at placeins.sty, there is
a command \FloatBarrier which might be helpful.

Yours,
Karsten
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDm/H3KLkXHxOeP2ERAiyoAJsHStRHXHA7XwL4cjmKX8T3oZRJVwCcDrcQ
//+fLXSISlWs5CxEi/L3aAU=
=vIyy
-END PGP SIGNATURE-


Re: Off-topic: 7 questions about usage of LaTeX.

2005-12-11 Thread Helge Hafting
On Sun, Dec 11, 2005 at 02:00:10PM +0530, Banibrata Dutta wrote:
> Hi,
> 
> Hoping that some LaTeX experts here may be able to help me with a book
> project which I am doing in LaTeX (instead of LyX).
> 
> Q-1) How do I leave a page "Intetionally Blank", after the title page,
> and before the abstract page, if I am using...
> 
> \documentclass[11pt,a4paper,titlepage]{article}
> \usepackage{fullpage}
> \usepackage[pdftitle={ID1421, BDutta},colorlinks=false,a4paper]{hyperref}
> \usepackage{graphicx}
> 
> Note that, the following didn't work...
> 
> \begin{document}
> \maketitle
> \newpage
> This page is intentionally left blank.
> \newpage
> \begin{abstract}
> 
> 
> Q-2) When I use "dvipdfm" or "pdflatex" tool to convert to PDF, all of
> my hyperlinks get a blue or red bounding-box. How do I do away with the
> bounding-box (or say a white bounding-box) ? I am more interested in the
> way which works for "dvipdfm".
>
Are you using the "hyperref" package to make hyperlinks?  Read the
documentation, there are plenty of options for controlling these things.
 
> Q-3) I use MicroSoft Visio to create some network diagrams, and converted
> them to JPEG at high quality (i.e. "Print-Quality" 600dpi, and very low
There is no chance of using a vector ized format instead of a bitmap
format for this?  Postscript is a good one.  A trick for windows users
might be to install a postscript printer driver and then "print to file".

> compression). Then I used "jpeg2ps -p a4" command to convert to .EPS. The
> image quality in the document (.dvi or the generated final .pdf) seems much
> lower quality than the JPEG itself. Any way to get high quality image in my
> final PDF ?
> 
Try the "pdflatex" way of generating latex.  Jpegs should go in unchanged
this way, so no quality loss.

> Q-4) How do I solve this footnote problem ? I reference a footnote in the
> main text as follows... "SomeText\footnotemark{1}". The footnote definition
> is done as follows..
> \footnotetext[1]{SomeDescriptiveText}
> ... but the problem is that in the generated .dvi / .pdf, I find that in the
> main body the text appears with the superscript "1" after "SomeText" (as
> expected), but also an additional regular-size "_1" after the subscript,
> which is unexpected and undesired.
> 
> Q-5) How to include some text in the document that is not part of any
> section ? For example, I want to put some text into a "Copyright" section at
> the end of my document, in a separate page, 
Use a page break...
> with a Heading, but can't
> figure out how to get the heading, and ensure that it is not listed in the
> table of contents.
>
Use a "section* instead of a "section".  No section number, and no
table of contents.
 
> Q-6) How do I get a "References" section, which also is included in table
> of contents ? My current usage:-
> \newpage
> \bibliographystyle{alpha}
> \bibliography{id-bilog}
> \nocite{Alan2005}
> ... puts a "References" heading automatically, (i.e. without the \section
> directive), but doesn't include it in the table of contents either.

\addcontentsline{toc}{section}{References} on that page.

Or, some document classes support a "bibtotoc" option.

> Q-7) How to limit "float" feature ? I want to ensure that my two figures (on
> a single page), are separated by some text. Overall, for the document, I
> want to retain the "float" feature. Without the ability to control, my 2
> figures appear one after the other, although they are logically for two
> different paragraphs.

Make sure there actually is text between them.  Then, experiment with
the settings for float positioning.  Sometimes what you want can't be done
because it'll produce "too ugly" output.  Mainly, the problem is
that a float doesn't fit on the bottom of the page, so it is moved
to the next.  To fill the gap, text is pulled in from that next page.
That might move all the text you wanted to go between the float, and when
the next page opens up there are two floats queued up.  Moving text
around so the paragraphs with floats ends up elsewhere on the page
might help.

Consider setting the first float to top of page, and the second one
to bottom.

Helge Hafting