I am wondering how one is supposed to format Objective C code using the listings package of LaTeX? I know that the language supports C (Objective) , so how do i set this in the \lstset language option?
Thanks
|
|
|
Like this:
Detailed introduction: http://mirror.hmc.edu/ctan/macros/latex/contrib/listings/listings.pdf |
|||||||||||
|
|
Although this answer is not answering the OP's question per se, I figure others looking for Objective-C Below is a You're probably only go to see a difference if you use a font style for keywords that's different than the "normal" font style. I am the author of the code below (except for the ANSI C99 definition, which was derived from the
\lstdefinelanguage[Objective]{C}[GNU99]{C}
{morekeywords={@catch,@class,@encode,@end,@finally,@implementation,%
@interface,@private,@protected,@protocol,@public,@selector,%
@synchronized,@throw,@try,BOOL,Class,IMP,NO,Nil,SEL,YES,_cmd,%
bycopy,byref,id,in,inout,nil,oneway,out,self,super,%
% The next two lines are Objective-C 2 keywords.
@dynamic,@package,@property,@synthesize,readwrite,readonly,%
assign,retain,copy,nonatomic%
},%
moredirectives={import}%
}%
\lstdefinelanguage[GNU99]{C}[99]{C}
{morekeywords={asm,__asm__,__extension__,typeof,__typeof__}%
}%
\lstdefinelanguage[99]{C}%
{morekeywords={_Bool,_Complex,_Imaginary,auto,break,case,char,%
const,continue,default,do,double,else,enum,extern,float,for,%
goto,if,inline,int,long,register,restrict,return,short,signed,%
sizeof,static,struct,switch,typedef,union,unsigned,void,volatile,%
while},%
sensitive,%
morecomment=[s]{/*}{*/},%
morecomment=[l]//,%
morestring=[b]",%
morestring=[b]',%
moredelim=*[directive]\#,%
moredirectives={define,elif,else,endif,error,if,ifdef,ifndef,line,%
include,pragma,undef,warning}%
}[keywords,comments,strings,directives]%
|
|||