How do you combine OptionsPatterns?
For example, I would like to have a function that can take both options that I specify, and options for all graphs:
Options[f]={"a"->b} + OptionsPattern[LogPlot]
f[...,OptionsPattern[]] := LogPlot[..., ImageSize->OptionsValue[ImageSize]]
A related question, how do I remove options from an OptionsPattern, and pass on the remainder to another function.
For example:
f[...,OptionsPattern[LogPlot]] := LogPlot[..., (* pass on all the options EXCEPT Frame *)]
Thanks for the help.