Search found 6 matches

by lockywolf
Sun Jun 29, 2025 6:30 am
Forum: Texmaker and TeXstudio
Topic: page numbering when using includegraphicsfullpage
Replies: 7
Views: 13551

Re: page numbering when using includegraphicsfullpage

For those who find this thread after me.

Code: Select all

\newline
is not enough for switching enumeration. LaTeX adds the page automatically, but there is some confusion with counter.
Replacing

Code: Select all

 \newline 
with

Code: Select all

 \newpage 
works as expected.
by lockywolf
Sun Jun 29, 2025 5:53 am
Forum: Texmaker and TeXstudio
Topic: page numbering when using includegraphicsfullpage
Replies: 7
Views: 13551

Re: page numbering when using includegraphicsfullpage

I have the same issue.

MWE:


\documentclass[a4paper]{book}
\usepackage{graphicx}
\pagenumbering{roman}
\begin{document}
\pagenumbering{roman}
hello, world
\newpage
\includegraphics[height=0.5\paperheight,keepaspectratio]{page1.png} \newline
\includegraphics[height=0.5\paperheight,keepaspectratio ...
by lockywolf
Sun May 23, 2021 3:39 pm
Forum: BibTeX, biblatex and biber
Topic: citestyle=stickynote. Is it possible to implement such a thing?
Replies: 0
Views: 6135

citestyle=stickynote. Is it possible to implement such a thing?

Hello, everyone.

Citations are a thing that may be extremely useful for a newbie (at least I like seeing full paper author names and the paper title right where it is cited), and very annoying for experienced readers, who already know where ideas come from and for whom long citations interrupt ...
by lockywolf
Fri May 29, 2020 6:38 am
Forum: General
Topic: How do I set the value for dest_names_size?
Replies: 0
Views: 2406

How do I set the value for dest_names_size?

Hello, everyone.

I am compiling a rather huge(9Mb) .tex file with lualatex.

The file consists of 5 chapters, and each chapter seems to get compiled fine.

However, when I run lualatex the full file, I am getting an error:

! TeX capacity exceeded, sorry [number of destination names (dest_names ...
by lockywolf
Tue Aug 27, 2019 8:45 am
Forum: Page Layout
Topic: How to typeset many headings with no bodies? (After about 20 they don't fit on a page, and latex is not creating new)
Replies: 3
Views: 3740

How to typeset many headings with no bodies? (After about 20 they don't fit on a page, and latex is not creating new)

This is wonderful! Works like charm!

As you may have guessed, this list is not written by me, at least not directly. It is generated by Emacs' org-mode from an arbitrary depth nested tree, of which (by default) the first three levels are typeset as headings, whereas the rest is, indeed, typeset as ...
by lockywolf
Tue Aug 27, 2019 4:32 am
Forum: Page Layout
Topic: How to typeset many headings with no bodies? (After about 20 they don't fit on a page, and latex is not creating new)
Replies: 3
Views: 3740

How to typeset many headings with no bodies? (After about 20 they don't fit on a page, and latex is not creating new)

I have a document (I use the 'article' class, but I cannot guarantee that, since the users may override it.), which only consists of headings of various kinds (\chapter, \section, \subsection, \subsubsection, god knows which), about 200 of them.

When I compile it with latex (I use lualatex), the ...