Search found 39 matches

by tommytex
Wed Jul 24, 2013 11:04 am
Forum: Math & Science
Topic: Connected Nodes in Matrices
Replies: 6
Views: 8654

Re: Connected Nodes in Matrices

Hi,

i think you have to let latex create the matrix first, then "overpaint" with tikz nodes, something like Alain Matthes' example:

http://www.texample.net/tikz/examples/m ... terminant/
(therefore use tikz matrix environment)

greez tommytex :geek:
by tommytex
Wed May 15, 2013 5:54 pm
Forum: Text Formatting
Topic: Include page numbers to the included PDF pages
Replies: 1
Views: 10252

Include page numbers to the included PDF pages

hi,

do you have page numbers on the included pdf's?
If you want to include the pdf files like a 1-page-image (page numbers produced by latex then), use \includegraphics
(you might set scale option to 0.9)

try

\phantomsection
\addcontentsline{toc}{section}{Your included pdf file}%
\includepdf ...
by tommytex
Sat May 11, 2013 6:23 pm
Forum: Text Formatting
Topic: Inner and outer Page Margins
Replies: 10
Views: 26883

Inner and outer Page Margins

hi,

Code: Select all

\setlength{\oddsidemargin}{...}
\setlength{\evensidemargin}{...}
that'll do the trick :mrgreen:


tommytex

see
http://www.howtotex.com/tips-tricks/tw ... e-margins/
for more information
by tommytex
Tue May 07, 2013 3:23 pm
Forum: Text Formatting
Topic: Selectively turn off Hyperlinks
Replies: 3
Views: 17029

Selectively turn off Hyperlinks

hi nikolapoljak,

yep, that's the problem with my solution you're right ;-)
but why do you want to have a file link when you do not want it to be shown?
Apart from an error message, nothing will happen if someone clicks on the file link...
maybe you could use a shell script to find out wether a ...
by tommytex
Sun Apr 28, 2013 7:41 pm
Forum: LyX
Topic: Partial ToC
Replies: 4
Views: 6291

Partial ToC

hm spooky :shock:

maybe you should check if

the chapter is listed: chapter vs. chapter*
you have set all the counters correctly (i don't know which minitoc uses, but maybe the chapter counter or section counter itself)
maybe there is not enough space on your page or some weird pagestyle ...
by tommytex
Sun Apr 28, 2013 8:47 am
Forum: LyX
Topic: Partial ToC
Replies: 4
Views: 6291

Partial ToC

Hi,

check if you used \usepackage not \userpackage. See the manual for closer description of the usage of minitoc. Try to use the commands written on page 4.


greez tommytex ;)
by tommytex
Fri Apr 26, 2013 2:59 pm
Forum: Text Formatting
Topic: Selectively turn off Hyperlinks
Replies: 3
Views: 17029

Selectively turn off Hyperlinks

hi,

you can either change href to nolinkurl or change the colour of the linked text (the link is still there but nobody can see it in the printed version)

\documentclass{article}
\usepackage{hyperref}
\usepackage[usenames,dvipsnames]{xcolor}


\hypersetup{
filecolor=black,
urlbordercolor = Red ...
by tommytex
Mon Apr 22, 2013 1:48 pm
Forum: Document Classes
Topic: Size of Title Block in Presentation
Replies: 3
Views: 13397

Size of Title Block in Presentation

hi manojg,

maybe you should make this be a new topic...
have you already tried the examples on http://www.tex.ac.uk/CTAN/macros/latex/ ... /mdframed/
(mdframed-example-default.pdf)?

mdframed

tommtex
by tommytex
Sun Apr 21, 2013 11:12 am
Forum: Page Layout
Topic: Text above Footer on every Page
Replies: 4
Views: 15465

Text above Footer on every Page

hello mayankmi,

i think what you are looking for is the following:

\documentclass{article}
\usepackage[left=2.5cm,right=2.5cm]{geometry}

\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{1pt}

\lfoot{\thepage}
\rfoot{\vspace ...
by tommytex
Sun Apr 21, 2013 10:45 am
Forum: Document Classes
Topic: Size of Title Block in Presentation
Replies: 3
Views: 13397

Size of Title Block in Presentation

hi manojg,

here is some basic example for you ;-)

\documentclass[12pt]{beamer}
\usepackage[english]{babel}
\usetheme{Berlin}
\usecolortheme{orchid}%crane

\title{How to use blocks in \LaTeX~Beamer}
\author{Tommytex}
\date{\today}

\defbeamertemplate*{title page}{customized}[1][]
{
\centering ...