
Search found 77 matches
- Fri May 29, 2009 10:16 am
- Forum: Graphics, Figures & Tables
- Topic: tables & colums & pages
- Replies: 1
- Views: 1771
- Tue Apr 21, 2009 6:44 pm
- Forum: BibTeX, biblatex and biber
- Topic: bibliography without URL and DOI fields
- Replies: 5
- Views: 30147
Re: bibliography without URL and DOI fields
If you don´t want to remove the fields just comment them with %.
I particularly use babunsrt-fl style in order to have entries in different languages, but I never use the DOI field for example...
You could modify the .sty file and rename it, just remove from the .sty file the fields you don´t want ...
I particularly use babunsrt-fl style in order to have entries in different languages, but I never use the DOI field for example...
You could modify the .sty file and rename it, just remove from the .sty file the fields you don´t want ...
- Tue Apr 21, 2009 11:30 am
- Forum: BibTeX, biblatex and biber
- Topic: bibliography without URL and DOI fields
- Replies: 5
- Views: 30147
Re: bibliography without URL and DOI fields
Hi,
I think it is enough with removing the fields (url=...,DOI=...,) from the bibliography entry.
Regards.
I think it is enough with removing the fields (url=...,DOI=...,) from the bibliography entry.
Regards.
- Mon Apr 20, 2009 11:20 am
- Forum: Page Layout
- Topic: Change footnote spacing and font size
- Replies: 1
- Views: 8870
Change footnote spacing and font size
Have a look at the footmisc http://www.ctan.org/tex-archive/help/Ca ... tmisc.html package documentation.
- Mon Apr 20, 2009 9:38 am
- Forum: Graphics, Figures & Tables
- Topic: Make LaTeX leave a picture alone
- Replies: 6
- Views: 5637
Make LaTeX leave a picture alone
John, here is a tricky way to solve your problem, and it works fine:
\begin{figure}[h]
\centering
\includegraphics[width=0.4\textwidth]{sa.eps}
%with vspace you can place the caption over the figure
\vspace*{-1cm} \caption[Sistema de automatización: estructura funcional]{Estructura funcional ...
\begin{figure}[h]
\centering
\includegraphics[width=0.4\textwidth]{sa.eps}
%with vspace you can place the caption over the figure
\vspace*{-1cm} \caption[Sistema de automatización: estructura funcional]{Estructura funcional ...
- Fri Apr 17, 2009 1:10 pm
- Forum: Graphics, Figures & Tables
- Topic: Make LaTeX leave a picture alone
- Replies: 6
- Views: 5637
Make LaTeX leave a picture alone
To become the caption over the figure just insert the \caption line over the \includegraphics line...
For vertical centering try \vspace*{x cm} over the figure environment maybe using float package (\usepackage{float}) in order to employ the H option this way:
\newpage
% vertical alignment ...
For vertical centering try \vspace*{x cm} over the figure environment maybe using float package (\usepackage{float}) in order to employ the H option this way:
\newpage
% vertical alignment ...
- Fri Apr 17, 2009 11:54 am
- Forum: Document Classes
- Topic: How to modify \autoref?
- Replies: 2
- Views: 4418
How to modify \autoref?
Using varioref package ...

In order to modify also the caption of the figures:

Code: Select all
\usepackage{varioref}
\labelformat{figure}{#1~Figure}

In order to modify also the caption of the figures:
Code: Select all
\usepackage{caption}
\DeclareCaptionLabelFormat{number-fig}{#2~#1}
\captionsetup{labelformat=number-fig}

- Thu Apr 16, 2009 4:33 pm
- Forum: Graphics, Figures & Tables
- Topic: Make LaTeX leave a picture alone
- Replies: 6
- Views: 5637
Re: Make LaTeX leave a picture alone
Try with:
\begin{figure}[p]
%the option p, places the figure alone in a page
\centering
\includegraphics{your_figure.eps}
\caption[Short caption for the index of figures]{Caption under the figure.} \label{fig:your_figure}
\end{figure}
Regards
\begin{figure}[p]
%the option p, places the figure alone in a page
\centering
\includegraphics{your_figure.eps}
\caption[Short caption for the index of figures]{Caption under the figure.} \label{fig:your_figure}
\end{figure}
Regards
- Tue Apr 14, 2009 10:13 am
- Forum: BibTeX, biblatex and biber
- Topic: How do i force something into the bibliography?
- Replies: 3
- Views: 3328
Re: How do i force something into the bibliography?
Anty!
I would recommend you Jabref to manage your bibliography, it is very practical. This is a software with GUI.
Regards.
I would recommend you Jabref to manage your bibliography, it is very practical. This is a software with GUI.
Regards.
- Wed Mar 18, 2009 2:27 pm
- Forum: General
- Topic: How to (slightly) modify autoref feature of hyperref package
- Replies: 2
- Views: 2806
Re: How to (slightly) modify autoref feature of hyperref package
I would try with:
\def\sectionautorefname{\S\hspace*{-2pt}}
try with different values of pt, I don´t know extactly how long is a single space in your latex document.
\def\sectionautorefname{\S\hspace*{-2pt}}
try with different values of pt, I don´t know extactly how long is a single space in your latex document.