Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"But what we need to know is, do people want nasally-insertable computers?"


computers / comp.text.tex / draw frames/box around column in beamer?

SubjectAuthor
* draw frames/box around column in beamer?Sivaram Neelakantan
`* Re: draw frames/box around column in beamer?samcarter8
 `- Re: draw frames/box around column in beamer?Sivaram Neelakantan

1
draw frames/box around column in beamer?

<8535himy1j.fsf@gmail.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=4809&group=comp.text.tex#4809

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: nsivaram...@gmail.com (Sivaram Neelakantan)
Newsgroups: comp.text.tex
Subject: draw frames/box around column in beamer?
Date: Mon, 09 May 2022 22:41:04 +0530
Organization: A noiseless patient Spider
Lines: 8
Message-ID: <8535himy1j.fsf@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="da012a8768cbf58264704043d239a5a9";
logging-data="32497"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/yKWX2ebGPlu8bmjzvTk3FA8yM4ePSRVc="
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (windows-nt)
Cancel-Lock: sha1:27kirkGXlHp0osQYkcAaosmBbVQ=
sha1:KopcijUsK2xEJI3W12mVmMLR/PE=
User-Mail-Address: nsivaram.net@gmail.com
 by: Sivaram Neelakantan - Mon, 9 May 2022 17:11 UTC

Is it possible to draw boxes around the beamer columns environment and
column within?

\begin{columns} %should be wrapped in a box
\begin{column}{0.3\textwidth} % should also be in a framed boxes

sivaram
--

Re: draw frames/box around column in beamer?

<19241847-595d-1c05-a7fc-3abd17421683@aol.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=4815&group=comp.text.tex#4815

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: sam.cart...@aol.com (samcarter8)
Newsgroups: comp.text.tex
Subject: Re: draw frames/box around column in beamer?
Date: Wed, 11 May 2022 15:49:21 +0200
Organization: A noiseless patient Spider
Lines: 39
Message-ID: <19241847-595d-1c05-a7fc-3abd17421683@aol.com>
References: <8535himy1j.fsf@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: reader02.eternal-september.org; posting-host="cdf116223a1ae3b3fac61f50921c9326";
logging-data="31555"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+8WWg1BLRStQjRV39CD7senaVjcb/yREY="
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0)
Gecko/20100101 Thunderbird/78.14.0
Cancel-Lock: sha1:nsLHhx8bI3jmbUoZ5hQH2LOx7ZE=
In-Reply-To: <8535himy1j.fsf@gmail.com>
Content-Language: en-GB
 by: samcarter8 - Wed, 11 May 2022 13:49 UTC

If you want to stay within the beamer ecosystem, you can use blocks

\documentclass{beamer}

\usetheme{warsaw}

\begin{document}
\begin{frame}
\begin{block}{title}
\begin{columns}
\begin{column}{.4\textwidth}
\begin{block}{test}
content...
\end{block}
\end{column}
\begin{column}{.4\textwidth}
\begin{block}{test}
content...
\end{block}
\end{column}
\end{columns}
\end{block}
\end{frame}
\end{document}

If you need something more flexible, use tcolorboxs

On 09.05.22 19:11, Sivaram Neelakantan wrote:
> Is it possible to draw boxes around the beamer columns environment and
> column within?
>
> \begin{columns} %should be wrapped in a box
> \begin{column}{0.3\textwidth} % should also be in a framed boxes
>
> sivaram
>

Re: draw frames/box around column in beamer?

<854k1tx0yn.fsf@gmail.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=4819&group=comp.text.tex#4819

  copy link   Newsgroups: comp.text.tex
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: nsivaram...@gmail.com (Sivaram Neelakantan)
Newsgroups: comp.text.tex
Subject: Re: draw frames/box around column in beamer?
Date: Fri, 13 May 2022 14:29:12 +0530
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <854k1tx0yn.fsf@gmail.com>
References: <8535himy1j.fsf@gmail.com>
<19241847-595d-1c05-a7fc-3abd17421683@aol.com>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="d5dc66995b3a8fc0c91d14cd556c93ef";
logging-data="14619"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX181j5eP1icKrrLVOID7dGBkH7IaEmt6zho="
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (windows-nt)
Cancel-Lock: sha1:5skdUFDORzElhFoloyJIso7WYJ0=
sha1:+BddD79Fpv7OgogSmfvhILb5Neg=
User-Mail-Address: nsivaram.net@gmail.com
 by: Sivaram Neelakantan - Fri, 13 May 2022 08:59 UTC

On Wed, May 11 2022,samcarter8 wrote:

> If you want to stay within the beamer ecosystem, you can use blocks
>
> \documentclass{beamer}
>
> \usetheme{warsaw}
>
> \begin{document}
>
> \begin{frame}
> \begin{block}{title}
> \begin{columns}
> \begin{column}{.4\textwidth}
> \begin{block}{test}
> content...
> \end{block}
> \end{column}
> \begin{column}{.4\textwidth}
> \begin{block}{test}
> content...
> \end{block}
> \end{column}
> \end{columns}
> \end{block}
> \end{frame}
>
> \end{document}
>
> If you need something more flexible, use tcolorboxs
>

[snipped 10 lines]

Thanks, will go with blocks then.

sivaram
--

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor