summaryrefslogtreecommitdiff
path: root/info/drawing-with-metapost/src/multi-line-labels.mp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-10-31 03:03:15 +0000
committerNorbert Preining <norbert@preining.info>2024-10-31 03:03:15 +0000
commit55972afbe03e8a6a517c3f08142ebfc734cb10b7 (patch)
tree1db2af3fde95adee3655a0cb406da65b2dfc0778 /info/drawing-with-metapost/src/multi-line-labels.mp
parent829031960f69b0f96ae694916a3b48325a2fc809 (diff)
CTAN sync 202410310303
Diffstat (limited to 'info/drawing-with-metapost/src/multi-line-labels.mp')
-rw-r--r--info/drawing-with-metapost/src/multi-line-labels.mp23
1 files changed, 0 insertions, 23 deletions
diff --git a/info/drawing-with-metapost/src/multi-line-labels.mp b/info/drawing-with-metapost/src/multi-line-labels.mp
deleted file mode 100644
index 497189ed16..0000000000
--- a/info/drawing-with-metapost/src/multi-line-labels.mp
+++ /dev/null
@@ -1,23 +0,0 @@
-\documentclass[border=0mm]{standalone}
-\usepackage{luamplib}
-\begin{document}
-\mplibtextextlabel{enable}
-\begin{mplibcode}
-beginfig(1);
-label("\vbox{\hsize 4in It is a truth universally acknowledged,"
- & " that a single man in possession of a good fortune,"
- & " must be in want of a wife.\par}", origin);
-label(btex \vbox{\hsize 4in
- It is a truth universally acknowledged,
- that a single man in possession of a good fortune,
- must be in want of a wife.
- \par} etex, 128 down);
-label(btex
- \begin{tabular}{c}
- A way to get simple\\
- two line labels
- \end{tabular} etex, 256 down);
-endfig;
-\end{mplibcode}
-\end{document}
-