I'm messing around with titlesec to make a frame with the chapter name in it. I can't figure out how to move the chapter name ("Chapter Foo" in the example).
Here's the MWE:
\documentclass[a4paper,book,openany,twocolumn]{memoir}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{titlesec}
\titleformat{\chapter}[frame]
{\normalfont\huge\bfseries}{\thechapter}{5em}{\Huge}
\titlespacing*{\chapter}{0pt}{-40pt}{15pt}
\begin{document}
\chapter*{Chapter Foo}
\lipsum
\lipsum[3-6]
\end{document}
This is what I have: 
This is what I want: 
I hope someone can help!

titlesecis not compatible withmemoir, see http://tex.stackexchange.com/questions/33012/about-memoir-and-titlesec-incompatibility – egreg Jul 12 '13 at 22:02memoirchapter styles:texdoc MemoirChapStyles– egreg Jul 12 '13 at 22:09