Search found 10 matches

by Duckman
Tue Mar 24, 2015 3:22 pm
Forum: Texmaker and TeXstudio
Topic: TeXmaker Portable
Replies: 1
Views: 7394

TeXmaker Portable

In the near future I have to work at computers that aren't my own. I saw there is a Texmaker USB version but that is without compiler etc. I put it on e USB drive together with TeXlive compiler but how do I make it work with the compiler? And I think I need Ghostscript as well.
So how can I make a ...
by Duckman
Mon Sep 01, 2014 2:26 pm
Forum: Graphics, Figures & Tables
Topic: Pictures and text horizontal aligned
Replies: 0
Views: 2025

Pictures and text horizontal aligned

I have chemical equation built up with (3D) pictures of the molecules and some numbers to make the equation right. The first picture has more hight then the rest. I like every thing alinged horizontal in the centre. Text parts and pictures.

\begin{figure}[h]
\fontsize{20}{24}\selectfont ...
by Duckman
Wed Feb 05, 2014 5:08 pm
Forum: Page Layout
Topic: Booklet from a Document with landscape Pages
Replies: 0
Views: 2696

Booklet from a Document with landscape Pages

I'm a big fan of the booklet.

If I get a PDF file from some one I like to convert it into a booklet. I use a short script showed down below.

It works most of the time. How ever some times I get documents which have some pages in landscape. These pages aren't rotated but just shrunk (till A6). How ...
by Duckman
Tue Oct 15, 2013 3:17 pm
Forum: Graphics, Figures & Tables
Topic: Sequence for four Presentation Slides on one Page
Replies: 0
Views: 2713

Sequence for four Presentation Slides on one Page

I almost have it right. What I like to do is to insert a PowerPoint presentation in LaTeX. First I made a PDF and then insert this code.
\includepdf[
pages={-},
nup=2x2,
angle=90,
height=12cm,
frame=true,
delta=10 10
]{presentation.pdf}
I do get four slides on one page. But the first slide ...
by Duckman
Fri Aug 23, 2013 9:18 am
Forum: Decision Guidance
Topic: LaTeX on a Tablet
Replies: 1
Views: 28542

LaTeX on a Tablet

I normally work with TeXMaker (on Linux and Windows). I now also have a tablet (Android 4.2) And like to have a simple LaTeX editor (compiler). If I look at the app store (google play) there are a couple but have any one have (good or bad) experience with one of these editors?
by Duckman
Thu Aug 22, 2013 11:49 am
Forum: Page Layout
Topic: Booklet layout
Replies: 0
Views: 5106

Booklet layout

To make nice booklets from existing PDF file's I use a small LaTeX code.

\documentclass[a4paper]{article}
\usepackage[pdftex]{color,graphicx,epsfig}
\usepackage[final]{pdfpages}
\begin{document}
\includepdf[pages=-,%
%nup=1x2,
landscape,
%booklet=true, %make a booklet max 36 page, than use ...
by Duckman
Mon Jan 23, 2012 12:52 pm
Forum: Page Layout
Topic: hyperref | Links to Figure Captions
Replies: 2
Views: 3413

hyperref | Links to Figure Captions

I use \hypersetup{} for linking in the PDF document for sections this works fine. But for figure's it links the figure title on top of the page. The figure it self is then not visible. Is there a way for figure's it links that the figure is visible?

part of the code


\usepackage{hyperref ...
by Duckman
Wed Jan 04, 2012 10:53 am
Forum: Graphics, Figures & Tables
Topic: Keep Figure inside Subsection
Replies: 2
Views: 94279

Re: Keep Figure inside Subsection

;)
\FloatBarrier
does the trick thanks.
by Duckman
Tue Jan 03, 2012 5:01 pm
Forum: New Members
Topic: Hello all
Replies: 1
Views: 1638

Hello all

I work for 2 mount now with LaTeX. Meanly use it for technical reports. There is still a lot to learn.

Sander
by Duckman
Tue Jan 03, 2012 4:17 pm
Forum: Graphics, Figures & Tables
Topic: Keep Figure inside Subsection
Replies: 2
Views: 94279

Keep Figure inside Subsection

I have several short subsections with figures. I use
\subsection{text}
text
\begin{figure}[h]
\centering
\includegraphics[width=3.8cm]{Image/img003.jpg}
\includegraphics[width=3.8cm]{Image/img004.jpg}
\captionof{figure}{text}
\label{figuur:opnemer}
\end{figure}
and than a new subsection. But ...