Search found 7 matches

by trophi20
Thu Feb 25, 2021 10:53 am
Forum: Graphics, Figures & Tables
Topic: Tabulary and page break
Replies: 1
Views: 6754

Tabulary and page break

Hi,

I want to use the tabulary package, but there are some really long tables. So I need to make a page break. How can I do that?

Here you can see, there's no page break, a part of the table is not visible:
TabularyPageBreak.tex
Example file
(1.63 KiB) Downloaded 302 times
Thanks!
by trophi20
Fri Feb 19, 2021 1:33 pm
Forum: Fonts & Character Sets
Topic: Hyphenation in title page with ngerman
Replies: 3
Views: 7373

Hyphenation in title page with ngerman

Ah okay, thanks @Ijon!

I didn't know that's possible to put the \title etc. into the document section.
by trophi20
Fri Feb 19, 2021 12:06 pm
Forum: Fonts & Character Sets
Topic: Hyphenation in title page with ngerman
Replies: 3
Views: 7373

Hyphenation in title page with ngerman

Hi,

I want to use german hyphenations in the title. But it's not working. Does somebody know, how to handle this?

\documentclass[12pt, ngerman]{report}
\usepackage[ngerman]{babel}

\title{Title with hyphenation Test"=Test}
\author{My name}
\date{\today}

\begin{document}
\maketitle
Here the ...
by trophi20
Wed Nov 11, 2020 2:34 pm
Forum: Graphics, Figures & Tables
Topic: Figures and Text
Replies: 2
Views: 1704

Figures and Text

Maybe something like this?

\documentclass[10pt,a4paper]{report}


\usepackage{graphicx}
\begin{document}
\begin{tabular}{|c|c|}
\hline

\begin{minipage}{0.5\textwidth}
test
\end{minipage}
&

\begin{minipage}{0.5\textwidth}
\includegraphics{test.png}
\end{minipage}

\\ \hline

test & test ...
by trophi20
Wed Nov 11, 2020 2:09 pm
Forum: Texmaker and TeXstudio
Topic: "Fuzzy" pdf
Replies: 1
Views: 12131

"Fuzzy" pdf

Hello,

since a few days my pdf in the Texmaker viewer is a kind of fuzzy. In all other programs like Adobe Reader it looks good. Does somebody know this problem? Is this a MS Windwos (10) problem?

If you compare single letters, you can see, that the second text is much more comfortable to read ...
by trophi20
Fri Oct 16, 2020 1:07 pm
Forum: Text Formatting
Topic: No space after \&
Replies: 1
Views: 2443

No space after \&

Hello,

I want to write following in LaTex: "A&B", like written without spaces before and after the &.

How can I do that?

Thank you!

EDIT:
A\&{}B is working, but is this the "right" version?
by trophi20
Thu Apr 02, 2020 7:55 pm
Forum: Text Formatting
Topic: Minus in code listing
Replies: 1
Views: 3123

Minus in code listing

I've got a question, topic is the code listing.
How is it possible to write a minus (-) in a code listing?

I'm using Texmaker and MikTex.

Here's a example:
\documentclass{article}
\usepackage{listings}

\begin{document}
\begin{lstlisting}
a = 10;
a = 10 - 2;
\end{lstlisting}
\end{document ...