Как показывает SO Q & A , я обнаружил, что \ textwidth выглядит запутанным.
В обычном случае это ширина текста, но, похоже, эта переменная не содержит правильной информации о ширине текста с мультиколами.
Это код LaTeX для распечатки ширины \ textwidth (я скопировал код из здесь ).
\documentclass[]{article}
\usepackage{layouts}
\usepackage{multicol}
\usepackage[left=20mm,right=20mm,top=33.95mm,bottom=33.95mm]{geometry}
\begin{document}
textwidth in cm: \printinunitsof{cm}\prntlen{\textwidth}
\begin{multicols}{2}
textwidth in cm: \printinunitsof{cm}\prntlen{\textwidth}
\end{multicols}
\end{document}
В результате в случае нескольких столбцов текст в штучной упаковке невозможно использовать \ textwidth.
\begin{tikzpicture}
\draw node[draw=black,fill=black!20,rounded corners,inner sep=2ex,text width=\textwidth] {
Lorem ipsum dolor sit amet \dots
};
\end{tikzpicture}
или
\colorbox{red}{\parbox{\textwidth}{Black text on red background}}
- Как узнать реальную \ текстовую пропускную способность для многостолбцовых документов?
- Что не так с \ linewidth? Я попробовал следующий пример, но результат не так, как показано. Среда \ перечисления дает мне правильный результат.
\documentclass[]{article}
\usepackage{layouts}
\usepackage{multicol}
\usepackage{tikz}
\usepackage{color}
\usepackage{listings}
\usepackage[left=20mm,right=20mm,top=33.95mm,bottom=33.95mm]{geometry}
\begin{document}
textwidth in cm: \printinunitsof{cm}\prntlen{\textwidth}
textwidth in cm: \printinunitsof{cm}\prntlen{\linewidth}
\colorbox{darkgray}{Black text on red background}
\noindent\colorbox{darkgray}{\parbox{\linewidth}{Black text on red background}}
\begin{multicols}{2}
This one is deep. Remember etaoin shrdlu? (Maybe you don't. Never mind, a bulletin on the subject is forthcoming.) Remember the Illuminati and fnord? Lorem ipsum is the same deal--one of those inscrutable phrases that just keeps turning up. Surely it means something. Surely it's invested with, you know, mysto power. Lorem ipsum, my children. So mote it be.
textwidth in cm: \printinunitsof{cm}\prntlen{\textwidth}
textwidth in cm: \printinunitsof{cm}\prntlen{\linewidth}
This one is deep. Remember etaoin shrdlu? (Maybe you don't. Never mind, a bulletin on the subject is forthcoming.) Remember the Illuminati and fnord? Lorem ipsum is the same deal--one of those inscrutable phrases that just keeps turning up. Surely it means something. Surely it's invested with, you know, mysto power. Lorem ipsum, my children. So mote it be.
\noindent\colorbox{darkgray}{Black text on red background}
\noindent\colorbox{darkgray}{\parbox{\linewidth}{Black text on red background}}
\noindent\begin{tikzpicture}
\draw node[draw=black,fill=black!20,rounded corners,inner sep=2ex,text width=\linewidth] {
Lorem ipsum dolor sit amet \dots
};
\end{tikzpicture}
\definecolor{darkgray}{rgb}{0.95,0.95,0.95}
\lstset{backgroundcolor=\color{darkgray}}
\lstset{columns=fullflexible, basicstyle=\ttfamily, basicstyle=\tiny, numbers=left, numberstyle=\tiny, stepnumber=2, numbersep=5pt}
\begin{lstlisting}[frame=tb]
(let ((buffer (url-retrieve-synchronously
"http://tromey.com/elpa/package-install.el")))
(save-excursion
(set-buffer buffer)
(goto-char (point-min))
(re-search-forward "^$" nil 'move) ;;$
(eval-region (point) (point-masx))
(kill-buffer (current-buffer))))
\end{lstlisting}
\end{multicols}
\end{document}
http://img571.imageshack.us/img571/1867/screenshot20100718at407.png