Hi all users and devs, Been using the application for a while and love it.
Was reading http://wiki.lyx.org/Tips/CommandSequences and http://wiki.lyx.org/FAQ/FiguresSideBySide Want to produce a command sequence for figures side by side. So far float-insert figure box-insert Frameless But I want frameless box of width 45% \textwidth Here are some references http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg61706.html http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg62044.html >From msg 62044 it seems box-insert frameless calls LFUN_INSERT_BOX which calls case LFUN_INSERT_BOX: + { + string arg = cmd.getArg(0); + if (arg.empty()) + arg = "Box"; + return new InsetBox(params, arg); + } So the question is, how to do something like box-insert Frameless width 40% linetext Thanks in advance Martin