Search found 36 matches

by esdd
Tue Jul 09, 2019 10:21 pm
Forum: TeX Live and MacTeX
Topic: Live Tex Manager error
Replies: 2
Views: 16562

Live Tex Manager error

Use the command-line or the TeX-Live command-line or powershell to update your TL 2019:

tlmgr update --self

and then

tlmgr update --all
by esdd
Tue Jul 09, 2019 9:44 pm
Forum: LyX
Topic: How to include LOF and nomenclature in the table of contents
Replies: 2
Views: 4366

How to include LOF and nomenclature in the table of contents

\addcontentsline must be used next to the title of the lists (LOF etc) and not in the preamble. So do not add the entries manually.

If you use a standard class, load package tocbibind to add the TOC, LOF etc to the TOC:

\usepackage{tocbibind}

Package nomencl provides an option for the TOC ...
by esdd
Wed Oct 22, 2014 5:28 pm
Forum: Page Layout
Topic: Header box using Tikzpicture: How to modify / add lines
Replies: 2
Views: 6568

Header box using Tikzpicture: How to modify / add lines

Try something like that in your preamble

\renewcommand{\header}[3]{%
\begin{tikzpicture}[remember picture,overlay]
\node [
fill=fillheader,
anchor=north,
minimum width=\paperwidth, minimum height=3.5cm
] (box) at (current page.north){};
\node [
anchor=south,
font=\fontsize{40pt}{72pt ...
by esdd
Mon Jul 28, 2014 3:09 pm
Forum: General
Topic: Setting link colors with hyperref
Replies: 2
Views: 28274

Setting link colors with hyperref

Maybe there is only a missing coma behind citecolor={winered}?

\hypersetup
{
pdfauthor={Dr. Partha},
pdfsubject={Hyperlinks in LaTeX},
pdftitle={myhyper.tex},
pdfkeywords={LaTeX, PDF, hyperlinks}
% colorlinks=false,
pdfborder={0 0 0},
%You can set individual colors for links as below ...
by esdd
Sat Jul 26, 2014 8:10 am
Forum: Text Formatting
Topic: Remove blank page
Replies: 4
Views: 45122

Remove blank page

If the part page should be a right hand page:

Code: Select all

...
\cleardoubleoddpage
\part{Part title}
%\cleardoubleoddpage 
...
Best regards
Elke
by esdd
Fri Jul 25, 2014 1:47 pm
Forum: Text Formatting
Topic: Remove blank page
Replies: 4
Views: 45122

Remove blank page

Use only one titlepage environment for the titlepage and the copyright page and insert \clearpage and \thispagestyle{empty} between them:

\documentclass[10pt,
%english, % removed because of british
british,twoside,openany]{scrbook}
\usepackage{blindtext}
\usepackage[automark,headsepline ...
by esdd
Thu Jul 24, 2014 3:29 pm
Forum: Text Formatting
Topic: Insert blank page at start of document
Replies: 6
Views: 5604

Insert blank page at start of document

Your copyright information are on a right hand page and the table of contents starts on a left hand page. Do you want this?
If not: there are additional commands (\extratitle,\uppertitleback, \lowertitleback,...) to format the title pages. Have a look at the KOMA-Script documentation.
by esdd
Wed Jul 23, 2014 10:58 am
Forum: Math & Science
Topic: Custom matrix border
Replies: 4
Views: 7578

Custom matrix border

Here is a suggestion using tikz

\documentclass{article}
\usepackage{amsmath}

\usepackage{tikz}
\newcommand\mborder[2][]{%
\tikz[anchor=base,baseline]{
\node[inner sep=1pt,#1](h){$\displaystyle#2\mathstrut$};
\draw([xshift=.25em]h.south west)--(h.south west)--(h.north west)
--(h.north east ...
by esdd
Tue Jul 22, 2014 10:02 am
Forum: Text Formatting
Topic: fancyhdr and Koma book class
Replies: 17
Views: 16742

fancyhdr and Koma book class

Here is a suggestion to avoid a part of the warnings

%TITR Main Document 5.06in x 7.81in, facing pages
%Preamble
\documentclass[
10pt,
%english,% either english or british
british,% either english or british
twoside,
open=any
]{scrbook}
%\usepackage{scrpage2}
\usepackage[automark,headsepline ...