Search found 419 matches

by rais
Sat Nov 25, 2017 12:54 pm
Forum: Graphics, Figures & Tables
Topic: Creating list of source code listings
Replies: 2
Views: 2215

Creating list of source code listings

Look for \lstlistoflistings in the listings documentation.

KR
Rainer
by rais
Sat Nov 11, 2017 2:07 pm
Forum: General
Topic: How can I reduce my code?
Replies: 8
Views: 6808

How can I reduce my code?

You could use a \foreach statement instead, say

Code: Select all

\foreach \a/\b in {A/1,B/2,C/3,D/4,E/5,F/6,G/7,H/8,I/9,J/10}
    \coordinate (\a) at ($(O) + (\b*36:{\R})$);
KR
Rainer
by rais
Fri Nov 10, 2017 7:43 pm
Forum: Graphics, Figures & Tables
Topic: Problem with large table in landscape mode
Replies: 4
Views: 10000

Problem with large table in landscape mode

Well, considering that in the tabular's column declaration, you already stated `c' as the column type to use, a \multicolumn{1}{[[|]>{...}]c[|]} seems superfluous.
Even if those differ (`those' meaning the column specifications in tabular and within the matching \multicolumn statement), a construct ...
by rais
Tue Oct 17, 2017 12:39 am
Forum: Page Layout
Topic: Blank page in front of title page
Replies: 6
Views: 6435

Blank page in front of title page

Well, I can't reproduce the reported issue with the code provided, I get a single page output instead.

Even so, there was a `! LaTeX Error: There's no line here to end.' message caused by the \\ ---what did you expect from it?
Neither \author , \institute , nor \title command produces any text ...
by rais
Mon Oct 16, 2017 9:43 pm
Forum: Page Layout
Topic: Extra dot in ToC. Why ?
Replies: 4
Views: 3248

Extra dot in ToC. Why ?

If I turn protrusion off---without changing \@pnumwidth---it seems to work in the TOC:

Code: Select all

[...]
\microtypesetup{protrusion=false}%
\tableofcontents
\clearpage
\microtypesetup{protrusion=true}%
\section{Title}
[...]
KR
Rainer
by rais
Fri Sep 01, 2017 11:41 pm
Forum: TeX Live and MacTeX
Topic: PATH Problem
Replies: 3
Views: 8622

PATH Problem

The way I see it, you've got two options. Assuming sudo switches to user root: either sudo switches by default the environment to root's environment (in which case, `echo' is somehow exempt from that rule), or sudo keeps the current user's environment (in which case, `tlmgr' is somehow exempt from ...
by rais
Thu Aug 31, 2017 8:09 pm
Forum: TeX Live and MacTeX
Topic: PATH Problem
Replies: 3
Views: 8622

PATH Problem

well, I'd compare the outcome of

Code: Select all

echo $PATH
with

Code: Select all

sudo echo $PATH
KR
Rainer
by rais
Mon Aug 28, 2017 10:53 pm
Forum: MiKTeX and proTeXt
Topic: Miktex and fontspec
Replies: 3
Views: 25896

Miktex and fontspec

Well, according to fontspec's manual, you've reversed the positions of mandatory and optional arguments to \setmainfont ...

\setmainfont{texgyrepagella}[
Path
= /Users/will/Fonts/ ,
UprightFont
= *-regular ,
BoldFont
= *-bold ,
... ]

Furthermore: where do you think ``Path = localtexf/fonts ...
by rais
Mon Aug 28, 2017 10:05 pm
Forum: Page Layout
Topic: Page X out Y in footer
Replies: 2
Views: 12627

Page X out Y in footer

you need to load the lastpage package for \pageref{LastPage} to work, AFAIR.

KR
Rainer
by rais
Fri Aug 25, 2017 12:54 am
Forum: BibTeX, biblatex and biber
Topic: Biblography follows the citation order
Replies: 4
Views: 3073

Biblography follows the citation order

since there's still no \cite command in your updated `minimum work', the most I'd expect is an empty bibliography.
BTW: there's a comma missing after ` chapter = {1} ' in the second entry of your presented bib file.

Perhaps you just omitted to run BibTeX (or its run failed, have a look into the ...