Search found 19 matches

by nadaa
Thu Nov 30, 2017 9:53 pm
Forum: BibTeX, biblatex and biber
Topic: space between reference entries
Replies: 1
Views: 9483

space between reference entries

Hi,
I want to put a oneandhalf space between reference entries. I use "unsrt" biblography style. Here is a minumum work

\documentclass[a4paper,12pt]{report}
\usepackage{cite}
\usepackage[numbers,sort&compress]{natbib}
\begin {document}
\bibliographystyle{unsrt}
\bibliography {bibfile}

\end ...
by nadaa
Sun Nov 05, 2017 11:07 am
Forum: Page Layout
Topic: A blank page added before an arabic abstract
Replies: 2
Views: 5342

A blank page added before an arabic abstract

Hi Nadaa,

perhaps don't include as external file, but copy it right into the document instead. Like this:

\documentclass[a4paper,12pt]{report}
...
\begin{document}
Text
\bibliographystyle{unsrt}
\bibliography{bibfile}
% ==============arabic abstract===============
\renewcommand{\abstractname ...
by nadaa
Sat Nov 04, 2017 8:52 pm
Forum: Page Layout
Topic: A blank page added before an arabic abstract
Replies: 2
Views: 5342

A blank page added before an arabic abstract

Hi,

I am working on a thesis which I need to add Arabic abstract at the end of the document after the bibliography.
The problem is when I include the Arabic abstract in the main tex file. a new blank page is created before the abstract. (Note: I tried to include the English abstract instead and it ...
by nadaa
Thu Nov 02, 2017 10:26 pm
Forum: Page Layout
Topic: subfigures alignment horizontally
Replies: 2
Views: 38793

subfigures alignment horizontally

Johannes_B wrote:A blank line will always lead to vertical content, as it is a paragraph break. Remove the blan ine or put a % at the very beginning.
Thanks a lot, Johannes. This really helped me! :D
by nadaa
Thu Nov 02, 2017 8:58 pm
Forum: Page Layout
Topic: subfigures alignment horizontally
Replies: 2
Views: 38793

subfigures alignment horizontally

Hi,
I want to align many subfigures horizontally in pairs. It worked with me using the below code only in once, and images appear vertically if I use the same code again in consecutive pages.

\documentclass[a4paper,12pt]{report}
\begin{document}
\begin{figure}[h]
\begin{subfigure}[b]{0.5 ...
by nadaa
Mon Oct 02, 2017 8:01 pm
Forum: Page Layout
Topic: Set different top margin for TOC and LOF
Replies: 0
Views: 2123

Set different top margin for TOC and LOF

Hi,

I am working on my thesis, and I want to set the top margin for the table of content as follows:
The first page (top margin =5cm), rest toc pages (top margin= 1cm).

https://imagebin.ca/v/3cQGpKxDUtLh

https://imagebin.ca/v/3cQH3O2h5y9u


Here is the MWE

\documentclass[a4paper,12pt ...
by nadaa
Mon Sep 25, 2017 1:52 pm
Forum: Page Layout
Topic: Adding a heading to the table of contents
Replies: 10
Views: 8180

Adding a heading to the table of contents

Knowing all stuff is not so important. A key is, to know where to look for (documentation), work with source code of packages, just try fixing things. There are good ways to know, such as why and how to build a - once one understood that, he easily tracks down problems and either fixes them himself ...
by nadaa
Sun Sep 24, 2017 10:36 pm
Forum: Page Layout
Topic: Adding a heading to the table of contents
Replies: 10
Views: 8180

Adding a heading to the table of contents

Thanks, I tried it, but the same.

Are you sure that you did not omit the braces? They are required, they keep the change local. Either

{\toctrue\tableofcontents}

or

\toctrue
\tableofcontents
\tocfalse

should work.

Stefan

Yes, it works. I forgot the brackets.
Thank you :)
How I can ...
by nadaa
Sun Sep 24, 2017 10:18 pm
Forum: Page Layout
Topic: Adding a heading to the table of contents
Replies: 10
Views: 8180

Adding a heading to the table of contents

Then use it this way:

\usepackage{afterpage}
\newif\iftoc
\newcommand*{\headline}{%
\hbox to \linewidth{\normalfont\underline{Title}\hfill\underline{Page}}
\bigskip\afterpage{\iftoc\headline\fi}}
\addtocontents{toc}{\protect\headline}
...
\begin{document}
...
{\toctrue\tableofcontents}

Stefan ...
by nadaa
Sun Sep 24, 2017 8:55 pm
Forum: Page Layout
Topic: Adding a heading to the table of contents
Replies: 10
Views: 8180

Adding a heading to the table of contents

Please post a minimal but compilable example of your code. It takes too much time to imagine and create some code, that may be similar to what you wrote, or not... no way to test without your code.

Stefan

Hi Stefan. I am working on a large document (thesis). My question is about formatting table ...