mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
Add example how to reduce list item separation.
This commit is contained in:
parent
099f432d87
commit
d4abb666f6
3 changed files with 52 additions and 0 deletions
33
documents/list-item-sep/Makefile
Normal file
33
documents/list-item-sep/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
SOURCE=list-item-sep
|
||||
DELAY = 80
|
||||
DENSITY = 300
|
||||
WIDTH = 512
|
||||
|
||||
make:
|
||||
pdflatex $(SOURCE).tex -output-format=pdf
|
||||
make clean
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.data *.gnuplot
|
||||
|
||||
gif:
|
||||
pdfcrop $(SOURCE).pdf
|
||||
convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif
|
||||
make clean
|
||||
|
||||
png:
|
||||
make
|
||||
make svg
|
||||
inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png
|
||||
|
||||
transparentGif:
|
||||
convert $(SOURCE).pdf -transparent white result.gif
|
||||
make clean
|
||||
|
||||
svg:
|
||||
#inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg
|
||||
pdf2svg $(SOURCE).pdf $(SOURCE).svg
|
||||
# Necessary, as pdf2svg does not always create valid svgs:
|
||||
inkscape $(SOURCE).svg --export-width=$(WIDTH) --export-plain-svg=$(SOURCE)1.svg
|
||||
rsvg-convert -a -w 720 -f svg $(SOURCE)1.svg -o $(SOURCE).svg
|
||||
rm $(SOURCE)1.svg
|
BIN
documents/list-item-sep/list-item-sep.png
Normal file
BIN
documents/list-item-sep/list-item-sep.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
19
documents/list-item-sep/list-item-sep.tex
Normal file
19
documents/list-item-sep/list-item-sep.tex
Normal file
|
@ -0,0 +1,19 @@
|
|||
\documentclass[varwidth=true, border=2pt]{standalone}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{enumitem}
|
||||
|
||||
\begin{document}
|
||||
A normal list:
|
||||
\begin{itemize}
|
||||
\item one
|
||||
\item two
|
||||
\item three
|
||||
\end{itemize}
|
||||
|
||||
Less spearation:
|
||||
\begin{itemize}[noitemsep]
|
||||
\item one
|
||||
\item two
|
||||
\item three
|
||||
\end{itemize}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue