Things like:
- Sending LaTeX-formatted messages with Equation Service installed
- Press option-up to cycle through previous messages
- Press control-down to temporarily store a message
Could you talk more about this feature? I know nothing of LaTeX or the Equation ServiceChris Biagini wrote: [*] Sending LaTeX-formatted messages with Equation Service installed
!!!Chris Biagini wrote:
- Press option-up to cycle through previous messages
- Press control-down to temporarily store a message
hmm, i do this with ctrl+s.Chris Biagini wrote:
- Press control-down to temporarily store a message

Good! Then the thread is workingTheSilverFox06 wrote:I did not know about these features.
LaTeX is a typesetting language, and it's especially useful for math. For example, this:Could you talk more about this feature? I know nothing of LaTeX or the Equation Service
Code: Select all
$$-b \pm \sqrt{b^2 - 4ac} \over 2a$$
Y'all are joking, right? Forgive me, I'm new here. (again. seems these forums change every few months)Catfish_Man wrote:AIPizza is running into some into some issues with accidentally deallocating its topping array, but it's progressing.troplin wrote:Yeah, cool. Online food. Do I need a new modem/router for this feature?The_Tick wrote:Holding option at lunch I think is fun too.
So both people need to have adium and LaTeX installed? I can think of a lot of times I would have liked to use this. WowChris Biagini wrote:LaTeX is a typesetting language, and it's especially useful for math. For example, this:Could you talk more about this feature? I know nothing of LaTeX or the Equation Servicemakes the quadratic equation, but real pretty-like:Code: Select all
$$-b \pm \sqrt{b^2 - 4ac} \over 2a$$
Once you've installed LaTeX and a GUI front-end called Equation Service, Adium can use these to automatically create the equations. So if you asked me what the quadratic equation was, I could type the code, and you'd see the equation. I'm pretty sure everything is done locally, so your copy of Adium would do the translating. No need to worry about firewalls and such. Really neat feature.
Welcome to the forums!! We make a lot of jokes here, and the forums change every day.stevek wrote:Y'all are joking, right? Forgive me, I'm new here. (again. seems these forums change every few months)
stevek wrote:Y'all are joking, right? Forgive me, I'm new here. (again. seems these forums change every few months)Catfish_Man wrote:AIPizza is running into some into some issues with accidentally deallocating its topping array, but it's progressing.troplin wrote: Yeah, cool. Online food. Do I need a new modem/router for this feature?
Code: Select all
#import <Cocoa/Cocoa.h>
#import "Adium/AIAbstractFood.h"
#import "Adium/AIDeliverableFood.h"
#import "Adium/AICookableFood.h"
@interface AIPizza <AIEating, AICooking, AIDelivering>
{
NSArray * toppings; //pepperoni, etc...
float temperature;
BOOL cooked; //note: should only be set through the cookAtTemperature:forTimeInterval: method
float radius;
}
- (id) initWithToppings:(NSArray *)toppings cooked:(BOOL)flag;
@end
Check out this thread.wunderwood wrote:So both people need to have adium and LaTeX installed? I can think of a lot of times I would have liked to use this. Wow
Hmm... excellent point.evands wrote:Really, if you're not worried about the order of the toppings, it should be an NSSet :-)
Code: Select all
#import <Cocoa/Cocoa.h>
#import "Adium/AIAbstractFood.h"
#import "Adium/AIDeliverableFood.h"
#import "Adium/AICookableFood.h"
#import "Adium/AIAbstractTopping.h"
@interface AIPizza <AIEating, AICooking, AIDelivering>
{
NSMutableSet * toppings; //pepperoni, etc...
float temperature;
BOOL cooked; //note: should only be set through the cookAtTemperature:forTimeInterval: method
float radius;
}
- (id) initWithToppings:(NSSet *)toppings cooked:(BOOL)flag;
- (void) addTopping:(AITopping *)topping;
- (void) removeTopping:(AITopping *)topping;
@end